forked from aranlucas/react-hook-form-mantine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.tsx
More file actions
241 lines (234 loc) · 7.64 KB
/
test.tsx
File metadata and controls
241 lines (234 loc) · 7.64 KB
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
"use client";
import { Form, useForm } from "react-hook-form";
import {
Checkbox,
Chip,
ColorInput,
ColorPicker,
DatePickerInput,
JsonInput,
NativeSelect,
NumberInput,
PasswordInput,
PinInput,
Radio,
Rating,
SegmentedControl,
Select,
Slider,
Switch,
Textarea,
TextInput,
} from "@maskedredstonerproz/react-hook-form-mantine";
import { Button, Group, Paper, Container, Stack, MantineProvider } from "@mantine/core";
import { z } from "zod";
import { zodResolver } from "@hookform/resolvers/zod";
const schema = z.object({
checkbox: z.boolean(),
chip: z.boolean(),
chipgroupMultiple: z.array(z.string()),
chipgroupSingle: z.string(),
colorInput: z.string(),
colorPicker: z.string(),
datepicker: z.date().nullable(),
fileInput: z.any(),
jsonInput: z.string(),
multiSelect: z.any(),
nativeSelect: z.string(),
numberInput: z.number(),
passwordInput: z.string(),
pinInput: z.string(),
radio: z.string(),
rating: z.number(),
segmentedControl: z.string(),
select: z.string(),
slider: z.number(),
switch: z.boolean(),
textarea: z.string(),
textInput: z.string(),
transferList: z.any(),
});
type FormSchemaType = z.infer<typeof schema>;
export default function Test() {
const { control } = useForm<FormSchemaType>({
resolver: zodResolver(schema),
defaultValues: {
checkbox: true,
chip: true,
chipgroupMultiple: [],
chipgroupSingle: "react",
colorInput: "",
colorPicker: "",
datepicker: null,
jsonInput: "",
multiSelect: [],
nativeSelect: "",
numberInput: 18,
passwordInput: "",
pinInput: "",
radio: "",
rating: 2,
segmentedControl: "",
select: "",
slider: 40,
switch: false,
textarea: "",
textInput: "",
},
});
return (
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]">
<MantineProvider>
<Container size={1000}>
<Paper withBorder shadow="md" p={30} mt={30} radius="md">
<Form
control={control}
onSubmit={(e) => console.log(e.data)}
onError={(e) => console.log(e)}
>
<Stack>
<Checkbox
name="checkbox"
value="Test"
control={control}
label="I agree to sell my privacy"
/>
<Chip name="chip" control={control}>
Awesome chip
</Chip>
<Chip.Group name="chipgroupSingle" control={control}>
<Chip.Item value="1">1</Chip.Item>
<Chip.Item value="2">2</Chip.Item>
<Chip.Item value="3">3</Chip.Item>
</Chip.Group>
<Chip.Group multiple name="chipgroupMultiple" control={control}>
<Chip.Item value="react">React</Chip.Item>
<Chip.Item value="ng">Angular</Chip.Item>
<Chip.Item value="svelte">Svelte</Chip.Item>
</Chip.Group>
<ColorInput
name="colorInput"
control={control}
placeholder="Pick color"
label="Your favorite color"
/>
<ColorPicker name="colorPicker" control={control} />
<DatePickerInput
label="Pick date"
placeholder="Pick date"
name="datepicker"
control={control}
/>
<JsonInput
name="jsonInput"
control={control}
label="Your package.json"
placeholder="Textarea will autosize to fit the content"
validationError="Invalid json"
formatOnBlur
autosize
minRows={4}
/>
<TextInput name="textInput" control={control} label="TextBox" />
<NativeSelect
name="nativeSelect"
control={control}
data={["React", "Vue", "Angular", "Svelte"]}
label="Select your favorite framework/library"
description="This is anonymous"
withAsterisk
/>
<NumberInput
name="numberInput"
control={control}
placeholder="Your age"
label="Your age"
withAsterisk
/>
<PasswordInput
name="passwordInput"
control={control}
placeholder="Password"
label="Password"
description="Password must include at least one letter, number and special character"
withAsterisk
/>
<Group>
<PinInput name="pinInput" control={control} />
</Group>
<Radio.Group
name="radio"
control={control}
label="Select your favorite framework/library"
description="This is anonymous"
withAsterisk
>
<Group mt="xs">
<Radio.Item value="react" label="React" />
<Radio.Item value="svelte" label="Svelte" />
<Radio.Item value="ng" label="Angular" />
<Radio.Item value="vue" label="Vue" />
</Group>
</Radio.Group>
<Rating name="rating" control={control} />
<SegmentedControl
name="segmentedControl"
control={control}
data={[
{ label: "React", value: "react" },
{ label: "Angular", value: "ng" },
{ label: "Vue", value: "vue" },
{ label: "Svelte", value: "svelte" },
]}
/>
<Select
name="select"
control={control}
label="Your favorite framework/library"
placeholder="Pick one"
data={[
{ value: "react", label: "React" },
{ value: "ng", label: "Angular" },
{ value: "svelte", label: "Svelte" },
{ value: "vue", label: "Vue" },
]}
/>
<Slider
name="slider"
control={control}
marks={[
{ value: 20, label: "20%" },
{ value: 50, label: "50%" },
{ value: 80, label: "80%" },
]}
/>
<Switch
name="switch"
control={control}
label="I agree to sell my privacy"
/>
<Textarea
name="textarea"
control={control}
placeholder="Your comment"
label="Your comment"
withAsterisk
/>
<TextInput
name="textInput"
control={control}
placeholder="Your name"
label="Full name"
withAsterisk
/>
<Group mt="md">
<Button type="submit">Submit</Button>
</Group>
</Stack>
</Form>
</Paper>
</Container>
</MantineProvider>
</div>
);
}