1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00
metamask-extension/ui/components/component-library
Binij Shrestha 6e5ab2a945
Migrate AvatarIcon (#19107)
Migrate AvatarIcon to TS


---------

Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
2023-07-26 14:18:36 -07:00
..
avatar-account Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-base Migrate AvatarIcon (#19107) 2023-07-26 14:18:36 -07:00
avatar-favicon Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
avatar-icon Migrate AvatarIcon (#19107) 2023-07-26 14:18:36 -07:00
avatar-network Fix/18885 migrate avatar token (#19080) 2023-07-26 07:50:53 -07:00
avatar-token Fix/18885 migrate avatar token (#19080) 2023-07-26 07:50:53 -07:00
badge-wrapper Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
banner-alert Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
banner-base Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
banner-tip Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
box Fix memory based performance problem caused by use of lodash memoize in box component (#19993) 2023-07-13 12:23:10 -02:30
button Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
button-base ButtonBase linting error from IconProps (#20187) 2023-07-25 20:09:52 -02:30
button-icon Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
button-link Fix/buttonbase ts update (#20060) 2023-07-25 09:05:15 -07:00
button-primary Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
button-secondary Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
checkbox Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
form-text-field Fix/helptext to ts (#20108) 2023-07-21 10:11:35 -07:00
header-base update TEXT_ALIGN to TextAlign in component-library folder (#19237) 2023-05-23 11:05:50 -07:00
help-text Fix/helptext to ts (#20108) 2023-07-21 10:11:35 -07:00
icon Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
input Migrate component to TS: Input (#20094) 2023-07-24 21:13:17 -07:00
label Migrate Label component to TS (#19146) 2023-07-24 10:54:34 -07:00
modal Adding Modal and updating ModalContent component (#19020) 2023-05-19 13:20:15 -07:00
modal-content Replacing deprecated components and code for import tokens (#19559) 2023-07-26 08:48:31 -07:00
modal-focus Adding ModalFocus component (#18979) 2023-05-09 14:33:29 -07:00
modal-header Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
modal-overlay Some style, accessibility and sematic html updates to modal sub components (#19034) 2023-05-09 14:09:10 -07:00
picker-network Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
popover Issue 17670 replace typography with text (#19433) 2023-06-26 15:50:08 -07:00
popover-header Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
tag Migrate component to TS: Tag (#20086) 2023-07-24 13:42:10 -07:00
tag-url Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
text Fix/buttonbase ts update (#20060) 2023-07-25 09:05:15 -07:00
text-field Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
text-field-search Updating Icon types and component to use TS Box component (#19990) 2023-07-25 09:05:37 -07:00
component-library-components.scss Feat/15438/create ds checkbox component (#19808) 2023-07-14 11:50:47 -07:00
COMPONENT-LIBRARY.stories.mdx Updating component-library readme storybook render (#19359) 2023-06-05 21:23:25 +05:30
index.js Migrate AvatarIcon (#19107) 2023-07-26 14:18:36 -07:00
README.md Component library readme update (#20105) 2023-07-19 22:10:45 -07:00

Component Library

This folder contains design system components that are built 1:1 with the Figma DS Components UI kit and should be used where possible in all UI feature work.

Architecture

All components are built on top of the Box component and accept all Box component props.

Layout

component-library components accept all Box component style utility props for layout. They can be used in conjunction with the enums from ui/helpers/constants/design-system.ts

import { Display } from '../../../helpers/constants/design-system';
import { Text } from '../../component-library';

<Text marginBottom={4} display={Display.Flex} gap={4}>
  <span>This text has a margin-bottom of 16px</span>
  <span>It also has a display of flex and gap of 16px</span>
</Text>;

Polymorphic as prop and semantic HTML

component-library components accept a polymorphic as prop to change the root html element of a component

import { Text } from '../../component-library';

<ul>
  <Text as="li">This renders as list item html element</Text>
</ul>;

Style customization and access child components

We understand some customization to styles or access to children components is necessary when building UI. To ensure our components are flexible we intend to allow for customization and access though a pattern called inversion of control.

Styles

Note: If you are seeing a disparity between styles in Figma and code that's a red flag and could mean there is bug between design system Figma and code component. We recommend posting it on our slack channel #metamask-design-system so we can support you on it

We try to utilize the Box component style utility props as much as possible in our components. Style utility prop overrides should be your first option. This allows you to change styles right inside of the component and reduces the amount of CSS in the codebase. If there are no style utility props for the customization required you can attach a class name to the component using the className prop and add styling using CSS.

import { BackgroundColor } from '../../../helpers/constants/design-system';
import { Button } from '../../component-library';

// Overriding the browser default styling using style utility props
<Text
  as="button"
  backgroundColor={BackgroundColor.transparent}
  onClick={handleOnClick}
>
  Renders as a button but has a transparent background
</Text>;

<Text
  as="button"
  backgroundColor={BackgroundColor.transparent}
  onClick={handleOnClick}
  className="nft-feature__title"
>
  Adding a custom className to add additional styles using CSS
</Text>;

Access to child components

All of our components should allow access to children components through an object prop. The example below adds a data test id to the child Text component inside BannerAlert.

import { Severity } from '../../../helpers/constants/design-system';
import { BannerAlert } from '../../component-library';

<BannerAlert
  severity={Severity.Danger}
  title="This allows a third party to access and transfer all of your NFTs"
  titleProps={{ 'data-testid': 'approve-token-banner-title' }}
/>;

Accessibility

Allowing everyone to access web3 regardless of disability is an important part of what we do at MetaMask. Ensuring accessibility in our components is a priority. We strive to achieve this by maintaining proper color contrast in our components and implementing necessary aria label props. If you have any questions regarding accessibility reach out and we will support you as much as possible. Additionally, your suggestions for improvement are welcome, as we continue our journey towards greater accessibility. Together, let's create an inclusive web3 experience for all 🦾

TypeScript

We are currently in the process of migrating all component-library components to TypeScript. Feel free to contribute by creating a PR against one of these issues

Support

If internal folks have any questions please reach out the design system team via the internal slack channel #metamask-design-system 💁

DS components figma file