1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/app/metamask-template-renderer/metamask-template-renderer.stories.js
kumavis f472c2615a
CI - add metamaskbot comment "highlights" section for showing relevant storybook changes (#12095)
* ci/announce/highlight - add bot announcement section for "highlights" showing off important diffs + storybook highlights

* ci/announce/highlight - fix announcement message

* Update index.js

* xxx tmp xxx

* ci/announce/highlight - fix dirty file calculation

* ci/announce/highlight - try/catch wrap highlight generation for build stability

* ui - put fox emojis in the mascot component

* ci/announce/highlight - start storybook permalinks

* ci/announce/highlight - fix storybook permalink util

* ci/announce/highlight - fix storybook permalink util

* ci/announce/highlight - small styling fix

* storybook - use any easily predictable story id

* ci/announce/highlight - revert sample commit

* ci/announce/highlight - minimal documentation
2021-09-15 08:55:48 -10:00

108 lines
2.6 KiB
JavaScript

import React from 'react';
import { object } from '@storybook/addon-knobs';
import { COLORS, TYPOGRAPHY } from '../../../helpers/constants/design-system';
import MetaMaskTemplateRenderer from '.';
export default {
title: 'MetaMask Template Renderer',
id: __filename,
};
const SECTIONS = {
element: 'Box',
props: {
margin: 4,
padding: 8,
borderColor: COLORS.PRIMARY1,
borderWidth: 2,
},
children: [
{
element: 'Typography',
key: 'A Test String',
children: 'A Test String',
props: {
color: COLORS.UI3,
variant: TYPOGRAPHY.H2,
},
},
{
element: 'Typography',
key: 'Some more text',
children: 'Some more text as a paragraph',
props: {
color: COLORS.UI4,
variant: TYPOGRAPHY.Paragraph,
},
},
{
element: 'TruncatedDefinitionList',
key: 'TDL',
props: {
dictionary: {
term:
'a word or phrase used to describe a thing or to express a concept, especially in a particular kind of language or branch of study.',
definition:
'a statement of the exact meaning of a word, especially in a dictionary.',
dl: 'HTML tag denoting a definition list',
dt: 'HTML tag denoting a definition list term',
dd: 'HTML tag denoting a definition list definition',
},
title: 'Full list',
prefaceKeys: ['term', 'definition'],
},
},
{
element: 'Box',
key: 'ActionsBox',
children: [
{
element: 'Button',
children: 'Cancel',
key: 'cancel-button',
props: {
rounded: true,
type: 'outlined',
style: {
width: '45%',
},
},
},
{
element: 'Button',
children: 'OK',
key: 'ok-button',
props: {
rounded: true,
type: 'primary',
style: {
width: '45%',
},
},
},
],
props: { justifyContent: 'space-between', padding: [0, 4] },
},
],
};
export const metaMaskTemplateRenderer = () => (
<MetaMaskTemplateRenderer sections={object('sections', SECTIONS)} />
);
export const withInvalidElement = () => (
<MetaMaskTemplateRenderer
sections={object('sections', [
{
...SECTIONS,
key: 'safe-tree',
},
{
element: 'Unsafe',
key: 'unsafe-tree',
children:
'I should be displayed, but I wont be due to unsafe component',
},
])}
/>
);