-
Notifications
You must be signed in to change notification settings - Fork 4.3k
/
Copy pathindex.story.tsx
93 lines (86 loc) · 1.97 KB
/
index.story.tsx
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
/**
* External dependencies
*/
import type { Meta, StoryFn } from '@storybook/react';
/**
* WordPress dependencies
*/
import { useState } from '@wordpress/element';
/**
* Internal dependencies
*/
import Disabled from '../';
import SelectControl from '../../select-control/';
import TextControl from '../../text-control/';
import TextareaControl from '../../textarea-control/';
import { VStack } from '../../v-stack/';
const meta: Meta< typeof Disabled > = {
title: 'Components/Utilities/Disabled',
id: 'components-disabled',
component: Disabled,
argTypes: {
as: { control: { type: null } },
children: { control: { type: null } },
},
parameters: {
controls: {
expanded: true,
},
docs: { canvas: { sourceState: 'shown' } },
},
};
export default meta;
const Form = () => {
const [ textControlValue, setTextControlValue ] = useState( '' );
const [ textAreaValue, setTextAreaValue ] = useState( '' );
return (
<VStack>
<TextControl
__nextHasNoMarginBottom
__next40pxDefaultSize
label="Text Control"
value={ textControlValue }
onChange={ setTextControlValue }
/>
<TextareaControl
__nextHasNoMarginBottom
label="TextArea Control"
value={ textAreaValue }
onChange={ setTextAreaValue }
/>
<SelectControl
__nextHasNoMarginBottom
label="Select Control"
onChange={ () => {} }
options={ [
{ value: '', label: 'Select an option', disabled: true },
{ value: 'a', label: 'Option A' },
{ value: 'b', label: 'Option B' },
{ value: 'c', label: 'Option C' },
] }
/>
</VStack>
);
};
export const Default: StoryFn< typeof Disabled > = ( args ) => {
return (
<Disabled { ...args }>
<Form />
</Disabled>
);
};
Default.args = {
isDisabled: true,
};
export const ContentEditable: StoryFn< typeof Disabled > = ( args ) => {
return (
<Disabled { ...args }>
<div contentEditable tabIndex={ 0 }>
contentEditable
</div>
</Disabled>
);
};
ContentEditable.args = {
isDisabled: true,
};