File size: 5,761 Bytes
41a71fd |
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 |
import { z } from 'zod';
import { zodResolver } from '@hookform/resolvers/zod';
import { FormProvider, useForm } from 'react-hook-form';
import { HInput, HRadioButtons } from '@/shared/ui/FormComponents';
import { classNames } from '@/shared/lib/classNames/classNames';
import { Button, ButtonSize, ButtonTheme } from '@/shared/ui/Button';
import cls from './AllFieldForm.module.scss';
import { regexMap } from '@/shared/lib/utils/regexMap';
import { IRadioButtons, RadioButtonsTheme } from '@/shared/ui/FormComponents/fieldsUI/RadioButtons/RadioButtons';
import { HCheckbox } from '@/shared/ui/FormComponents/rhfFields/HCheckbox/HCheckbox';
import { HTextarea } from '@/shared/ui/FormComponents/rhfFields/HTextarea/HTextarea';
const AllFieldFormSchema = z.object({
textInput: z //
.string()
.min(1, { message: 'Заполните поле' })
.max(255),
maskIInput: z //
.string()
// .min(1, { message: 'Заполните поле' })
.max(255)
.regex(/^\+7 \(\d{3}\) \d{3}-\d{2}-\d{2}$/, { message: 'Укажите верный формат телефона' }),
maskIInputLatin: z //
.string()
// .min(1, { message: 'Заполните поле' })
.max(255),
radioButton: z //
.string()
// .min(1, { message: 'Выберите значение' })
.max(255),
radioButtonParam: z //
.string()
// .min(1, { message: 'Выберите значение' })
.max(255),
textarea: z //
.string()
.min(1, { message: 'Заполните поле' })
.max(255),
checkbox: z.string(),
});
type AllFieldFormType = z.infer<typeof AllFieldFormSchema>;
interface AllFieldFormProps {
className?: string;
}
const defaultValues = {
textInput: '',
maskIInput: '',
maskIInputLatin: '',
radioButton: '',
radioButtonParam: '',
checkbox: '',
textarea: '',
};
export const AllFieldForm = (props: AllFieldFormProps) => {
const { className } = props;
const regex = regexMap.onlyRuSymbols;
const methods = useForm<AllFieldFormType>({
defaultValues,
resolver: zodResolver(AllFieldFormSchema),
});
const { handleSubmit } = methods;
const submitHandler = async (data: AllFieldFormType) => {
console.log('data: ', data);
};
const radioData: IRadioButtons[] = [
{
labelName: 'Раз в квартал',
value: '0',
},
{
labelName: 'Раз в пол года',
value: '1',
},
{
labelName: 'Раз в год',
value: '2',
},
];
const radioDataParam: IRadioButtons[] = [
{
labelName: 'Раз в квартал',
value: '0',
},
{
labelName: 'Раз в пол года',
value: '1',
},
{
labelName: 'Раз в год',
value: '2',
},
];
return (
<div className={classNames(cls.AllFieldForm, {}, [className])}>
<FormProvider {...methods}>
<form onSubmit={handleSubmit(submitHandler)}>
<div className={cls.grid}>
<HInput //
className={cls.field}
name="textInput"
label="Текстовое поле"
placeholder="Введите текст"
/>
<HInput //
className={cls.field}
name="maskIInput"
label="Поле с маской"
placeholder="Введите маску"
mask="+7 (999) 999-99-99"
maskOptions={{ showMaskOnHover: false }}
/>
<HInput //
className={cls.field}
name="maskIInputLatin"
label="Поле с вводом только русских букв"
placeholder="Введите только русские буквы"
maskOptions={{ regex: regex.source, showMaskOnHover: false }}
/>
<HRadioButtons
theme={RadioButtonsTheme.PARAM}
className={cls.field}
name="radioButtonParam"
radioData={radioDataParam}
title="Заголовок"
// registerOptions={{ required: true }}
/>
<HRadioButtons
className={cls.field}
name="radioButton"
radioData={radioData}
// registerOptions={{ required: true }}
/>
<HCheckbox name="checkbox">Текст чекбокс</HCheckbox>
<HTextarea name="textarea" placeholder="Введите текст" />
</div>
<Button
theme={ButtonTheme.PRIMARY}
size={ButtonSize.XL}
type="submit"
// showSpinner={isAddUserLoading}
// disabled={isAddUserLoading}
>
Сохранить
</Button>
</form>
</FormProvider>
</div>
);
};
|