mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 20:39:08 +01:00
189 lines
4.2 KiB
JavaScript
189 lines
4.2 KiB
JavaScript
import React from 'react';
|
|
import {
|
|
Size,
|
|
DISPLAY,
|
|
AlignItems,
|
|
BackgroundColor,
|
|
IconColor,
|
|
Color,
|
|
} from '../../../helpers/constants/design-system';
|
|
|
|
import Box from '../../ui/box/box';
|
|
|
|
import { IconName } from '..';
|
|
|
|
import README from './README.mdx';
|
|
import { AvatarIcon, AVATAR_ICON_SIZES } from '.';
|
|
|
|
const marginSizeControlOptions = [
|
|
undefined,
|
|
0,
|
|
1,
|
|
2,
|
|
3,
|
|
4,
|
|
5,
|
|
6,
|
|
7,
|
|
8,
|
|
9,
|
|
10,
|
|
11,
|
|
12,
|
|
'auto',
|
|
];
|
|
|
|
export default {
|
|
title: 'Components/ComponentLibrary/AvatarIcon',
|
|
component: AvatarIcon,
|
|
parameters: {
|
|
docs: {
|
|
page: README,
|
|
},
|
|
},
|
|
argTypes: {
|
|
iconName: {
|
|
options: Object.values(IconName),
|
|
control: 'select',
|
|
},
|
|
size: {
|
|
control: 'select',
|
|
options: Object.values(AVATAR_ICON_SIZES),
|
|
},
|
|
backgroundColor: {
|
|
control: 'select',
|
|
options: Object.values(BackgroundColor),
|
|
},
|
|
color: {
|
|
control: 'select',
|
|
options: Object.values(Color),
|
|
},
|
|
className: {
|
|
control: 'text',
|
|
},
|
|
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: {
|
|
size: Size.MD,
|
|
},
|
|
};
|
|
|
|
const Template = (args) => {
|
|
return <AvatarIcon iconName={IconName.SwapHorizontal} {...args} />;
|
|
};
|
|
|
|
export const DefaultStory = Template.bind({});
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const SizeStory = (args) => (
|
|
<Box display={DISPLAY.FLEX} alignItems={AlignItems.baseline} gap={1}>
|
|
<AvatarIcon {...args} size={Size.XS} />
|
|
<AvatarIcon {...args} size={Size.SM} />
|
|
<AvatarIcon {...args} size={Size.MD} />
|
|
<AvatarIcon {...args} size={Size.LG} />
|
|
<AvatarIcon {...args} size={Size.XL} />
|
|
</Box>
|
|
);
|
|
SizeStory.storyName = 'Size';
|
|
|
|
SizeStory.args = {
|
|
iconName: IconName.Confirmation,
|
|
};
|
|
|
|
export const IconNameStory = (args) => (
|
|
<Box display={DISPLAY.FLEX} gap={1}>
|
|
<AvatarIcon
|
|
color={IconColor.primaryDefault}
|
|
backgroundColor={BackgroundColor.primaryMuted}
|
|
iconName={IconName.SwapHorizontal}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.successDefault}
|
|
backgroundColor={BackgroundColor.successMuted}
|
|
iconName={IconName.Confirmation}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.infoDefault}
|
|
backgroundColor={BackgroundColor.infoMuted}
|
|
iconName={IconName.Info}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.warningDefault}
|
|
backgroundColor={BackgroundColor.warningMuted}
|
|
iconName={IconName.Warning}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.errorDefault}
|
|
backgroundColor={BackgroundColor.errorMuted}
|
|
iconName={IconName.Danger}
|
|
{...args}
|
|
/>
|
|
</Box>
|
|
);
|
|
|
|
IconNameStory.storyName = 'Icon Name';
|
|
|
|
export const ColorAndBackgroundColor = (args) => (
|
|
<Box display={DISPLAY.FLEX} gap={1}>
|
|
<AvatarIcon
|
|
color={IconColor.primaryDefault}
|
|
backgroundColor={BackgroundColor.primaryMuted}
|
|
iconName={IconName.SwapHorizontal}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.primaryInverse}
|
|
backgroundColor={BackgroundColor.primaryDefault}
|
|
iconName={IconName.SwapHorizontal}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.successDefault}
|
|
backgroundColor={BackgroundColor.successMuted}
|
|
iconName={IconName.Confirmation}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.infoDefault}
|
|
backgroundColor={BackgroundColor.infoMuted}
|
|
iconName={IconName.Info}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.warningDefault}
|
|
backgroundColor={BackgroundColor.warningMuted}
|
|
iconName={IconName.Warning}
|
|
{...args}
|
|
/>
|
|
<AvatarIcon
|
|
color={IconColor.errorDefault}
|
|
backgroundColor={BackgroundColor.errorMuted}
|
|
iconName={IconName.Danger}
|
|
{...args}
|
|
/>
|
|
</Box>
|
|
);
|