1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-01 21:57:06 +01:00
metamask-extension/ui/components/component-library/avatar-with-badge/avatar-with-badge.stories.js
Nidhi Kumari 0fe3633e4d
Added AvatarBadge component (#15676)
* avatar badge component added

* resolved conflicts

* added badge prop

* updated avatar badge children/badge props

* updated badge token size to be 16px

* added AvatarBadge Test component

* added avatar badge test

* updated avatarBadge props

* added Readme and test files to AvatarWithBadge Component

* resolved conflicts

* removed unused change

* updated badge and badge props

* updated avatar badge stories

* updated constants for avatar badge

* updated avatar badge test

* replaced avatar-badge with avatar-with-badge

* updated avatar badge tests

* updated test for badgeProps
2022-10-12 23:49:12 +05:30

92 lines
2.2 KiB
JavaScript

import React from 'react';
import { AvatarAccount } from '../avatar-account';
import { TYPES } from '../avatar-account/avatar-account.constants';
import { AvatarNetwork } from '../avatar-network';
import Box from '../../ui/box/box';
import {
ALIGN_ITEMS,
DISPLAY,
SIZES,
} from '../../../helpers/constants/design-system';
import { BADGE_POSITIONS } from './avatar-with-badge.constants';
import README from './README.mdx';
import { AvatarWithBadge } from './avatar-with-badge';
export default {
title: 'Components/ComponentLibrary/AvatarWithBadge',
id: __filename,
component: AvatarWithBadge,
parameters: {
docs: {
page: README,
},
},
argTypes: {
badgePosition: {
options: Object.values(BADGE_POSITIONS),
control: 'select',
},
},
args: {
badgePosition: BADGE_POSITIONS.top,
},
};
export const DefaultStory = (args) => (
<AvatarWithBadge
badge={
<AvatarNetwork
size={SIZES.XS}
networkName="Arbitrum One"
networkImageUrl="./images/arbitrum.svg"
/>
}
{...args}
>
<AvatarAccount
address="0x5CfE73b6021E818B776b421B1c4Db2474086a7e1"
size={SIZES.MD}
type={TYPES.JAZZICON}
/>
</AvatarWithBadge>
);
DefaultStory.storyName = 'Default';
export const BadgePosition = () => (
<Box display={DISPLAY.FLEX} alignItems={ALIGN_ITEMS.BASELINE} gap={1}>
<AvatarWithBadge
badgePosition={BADGE_POSITIONS.BOTTOM}
badge={
<AvatarNetwork
size={SIZES.XS}
networkName="Arbitrum One"
networkImageUrl="./images/arbitrum.svg"
/>
}
>
<AvatarAccount
address="0x5CfE73b6021E818B776b421B1c4Db2474086a7e1"
size={SIZES.MD}
type={TYPES.JAZZICON}
/>
</AvatarWithBadge>
<AvatarWithBadge
badgePosition={BADGE_POSITIONS.TOP}
badge={
<AvatarNetwork
size={SIZES.XS}
networkName="Arbitrum One"
networkImageUrl="./images/arbitrum.svg"
/>
}
>
<AvatarAccount
address="0x5CfE73b6021E818B776b421B1c4Db2474086a7e1"
size={SIZES.MD}
type={TYPES.JAZZICON}
/>
</AvatarWithBadge>
</Box>
);