File tree 2 files changed +18
-12
lines changed
2 files changed +18
-12
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import { IconButton } from "@mui/material"
4
4
import { Close } from "@mui/icons-material"
5
5
import { NewOwnerDto } from "@/generated/owners.ts"
6
6
import { useForm } from "react-hook-form"
7
+ import { addConfirmationNotification } from "@/shared/utils/utils.ts"
7
8
8
9
type TProps = {
9
10
onClose : ( ) => void
@@ -19,17 +20,32 @@ export const CreateNewClientModal = ({
19
20
const form = useForm < NewOwnerDto > ( {
20
21
mode : "all" ,
21
22
} )
23
+ const confirmationNotification = addConfirmationNotification ( )
24
+
25
+ const onCloseAndReset = ( ) => {
26
+ onClose ( )
27
+ form . reset ( )
28
+ }
29
+
30
+ const handleCloseModal = ( ) => {
31
+ if ( form . formState . isDirty ) {
32
+ confirmationNotification ( onCloseAndReset )
33
+ } else {
34
+ onCloseAndReset ( )
35
+ }
36
+ }
37
+
22
38
return (
23
39
< MultiStepModal
24
40
ariaDescribedby = "createnewclientheader"
25
41
ariaLabelledby = "createnewclientbody"
26
42
form = { form }
27
43
formId = "id"
28
44
isOpen = { isOpen }
29
- onClose = { onClose }
45
+ onClose = { handleCloseModal }
30
46
onSubmit = { handleCreateClient }
31
47
renderHeader = { ( ) => (
32
- < IconButton onClick = { onClose } >
48
+ < IconButton onClick = { handleCloseModal } >
33
49
< Close />
34
50
</ IconButton >
35
51
) }
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ export const steps: TStep<NewOwnerDto>[] = [
12
12
{
13
13
label : "Фамилия" ,
14
14
name : "lastName" ,
15
- isRequired : true ,
16
15
validation : {
17
16
minLength : {
18
17
message : "Введите больше 2-ух символов" ,
@@ -22,12 +21,7 @@ export const steps: TStep<NewOwnerDto>[] = [
22
21
value : 30 ,
23
22
message : "Введите меньше 30 символов" ,
24
23
} ,
25
- required : {
26
- message : "Пожалуйста, заполните это поле" ,
27
- value : true ,
28
- } ,
29
24
} ,
30
- placeholder : "Фамилия" ,
31
25
} ,
32
26
{
33
27
label : "Имя" ,
@@ -60,10 +54,6 @@ export const steps: TStep<NewOwnerDto>[] = [
60
54
value : 30 ,
61
55
message : "Введите меньше 30 символов" ,
62
56
} ,
63
- required : {
64
- value : true ,
65
- message : "Пожалуйста, заполните это поле" ,
66
- } ,
67
57
} ,
68
58
} ,
69
59
{
You can’t perform that action at this time.
0 commit comments