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
|
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { useState } from 'react';
import CheckboxComponent from './checkbox';
export default {
title: 'Atoms/Forms',
component: CheckboxComponent,
argTypes: {
'aria-labelledby': {
control: {
type: 'text',
},
description: 'One or more ids that refers to the checkbox name.',
table: {
category: 'Accessibility',
},
type: {
name: 'string',
required: false,
},
},
className: {
control: {
type: 'text',
},
description: 'Set additional classnames to the checkbox.',
table: {
category: 'Styles',
},
type: {
name: 'string',
required: false,
},
},
id: {
control: {
type: 'text',
},
description: 'The checkbox id.',
type: {
name: 'string',
required: true,
},
},
name: {
control: {
type: 'text',
},
description: 'The checkbox name.',
type: {
name: 'string',
required: true,
},
},
setValue: {
control: {
type: null,
},
description: 'A callback function to handle checkbox state.',
type: {
name: 'function',
required: true,
},
},
value: {
control: {
type: null,
},
description:
'The checkbox state: either checked (true) or unchecked (false).',
type: {
name: 'boolean',
required: true,
},
},
},
} as ComponentMeta<typeof CheckboxComponent>;
const Template: ComponentStory<typeof CheckboxComponent> = ({
value,
setValue: _setValue,
...args
}) => {
const [isChecked, setIsChecked] = useState<boolean>(value);
return (
<CheckboxComponent value={isChecked} setValue={setIsChecked} {...args} />
);
};
export const Checkbox = Template.bind({});
Checkbox.args = {
id: 'storybook-checkbox',
name: 'storybook-checkbox',
value: false,
};
|