aboutsummaryrefslogtreecommitdiffstats
path: root/stories/react/Checkbox.stories.js
blob: 3fb3ad1cd0dee2f443550d675f3df1df1402f30b (plain)
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
import React from 'react';
import Examples from './utils/Examples.js';

import Checkbox from '../../src/react/Checkbox';
import HTMLCheckboxChecked from '../../components/checkbox/checkbox-checked.html';
import HTMLCheckboxUnchecked from '../../components/checkbox/checkbox-unchecked.html';
import HTMLCheckboxDisabled from '../../components/checkbox/checkbox-disabled.html';
import HTMLCheckboxDisabledChecked from '../../components/checkbox/checkbox-disabled-checked.html';

let examples = {
	Checked: {
		jsx: <Checkbox checked={true} label='This is the checkbox label' value='myVal' onChange={()=>{}} data-test-id='mycheckbox-1' inputRef={() => {} } />,
		html: HTMLCheckboxChecked
	},
	Unchecked: {
		jsx: <Checkbox label='This is the checkbox label' value='myVal' onChange={()=>{}} data-test-id='mycheckbox-2' inputRef={() => {} } />,
		html: HTMLCheckboxUnchecked
	},
	Disabled: {
		jsx: <Checkbox label='This is the checkbox label' disabled={true} value='myVal' onChange={()=>{}} data-test-id='mycheckbox-4' inputRef={() => {} } />,
		html: HTMLCheckboxDisabled
	},
	'Disabled and Checked': {
		jsx: <Checkbox label='This is the checkbox label' disabled={true} checked={true} value='myVal' onChange={()=>{}} data-test-id='mycheckbox-4' inputRef={() => {} } />,
		html: HTMLCheckboxDisabledChecked
	}
};

const Checkboxes = () => (
	<Examples examples={examples} />
);

export default Checkboxes;