source: src/sections/employee/employee-new-edit-form.tsx

main
Last change on this file was 057453c, checked in by Naum Shapkarovski <naumshapkarovski@…>, 6 weeks ago

feat: implement employees

  • Property mode set to 100644
File size: 2.2 KB
Line 
1import { useCallback } from 'react';
2import { useForm } from 'react-hook-form';
3import { zodResolver } from '@hookform/resolvers/zod';
4// @mui
5import LoadingButton from '@mui/lab/LoadingButton';
6import Card from '@mui/material/Card';
7import Stack from '@mui/material/Stack';
8import Grid from '@mui/material/Unstable_Grid2';
9// routes
10import { paths } from 'src/routes/paths';
11import { useRouter } from 'src/routes/hooks';
12// types
13import { NewEmployee, newEmployeeSchema } from 'src/schemas';
14// components
15import { useSnackbar } from 'src/components/snackbar';
16import FormProvider, { RHFTextField, RHFUploadAvatar } from 'src/components/hook-form';
17import { createEmployee } from 'src/api/employee';
18
19export default function EmployeeNewEditForm() {
20 const router = useRouter();
21 const { enqueueSnackbar } = useSnackbar();
22
23 const methods = useForm<NewEmployee>({
24 resolver: zodResolver(newEmployeeSchema),
25 defaultValues: {
26 name: '',
27 email: '',
28 status: 'active' as const,
29 project: '',
30 iban: '',
31 photo: '',
32 cv: '',
33 },
34 });
35
36 const {
37 handleSubmit,
38 formState: { isSubmitting },
39 } = methods;
40
41 const onSubmit = handleSubmit(async (data) => {
42 try {
43 await createEmployee(data);
44 enqueueSnackbar('Create success!');
45 router.push(paths.dashboard.employee.list);
46 } catch (error) {
47 console.error(error);
48 }
49 });
50
51 return (
52 <FormProvider methods={methods} onSubmit={onSubmit}>
53 <Grid container spacing={3}>
54 <Grid xs={12} md={8}>
55 <Card sx={{ p: 3 }}>
56 <Stack spacing={3}>
57 <RHFTextField name="name" label="Full Name" />
58 <RHFTextField name="email" label="Email Address" />
59 <RHFTextField name="project" label="Project" />
60 <RHFTextField name="iban" label="IBAN" />
61 <RHFTextField name="cv" label="CV Link" />
62 </Stack>
63
64 <Stack alignItems="flex-end" sx={{ mt: 3 }}>
65 <LoadingButton type="submit" variant="contained" loading={isSubmitting}>
66 Create Employee
67 </LoadingButton>
68 </Stack>
69 </Card>
70 </Grid>
71 </Grid>
72 </FormProvider>
73 );
74}
Note: See TracBrowser for help on using the repository browser.