1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 09:57:02 +01:00
metamask-extension/ui/components/component-library
Binij Shrestha ceadfacb21
Fix/18884 migrate avatar network (#19079)
* Migrate AvatarNetwokr

fixing error

fix textAlign

added AvatarNetworkSize

NetworkProps extends BaseProps instead of Boxprops

omitted children from base, made name required

replace deprecated and fix lint

* update AvatarNetwork TS

* add AvatarNetworkSize test

* remove unused size import

* Update ui/components/component-library/avatar-network/avatar-network.types.ts

Co-authored-by: George Marshall <georgewrmarshall@gmail.com>

* fix readme

* update to latest box component

---------

Co-authored-by: garrettbear <gwhisten@gmail.com>
Co-authored-by: George Marshall <georgewrmarshall@gmail.com>
2023-07-24 11:15:33 -07:00
..
avatar-account Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-base Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
avatar-favicon Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-icon Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
avatar-network Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
avatar-token Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
badge-wrapper Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -07:00
banner-alert Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -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 Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
button-icon ButtonIcon background & ButtonBase disabled update (#19976) 2023-07-13 13:22:40 -07:00
button-link Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -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 Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -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 [MMI] Removed compliance feature from the codebase (#20088) 2023-07-20 10:11:14 +02:00
input Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -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 Fix #19856 - Don't autoclose Modals when Popover items are clicked (#19857) 2023-07-05 10:11:49 -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 Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -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 Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
tag-url Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
text Removing unused deprecated Text component (#20119) 2023-07-21 08:44:57 -07:00
text-field Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -07:00
text-field-search Update Text import paths: component library/ (#19987) 2023-07-17 14:00:16 -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 Fix/18884 migrate avatar network (#19079) 2023-07-24 11:15:33 -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