You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
3.3 KiB
168 lines
3.3 KiB
import React from 'react';
|
|
import {
|
|
ALIGN_ITEMS,
|
|
DISPLAY,
|
|
FLEX_DIRECTION,
|
|
SIZES,
|
|
TEXT,
|
|
} from '../../../helpers/constants/design-system';
|
|
import Box from '../../ui/box/box';
|
|
import { ICON_NAMES } from '../icon';
|
|
import { Text } from '../text';
|
|
import { BUTTON_SIZES } from './button.constants';
|
|
import { ButtonBase } from './button-base';
|
|
import README from './README.mdx';
|
|
|
|
const marginSizeControlOptions = [
|
|
undefined,
|
|
0,
|
|
1,
|
|
2,
|
|
3,
|
|
4,
|
|
5,
|
|
6,
|
|
7,
|
|
8,
|
|
9,
|
|
10,
|
|
11,
|
|
12,
|
|
'auto',
|
|
];
|
|
|
|
export default {
|
|
title: 'Components/ComponentLibrary/ButtonBase',
|
|
id: __filename,
|
|
component: ButtonBase,
|
|
parameters: {
|
|
docs: {
|
|
page: README,
|
|
},
|
|
},
|
|
argTypes: {
|
|
as: {
|
|
control: 'select',
|
|
options: ['button', 'a'],
|
|
},
|
|
block: {
|
|
control: 'boolean',
|
|
},
|
|
children: {
|
|
control: 'text',
|
|
},
|
|
className: {
|
|
control: 'text',
|
|
},
|
|
disabled: {
|
|
control: 'boolean',
|
|
},
|
|
icon: {
|
|
control: 'select',
|
|
options: Object.values(ICON_NAMES),
|
|
},
|
|
loading: {
|
|
control: 'boolean',
|
|
},
|
|
size: {
|
|
control: 'select',
|
|
options: Object.values(BUTTON_SIZES),
|
|
},
|
|
marginTop: {
|
|
options: marginSizeControlOptions,
|
|
control: 'select',
|
|
table: { category: 'box props' },
|
|
},
|
|
marginRight: {
|
|
options: marginSizeControlOptions,
|
|
control: 'select',
|
|
table: { category: 'box props' },
|
|
},
|
|
marginBottom: {
|
|
options: marginSizeControlOptions,
|
|
control: 'select',
|
|
table: { category: 'box props' },
|
|
},
|
|
marginLeft: {
|
|
options: marginSizeControlOptions,
|
|
control: 'select',
|
|
table: { category: 'box props' },
|
|
},
|
|
},
|
|
args: {
|
|
children: 'Button Base',
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => <ButtonBase {...args} />;
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const Size = (args) => (
|
|
<>
|
|
<Box
|
|
display={DISPLAY.FLEX}
|
|
alignItems={ALIGN_ITEMS.BASELINE}
|
|
gap={1}
|
|
marginBottom={2}
|
|
>
|
|
<ButtonBase {...args} size={SIZES.SM}>
|
|
Button SM
|
|
</ButtonBase>
|
|
<ButtonBase {...args} size={SIZES.MD}>
|
|
Button MD
|
|
</ButtonBase>
|
|
<ButtonBase {...args} size={SIZES.LG}>
|
|
Button LG
|
|
</ButtonBase>
|
|
</Box>
|
|
<Text variant={TEXT.BODY_SM}>
|
|
<ButtonBase {...args} size={SIZES.AUTO}>
|
|
Button Auto
|
|
</ButtonBase>{' '}
|
|
inherits the font-size of the parent element.
|
|
</Text>
|
|
</>
|
|
);
|
|
|
|
export const Block = (args) => (
|
|
<>
|
|
<ButtonBase {...args} marginBottom={2}>
|
|
Default Button
|
|
</ButtonBase>
|
|
<ButtonBase {...args} block marginBottom={2}>
|
|
Block Button
|
|
</ButtonBase>
|
|
</>
|
|
);
|
|
|
|
export const As = (args) => (
|
|
<Box display={DISPLAY.FLEX} flexDirection={FLEX_DIRECTION.ROW} gap={2}>
|
|
<ButtonBase {...args}>Button Element</ButtonBase>
|
|
<ButtonBase as="a" href="#" {...args}>
|
|
Anchor Element
|
|
</ButtonBase>
|
|
</Box>
|
|
);
|
|
|
|
export const Disabled = (args) => (
|
|
<ButtonBase {...args}>Disabled Button</ButtonBase>
|
|
);
|
|
|
|
Disabled.args = {
|
|
disabled: true,
|
|
};
|
|
|
|
export const Loading = (args) => (
|
|
<ButtonBase {...args}>Loading Button</ButtonBase>
|
|
);
|
|
|
|
Loading.args = {
|
|
loading: true,
|
|
};
|
|
|
|
export const Icon = (args) => (
|
|
<ButtonBase {...args} icon={ICON_NAMES.ADD_SQUARE_FILLED}>
|
|
Button
|
|
</ButtonBase>
|
|
);
|
|
|