-
-
Notifications
You must be signed in to change notification settings - Fork 111
/
FormContainer.stories.tsx
243 lines (235 loc) · 6.13 KB
/
FormContainer.stories.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import {
AutocompleteElement,
CheckboxButtonGroup,
CheckboxElement,
FormContainer,
MultiSelectElement,
PasswordElement,
PasswordRepeatElement,
RadioButtonGroup,
SelectElement,
SwitchElement,
TextFieldElement,
} from 'react-hook-form-mui'
import {useForm, useWatch} from 'react-hook-form'
import {Button, Stack} from '@mui/material'
import {action} from '@storybook/addon-actions'
import {Meta, StoryObj} from '@storybook/react'
import {DateFnsProvider} from 'react-hook-form-mui/date-fns'
import {DatePickerElement} from 'react-hook-form-mui/date-pickers'
const meta = {
title: 'FormContainer',
component: FormContainer,
} satisfies Meta<typeof FormContainer>
export default meta
type Story = StoryObj<typeof meta>
function SubComponent() {
const [name, email] = useWatch({
name: ['name', 'email'],
})
return (
<Button type={'submit'} color={'primary'} disabled={!(name && email)}>
Submit
</Button>
)
}
export const Basic: Story = {
render: () => (
<FormContainer
defaultValues={{
name: '',
}}
onSuccess={action('submit')}
>
<Stack spacing={2}>
<TextFieldElement name={'name'} label={'Name'} required />
<TextFieldElement
name={'email'}
label={'Email'}
required
type={'email'}
/>{' '}
<TextFieldElement name={'interest'} label={'Interest'} />
<SubComponent />
</Stack>
</FormContainer>
),
}
export const WithErrorHandler: Story = {
render: () => (
<FormContainer
defaultValues={{
name: '',
}}
onSuccess={action('submit')}
onError={action('error')}
>
<Stack spacing={2}>
<TextFieldElement name={'name'} label={'Name'} required />
<TextFieldElement
name={'email'}
label={'Email'}
required
type={'email'}
/>{' '}
<TextFieldElement name={'interest'} label={'Interest'} />
<SubComponent />
</Stack>
</FormContainer>
),
}
export const WithContext: Story = {
render: () => {
const formContext = useForm<{name: string}>({
defaultValues: {
name: '',
},
})
return (
<FormContainer formContext={formContext} onSuccess={action('submit')}>
<Stack spacing={2}>
<TextFieldElement name={'name'} label={'Name'} />
<Button type={'submit'} color={'primary'}>
Submit
</Button>
</Stack>
</FormContainer>
)
},
}
export const WithHandleSubmit: Story = {
render: () => {
const formContext = useForm<{name: string}>({
defaultValues: {
name: 'Hans',
},
})
const {handleSubmit} = formContext
return (
<FormContainer
formContext={formContext}
handleSubmit={handleSubmit(action('submit'))}
>
<Stack spacing={2}>
<TextFieldElement name={'name'} label={'Name'} />
<Button type={'submit'} color={'primary'}>
Submit
</Button>
</Stack>
</FormContainer>
)
},
}
export const NoDefaultValues: Story = {
render: () => {
return (
<FormContainer onSuccess={action('submit')}>
<Stack spacing={2}>
<TextFieldElement name={'name'} label={'Name'} />
<Button type={'submit'} color={'primary'}>
Submit
</Button>
</Stack>
</FormContainer>
)
},
}
export const StrictTypingForm: Story = {
render: () => {
const {control, handleSubmit} = useForm<{
multi_select: string[]
name: string
auto: string
auto_multi: string[]
select: string
switch: boolean
checkbox: string[]
check: boolean
date: string
radio: string
password: string
password_repeat: string
}>({
defaultValues: {
name: '',
},
})
const options = [
{id: 'one', label: 'One'},
{id: 'two', label: 'Two'},
{id: 'three', label: 'Three'},
]
return (
<DateFnsProvider>
<form onSubmit={handleSubmit(() => action('submit'))} noValidate>
<Stack spacing={2}>
<TextFieldElement
name={'name'}
label={'Name'}
control={control}
required
fullWidth
/>
<AutocompleteElement
name={'auto'}
label={'Autocomplete'}
control={control}
options={options}
/>
<AutocompleteElement
name={'auto_multi'}
label={'Autocomplete Multiple'}
multiple
control={control}
options={options}
/>
<SelectElement
name={'select'}
label={'Select'}
control={control}
options={options}
fullWidth
/>
<MultiSelectElement
showCheckbox
name={'multi_select'}
label={'Multi Select'}
control={control}
options={options}
fullWidth
/>
<DatePickerElement name={'date'} control={control} /> <br />
<RadioButtonGroup
name={'radio'}
label={'Radio'}
control={control}
options={options}
/>
<CheckboxButtonGroup
name={'checkbox'}
label={'Radio'}
control={control}
options={options}
/>
<PasswordElement
name={'password'}
label={'Password'}
control={control}
/>
<PasswordRepeatElement
name={'password_repeat'}
label={'Password Repeat'}
passwordFieldName={'password'}
control={control}
/>
<SwitchElement name={'switch'} label={'Switch'} control={control} />
<CheckboxElement name={'check'} label={'Check'} control={control} />
<Button type={'submit'} color={'primary'}>
Submit
</Button>
</Stack>
</form>
</DateFnsProvider>
)
},
}