mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
d428a4895f
Co-authored-by: Brad Decker <bhdecker84@gmail.com>
102 lines
2.3 KiB
JavaScript
102 lines
2.3 KiB
JavaScript
import React from 'react';
|
|
import {
|
|
TextColor,
|
|
TypographyVariant,
|
|
} from '../../../helpers/constants/design-system';
|
|
import MetaMaskTemplateRenderer from '.';
|
|
|
|
export default {
|
|
title: 'Components/App/MetamaskTemplateRenderer',
|
|
component: MetaMaskTemplateRenderer,
|
|
argTypes: {
|
|
sections: {
|
|
control: 'object',
|
|
},
|
|
},
|
|
};
|
|
|
|
const SECTIONS = {
|
|
element: 'Box',
|
|
props: {
|
|
margin: 4,
|
|
padding: 8,
|
|
borderColor: TextColor.primaryDefault,
|
|
borderWidth: 2,
|
|
},
|
|
children: [
|
|
{
|
|
element: 'Typography',
|
|
key: 'A Test String',
|
|
children: 'A Test String',
|
|
props: {
|
|
color: TextColor.textMuted,
|
|
variant: TypographyVariant.H2,
|
|
},
|
|
},
|
|
{
|
|
element: 'Typography',
|
|
key: 'Some more text',
|
|
children: 'Some more text as a paragraph',
|
|
props: {
|
|
color: TextColor.textAlternative,
|
|
variant: TypographyVariant.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: {
|
|
type: 'outlined',
|
|
style: {
|
|
width: '45%',
|
|
},
|
|
},
|
|
},
|
|
{
|
|
element: 'Button',
|
|
children: 'OK',
|
|
key: 'ok-button',
|
|
props: {
|
|
type: 'primary',
|
|
style: {
|
|
width: '45%',
|
|
},
|
|
},
|
|
},
|
|
],
|
|
props: { justifyContent: 'space-between', padding: [0, 4] },
|
|
},
|
|
],
|
|
};
|
|
|
|
export const DefaultStory = (args) => (
|
|
<MetaMaskTemplateRenderer sections={args.sections} />
|
|
);
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
DefaultStory.args = {
|
|
sections: SECTIONS,
|
|
};
|