Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 23x 23x 3x 7x 7x 7x 3x 3x 3x 3x 3x 3x 1x 1x 1x 1x 3x 1x 3x 1x 78x | 'use client' import { Form, Formik, FormikProps } from 'formik' import Head from 'next/head' import { useRouter } from 'next/navigation' import { useEffect } from 'react' import { ObjectSchema, array, object, string } from 'yup' import { testatorMoreInfosOptions } from '../../../../../../content/checkboxOptions' import { genderOptions } from '../../../../../../content/dropdownOptions' import { NAME_REQUIRED_ERROR } from '../../../../../../content/validation' import { Checkbox } from '../../../../../components/Form/Checkbox/Checkbox' import { FormDatepicker } from '../../../../../components/Form/FormDatepicker/FormDatepicker' import { FormDropdown } from '../../../../../components/Form/FormDropdown/FormDropdown' import { FormStepsButtons } from '../../../../../components/Form/FormStepsButtons/FormStepsButtons' import { TextInput } from '../../../../../components/Form/TextInput/TextInput' import { Headline } from '../../../../../components/Headline/Headline' import { routes } from '../../../../../services/routes/routes' import { useAppDispatch, useAppSelector } from '../../../../../store/hooks' import { sendLastWillState, setProgressKeys, setTestator } from '../../../../../store/lastwill/lastwill' import { Gender } from '../../../../../types/gender' import { TestatorFormPayload } from '../../../../../types/lastWill' import { SidebarPages } from '../../../../../types/sidebar' const validationSchema: ObjectSchema<TestatorFormPayload> = object({ name: string().required(NAME_REQUIRED_ERROR), gender: string<Gender>(), birthDate: string(), birthPlace: string(), houseNumber: string(), zipCode: string(), city: string(), street: string(), moreInfos: array(), }) /** * Testator Page */ const Testator = () => { const router = useRouter() // Global State const _id = useAppSelector((state) => state.lastWill.data._id) const testator = useAppSelector((state) => state.lastWill.data.testator) const isLoading = useAppSelector((state) => state.lastWill.isLoading) const dispatch = useAppDispatch() // Prepare links const PREVIOUS_LINK = routes.lastWill.start const NEXT_LINK = routes.lastWill.marriage(_id) // Convert global state to form state // eslint-disable-next-line @typescript-eslint/no-unused-vars const { isHandicapped, isInsolvent, relationshipStatus, address, ...formTestator } = testator const initialFormValues: TestatorFormPayload = { name: formTestator.name ?? '', gender: formTestator.gender ?? undefined, birthDate: formTestator.birthDate ?? '', birthPlace: formTestator.birthPlace ?? '', street: address ? address.street ?? '' : '', houseNumber: address ? address.houseNumber ?? '' : '', zipCode: address ? address.zipCode ?? '' : '', city: address ? address.city ?? '' : '', moreInfos: [...(isHandicapped ? ['isHandicapped'] : []), ...(isInsolvent ? ['isInsolvent'] : [])], } const onSubmit = async (values: TestatorFormPayload, href: string) => { // Update marriage global state dispatch(setTestator(values)) const response = await dispatch(sendLastWillState()) Iif (response.meta.requestStatus === 'rejected') { return } // Redirect to previous or next page router.push(href) } // Use to handle sidebar display state and progress useEffect(() => { dispatch(setProgressKeys(SidebarPages.TESTATOR)) }, [dispatch]) return ( <div className="container mt-5 flex flex-1 flex-col"> <Head> <title>Erblasser</title> </Head> <Headline hasMargin={false} className="hidden lg:block"> Erblasser </Headline> <p className="mb-4 font-medium">Persönliche Daten desjenigen, der das Testament erstellen möchte.</p> <Formik initialValues={initialFormValues} validationSchema={validationSchema} onSubmit={(values) => onSubmit(values, routes.lastWill.marriage('1'))} > {({ values, dirty }: FormikProps<TestatorFormPayload>) => ( <Form className="flex flex-1 flex-col md:mb-0"> <div className="flex w-full flex-1 flex-col"> <div className="rounded-xl border-2 border-gray-100 px-4 py-3 md:px-8 md:py-4"> {/*Personal Data*/} <Headline level={3} size="md:text-base" className=""> Persönliche Daten </Headline> <div className="2xl:w-2/3"> <div className="mb-4 grid gap-x-3 md:mb-0 md:grid-cols-2"> {/* Name */} <div className="col-span-2"> <TextInput name="name" inputRequired labelText="Vor- und Nachname" placeholder="Vor- und Nachname" autoComplete="name" /> </div> {/* Gender and Birth */} <div className="grid gap-x-3 md:grid-cols-2"> <FormDropdown name="gender" labelText="Geschlecht" placeholder="Geschlecht" hasMargin options={genderOptions} /> <FormDatepicker name="birthDate" labelText="Geburtstag" autoComplete="bday" /> </div> <TextInput name="birthPlace" labelText="Geburtsort" placeholder="Geburtsort" /> </div> {/* Adress */} <div className="grid gap-x-3 md:grid-cols-4"> <div className="md:col-start-1 md:col-end-3"> <TextInput name="street" labelText="Straße" placeholder="Straße" autoComplete="street-address" /> </div> <div className="md:col-start-3 md:col-end-4"> <TextInput name="houseNumber" labelText="Hausnummer" placeholder="Hausnummer" /> </div> <div className="md:col-start-1 md:col-end-2"> <TextInput name="zipCode" labelText="Postleitzahl" placeholder="Postleitzahl" autoComplete="postal-code" /> </div> <div className="md:col-start-2 md:col-end-4"> <TextInput name="city" labelText="Stadt" placeholder="Stadt" /> </div> </div> </div> </div> {/* More Infos */} <div className="mt-5 rounded-xl border-2 border-gray-100 px-4 py-3 md:mt-8 md:px-8 md:py-6"> <Checkbox name="moreInfos" labelText="Weitere relevante Infos" helperText="Im Fall einer Behinderung oder einer Insolvenz gibt es zusätzliche Richtlinien zu beachten." options={testatorMoreInfosOptions} /> </div> {/* Personal Data end */} </div> {/* Form Steps Buttons */} <FormStepsButtons previousOnClick={() => onSubmit(values, PREVIOUS_LINK)} loading={isLoading} dirty={dirty} previousHref={PREVIOUS_LINK} nextHref={NEXT_LINK} /> </Form> )} </Formik> </div> ) } export default Testator |