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
|
import React from 'react';
import Examples from './utils/Examples.js';
import Checklist from '../../src/react/Checklist.js';
import HTMLListChecked from '../../components/checklist/checklist-with-checked-items.html';
import HTMLListDisabled from '../../components/checklist/checklist-with-disabled-items.html';
const items = [
{
label: 'apple',
value: 'apple',
dataTestId: 'apple',
checked: true
},
{
label: 'banana',
value: 'banana',
dataTestId: 'banana',
checked: false
},
{
label: 'orange',
value: 'orange',
dataTestId: 'orange',
checked: true
}
];
const itemsDisabled = [
{
label: 'apple',
value: 'apple',
dataTestId: 'apple',
checked: true,
disabled: true
},
{
label: 'banana',
value: 'banana',
dataTestId: 'banana',
checked: false,
disabled: true
},
{
label: 'orange',
value: 'orange',
dataTestId: 'orange',
checked: false
}
];
let examples = {
Basic: {
jsx: <Checklist items={items} onChange={() => { }} />,
html: HTMLListChecked
},
Disabled: {
jsx: <Checklist items={itemsDisabled} onChange={() => { }} />,
html: HTMLListDisabled
}
};
const ChecklistStory = () => (
<Examples examples={examples} />
);
export default ChecklistStory;
|