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
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import CardsListComponent, { type CardsListItem } from './cards-list';
export default {
title: 'Organisms/Layout',
component: CardsListComponent,
args: {
kind: 'unordered',
},
argTypes: {
items: {
description: 'The cards data.',
type: {
name: 'object',
required: true,
value: {},
},
},
kind: {
control: {
type: 'select',
},
description: 'The list kind.',
options: ['ordered', 'unordered'],
table: {
category: 'Options',
defaultValue: { summary: 'unordered' },
},
type: {
name: 'string',
required: false,
},
},
titleLevel: {
control: {
type: 'number',
},
description: 'The heading level for each card.',
type: {
name: 'number',
required: true,
},
},
},
} as ComponentMeta<typeof CardsListComponent>;
const Template: ComponentStory<typeof CardsListComponent> = (args) => (
<CardsListComponent {...args} />
);
const items: CardsListItem[] = [
{
id: 'card-1',
cover: {
alt: 'card 1 picture',
src: 'http://placeimg.com/640/480',
width: 640,
height: 480,
},
meta: [
{ id: 'meta-1', term: 'Quibusdam', value: ['Velit', 'Ex', 'Alias'] },
],
tagline: 'Molestias ut error',
title: 'Et alias omnis',
url: '#',
},
{
id: 'card-2',
cover: {
alt: 'card 2 picture',
src: 'http://placeimg.com/640/480',
width: 640,
height: 480,
},
meta: [{ id: 'meta-1', term: 'Est', value: ['Voluptas'] }],
tagline: 'Quod vel accusamus',
title: 'Laboriosam doloremque mollitia',
url: '#',
},
{
id: 'card-3',
cover: {
alt: 'card 3 picture',
src: 'http://placeimg.com/640/480',
width: 640,
height: 480,
},
meta: [
{
id: 'meta-1',
term: 'Omnis',
value: ['Quisquam', 'Quia', 'Sapiente', 'Perspiciatis'],
},
],
tagline: 'Quo error eum',
title: 'Magni rem nulla',
url: '#',
},
];
export const CardsList = Template.bind({});
CardsList.args = {
items,
titleLevel: 2,
};
|