1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { IntlProvider } from 'react-intl';
import ImageWidgetComponent from './image-widget';
export default {
title: 'Organisms/Widgets',
component: ImageWidgetComponent,
args: {
alignment: 'left',
},
argTypes: {
alignment: {
control: {
type: 'select',
},
description: 'The content alignment.',
options: ['left', 'center', 'right'],
table: {
category: 'Options',
defaultValue: { summary: 'left' },
},
type: {
name: 'string',
required: false,
},
},
description: {
control: {
type: 'text',
},
description: 'Add a caption image.',
table: {
category: 'Options',
},
type: {
name: 'string',
required: false,
},
},
expanded: {
control: {
type: 'boolean',
},
description: 'The state of the widget.',
type: {
name: 'boolean',
required: true,
},
},
img: {
description: 'An image object.',
type: {
name: 'object',
required: true,
value: {},
},
},
level: {
control: {
type: 'number',
},
description: 'The widget title level (hn).',
type: {
name: 'number',
required: true,
},
},
title: {
control: {
type: 'text',
},
description: 'The widget title.',
type: {
name: 'string',
required: true,
},
},
url: {
control: {
type: 'text',
},
description: 'Add a link to the image.',
table: {
category: 'Options',
},
type: {
name: 'string',
required: false,
},
},
},
} as ComponentMeta<typeof ImageWidgetComponent>;
const Template: ComponentStory<typeof ImageWidgetComponent> = (args) => (
<IntlProvider locale="en">
<ImageWidgetComponent {...args} />
</IntlProvider>
);
const img = {
alt: 'Et perferendis quaerat',
height: 480,
src: 'http://placeimg.com/640/480/nature',
width: 640,
};
export const ImageWidget = Template.bind({});
ImageWidget.args = {
expanded: true,
img,
level: 2,
title: 'Quo et totam',
};
|