Skip to content

Commit 73aa6c1

Browse files
Merge pull request #67 from azawert/feat/card_for_pet
Feat/create-view-pet
2 parents 3f08838 + 457a6a1 commit 73aa6c1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2546
-160
lines changed

src/assets/Icons/CalendarIcon.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { memo } from "react"
22
import { TIconProps } from "./types"
33

44
const Component: React.FC<TIconProps> = props => {
5-
const { width = 32, height = 32, ...rest } = props
5+
const { width = 20, height = 20, ...rest } = props
66
return (
77
<svg
88
width={width}

src/assets/Icons/DownArrowIcon.tsx

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import { memo } from "react"
2+
import { TIconProps } from "./types"
3+
4+
const Component: React.FC<TIconProps> = props => {
5+
const { width = 16, height = 16, ...rest } = props
6+
return (
7+
<svg
8+
width={width}
9+
height={height}
10+
viewBox="0 0 20 20"
11+
fill="none"
12+
xmlns="http://www.w3.org/2000/svg"
13+
{...rest}
14+
>
15+
<path
16+
d="M16.95 7.5L11.5167 12.9333C10.875 13.575 9.825 13.575 9.18333 12.9333L3.75 7.5"
17+
stroke="#181A1A"
18+
strokeWidth="1.5"
19+
strokeMiterlimit="10"
20+
strokeLinecap="round"
21+
strokeLinejoin="round"
22+
/>
23+
</svg>
24+
)
25+
}
26+
27+
export const DownArrowIcon = memo(Component)

src/assets/Icons/LeftArrowIcon.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export const LeftArrowIcon: React.FC<TIconProps> = props => {
1515
d="M10.5 13.5L5.90683 8.97222C5.36439 8.4375 5.36439 7.5625 5.90683 7.02778L10.5 2.5"
1616
stroke="#181A1A"
1717
strokeWidth="1.5"
18-
stroke-miterlimit="10"
19-
stroke-linecap="round"
20-
stroke-linejoin="round"
18+
strokeMiterlimit="10"
19+
strokeLinecap="round"
20+
strokeLinejoin="round"
2121
/>
2222
</svg>
2323
)

src/assets/Icons/RightArrowIcon.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ export const RightArrowIcon: React.FC<TIconProps> = props => {
1515
d="M5.5 13.5L10.0932 8.97222C10.6356 8.4375 10.6356 7.5625 10.0932 7.02778L5.5 2.5"
1616
stroke="#181A1A"
1717
strokeWidth="1.5"
18-
stroke-miterlimit="10"
19-
stroke-linecap="round"
20-
stroke-linejoin="round"
18+
strokeMiterlimit="10"
19+
strokeLinecap="round"
20+
strokeLinejoin="round"
2121
/>
2222
</svg>
2323
)

src/assets/Icons/StarIcon.tsx

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import { TIconProps } from "@/assets/Icons/types.tsx"
2+
import { memo } from "react"
3+
4+
const Component: React.FC<TIconProps> = props => {
5+
const { width = 16, height = 16, ...rest } = props
6+
7+
return (
8+
<svg
9+
width={width}
10+
height={height}
11+
{...rest}
12+
viewBox="0 0 16 16"
13+
fill="none"
14+
xmlns="http://www.w3.org/2000/svg"
15+
>
16+
<g clip-path="url(#clip0_6240_6968)">
17+
<path
18+
d="M9.14937 2.34465L10.3227 4.69132C10.4827 5.01798 10.9094 5.33132 11.2694 5.39132L13.396 5.74465C14.756 5.97131 15.076 6.95798 14.096 7.93132L12.4427 9.58465C12.1627 9.86465 12.0094 10.4046 12.096 10.7913L12.5694 12.838C12.9427 14.458 12.0827 15.0846 10.6494 14.238L8.65603 13.058C8.29603 12.8446 7.7027 12.8446 7.33603 13.058L5.3427 14.238C3.91603 15.0846 3.04937 14.4513 3.4227 12.838L3.89603 10.7913C3.9827 10.4046 3.82937 9.86465 3.54937 9.58465L1.89603 7.93132C0.9227 6.95798 1.23603 5.97131 2.59603 5.74465L4.7227 5.39132C5.07603 5.33132 5.5027 5.01798 5.6627 4.69132L6.83603 2.34465C7.47603 1.07132 8.51603 1.07132 9.14937 2.34465Z"
19+
fill="#FFC107"
20+
stroke="#181A1A"
21+
stroke-width="1.5"
22+
stroke-linecap="round"
23+
stroke-linejoin="round"
24+
/>
25+
</g>
26+
<defs>
27+
<clipPath id="clip0_6240_6968">
28+
<rect width="16" height="16" fill="white" />
29+
</clipPath>
30+
</defs>
31+
</svg>
32+
)
33+
}
34+
35+
export const StarIcon = memo(Component)

src/assets/Icons/types.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,13 @@ import { SuccessIcon } from "./SuccessIcon"
77
import { WarningIcon } from "./WarningIcon"
88
import { RightArrowIcon } from "./RightArrowIcon"
99
import { LeftArrowIcon } from "./LeftArrowIcon"
10-
import { CalendarIcon } from "./CalendarIcon"
10+
// import { CalendarIcon } from "./CalendarIcon"
1111
import { TeamIcon } from "@/assets/Icons/TeamIcon.tsx"
1212
import { RoomIcon } from "@/assets/Icons/RoomIcon.tsx"
1313
import { CategoryIcon } from "@/assets/Icons/CategoryIcon.tsx"
1414
import { ClientIcon } from "@/assets/Icons/ClientIcon.tsx"
15+
import { CalendarIcon } from "@/assets/Icons/CalendarIcon.tsx"
16+
import { DownArrowIcon } from "./DownArrowIcon"
1517

1618
export type TIcon =
1719
| "PlusIcon"
@@ -28,6 +30,8 @@ export type TIcon =
2830
| "CategoryIcon"
2931
| "ClientIcon"
3032
| "AnimalIcon"
33+
| "CalendarIcon"
34+
| "DownArrowIcon"
3135

3236
export type TIconProps = SVGProps<SVGSVGElement>
3337

@@ -45,4 +49,6 @@ export const iconTypes = new Map<TIcon, React.JSX.Element>([
4549
["RoomIcon", <RoomIcon key={"RoomIcon"} />],
4650
["CategoryIcon", <CategoryIcon key={"CategoryIcon"} />],
4751
["ClientIcon", <ClientIcon key={"ClientIcon"} />],
52+
["CalendarIcon", <CalendarIcon key={"CalendarIcon"} />],
53+
["DownArrowIcon", <DownArrowIcon key={"DownArrowIcon"}/>],
4854
])

src/modules/Booking/components/form/blocks/ScheduleForm/ScheduleForm.tsx

+2-4
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export const ScheduleForm = (props: ScheduleProps) => {
8080
return (
8181
<div className="flex flex-col">
8282
<div className="flex flex-col gap-x-2">
83-
<div className="flex flex-row gap-4">
83+
<div className="flex flex-row gap-4 items-center">
8484
<div className="relative">
8585
<TextField
8686
width="260px"
@@ -118,7 +118,6 @@ export const ScheduleForm = (props: ScheduleProps) => {
118118
<BookingSelect
119119
className="w-64"
120120
data={SCHEDULE_CHECKIN}
121-
marginBottom="16px"
122121
placeholder={Placeholder.TIME_FROM.valueOf()}
123122
label={
124123
field.value?.length ? Placeholder.TIME_FROM.valueOf() : ""
@@ -130,7 +129,7 @@ export const ScheduleForm = (props: ScheduleProps) => {
130129
/>
131130
</div>
132131

133-
<div className="flex flex-row gap-3">
132+
<div className="flex flex-row gap-3 items-center">
134133
<div className="relative">
135134
<TextField
136135
width={"260px"}
@@ -165,7 +164,6 @@ export const ScheduleForm = (props: ScheduleProps) => {
165164
<BookingSelect
166165
className="w-64"
167166
data={SCHEDULE_DEPARTURE}
168-
marginBottom="16px"
169167
placeholder={Placeholder.TIME_TO.valueOf()}
170168
label={field.value?.length ? Placeholder.TIME_TO.valueOf() : ""}
171169
{...field}

src/modules/Booking/components/form/fields/BookingSelect/BookingSelect.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,7 @@ export const BookingSelect = forwardRef<HTMLSelectElement, TProps>(
6565
} = props
6666

6767
const handleSelectChange = (e: SelectChangeEvent) => {
68-
console.log(e)
6968
onChange(e.target.value)
70-
console.log(value)
7169
}
7270

7371
return (
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,120 @@
11
import { Box, Dialog, DialogTitle } from "@mui/material"
22
import { memo } from "react"
3-
import { FieldValues, useForm } from "react-hook-form"
43
import { ShortClientForm } from "@/modules/Booking/consts/Placeholders"
54
import { TextField } from "@/shared/ui/TextField"
6-
import { NewOwnerDto } from "@/generated/owners"
75
import { Button, EButtonSize, EButtonVariant } from "@/shared/ui/Button/Button"
6+
import { NewOwnerDto } from "@/generated/owners"
7+
import { UseFormReturn } from "react-hook-form"
88

9-
interface IShortClientProps {
9+
interface ShortClientModalProps {
10+
form: UseFormReturn<NewOwnerDto>
11+
isModalOpen: boolean
1012
onClose: () => void
1113
onSubmit: (data: NewOwnerDto) => void
12-
isModalOpen: boolean
13-
form: ReturnType<typeof useForm>
1414
}
1515

16-
export const ShortClientModal: React.FC<IShortClientProps> = memo(props => {
17-
const { onClose, onSubmit, isModalOpen, form } = props
18-
const {
19-
handleSubmit,
20-
register,
21-
formState: { errors },
22-
} = form
23-
return (
24-
<Dialog
25-
open={isModalOpen}
26-
maxWidth="lg"
27-
onClose={onClose}
28-
aria-labelledby="modal-booking-title"
29-
aria-describedby="modal-booking-description"
30-
sx={{
31-
"& .MuiDialogTitle-root": {
32-
padding: "40px 64px 0",
33-
},
34-
"& .MuiPaper-root": {
35-
borderRadius: "16px",
36-
width: "656px ",
37-
},
38-
}}
39-
>
40-
<DialogTitle
41-
display="flex"
42-
justifyContent="flex-start"
43-
padding="0"
44-
fontSize={24}
45-
fontWeight={800}
46-
>
47-
Новый клиент
48-
</DialogTitle>
49-
<form
50-
className="pb-10 px-16"
51-
onSubmit={(data: FieldValues) => onSubmit(data as NewOwnerDto)}
16+
export const ShortClientModal: React.FC<ShortClientModalProps> = memo(
17+
({ form, isModalOpen, onClose, onSubmit }) => {
18+
const {
19+
handleSubmit,
20+
register,
21+
formState: { isDirty, errors },
22+
} = form
23+
24+
const formFields = [
25+
{
26+
id: "lastname",
27+
label: ShortClientForm.LAST_NAME.valueOf(),
28+
placeholder: ShortClientForm.LAST_NAME.valueOf(),
29+
error: errors?.lastName?.message,
30+
},
31+
{
32+
id: "firstName",
33+
label: ShortClientForm.FIRST_NAME.valueOf(),
34+
placeholder: ShortClientForm.FIRST_NAME.valueOf(),
35+
error: errors?.firstName?.message,
36+
},
37+
{
38+
id: "middleName",
39+
label: ShortClientForm.MIDDLE_NAME.valueOf(),
40+
placeholder: ShortClientForm.MIDDLE_NAME.valueOf(),
41+
error: errors?.middleName?.message,
42+
},
43+
{
44+
id: "mainPhone",
45+
label: ShortClientForm.MAIN_PHONE.valueOf(),
46+
placeholder: ShortClientForm.MAIN_PHONE.valueOf(),
47+
error: errors?.mainPhone?.message,
48+
},
49+
{
50+
id: "optionalPhone",
51+
label: ShortClientForm.OPTIONAL_PHONE.valueOf(),
52+
placeholder: ShortClientForm.OPTIONAL_PHONE.valueOf(),
53+
error: errors?.optionalPhone?.message,
54+
},
55+
{
56+
id: "rating",
57+
label: ShortClientForm.RATING.valueOf(),
58+
placeholder: ShortClientForm.RATING.valueOf(),
59+
error: errors?.rating?.message,
60+
},
61+
]
62+
63+
const isReadyToSubmit = isDirty && Object.keys(errors).length === 0
64+
65+
return (
66+
<Dialog
67+
open={isModalOpen}
68+
maxWidth="lg"
69+
onClose={onClose}
70+
aria-labelledby="modal-booking-title"
71+
aria-describedby="modal-booking-description"
72+
sx={{
73+
"& .MuiDialogTitle-root": {
74+
padding: "40px 64px 0",
75+
},
76+
"& .MuiPaper-root": {
77+
borderRadius: "16px",
78+
width: "656px",
79+
},
80+
}}
5281
>
53-
<Box
82+
<DialogTitle
5483
display="flex"
55-
alignItems="center"
56-
justifyContent="center"
57-
marginBottom={"15px"}
84+
justifyContent="flex-start"
85+
padding="0"
86+
fontSize={24}
87+
fontWeight={800}
5888
>
59-
<Box
60-
display="flex"
61-
justifyContent="flex-start"
62-
flexDirection="column"
63-
width="100%"
64-
>
65-
<TextField
66-
label={ShortClientForm.LAST_NAME.valueOf()}
67-
id={ShortClientForm.LAST_NAME.valueOf()}
68-
placeholder={ShortClientForm.LAST_NAME.valueOf()}
69-
error={errors?.lastname?.message as string}
70-
{...register("lastname")}
71-
/>
72-
<TextField
73-
label={ShortClientForm.FIRST_NAME.valueOf()}
74-
id={ShortClientForm.FIRST_NAME.valueOf()}
75-
placeholder={ShortClientForm.FIRST_NAME.valueOf()}
76-
error={errors?.firstName?.message as string}
77-
{...register("firstName")}
78-
/>
79-
<TextField
80-
label={ShortClientForm.MIDDLE_NAME.valueOf()}
81-
id={ShortClientForm.MIDDLE_NAME.valueOf()}
82-
placeholder={ShortClientForm.MIDDLE_NAME.valueOf()}
83-
error={errors?.middleName?.message as string}
84-
{...register("middleName")}
85-
/>
86-
<TextField
87-
label={ShortClientForm.MAIN_PHONE.valueOf()}
88-
id={ShortClientForm.MAIN_PHONE.valueOf()}
89-
placeholder={ShortClientForm.MAIN_PHONE.valueOf()}
90-
error={errors?.mainPhone?.message as string}
91-
{...register("mainPhone")}
92-
/>
93-
<TextField
94-
label={ShortClientForm.OPTIONAL_PHONE.valueOf()}
95-
id={ShortClientForm.OPTIONAL_PHONE.valueOf()}
96-
placeholder={ShortClientForm.OPTIONAL_PHONE.valueOf()}
97-
error={errors?.optionalPhone?.message as string}
98-
{...register("optionalPhone")}
99-
/>
100-
<TextField
101-
className="mb-5"
102-
label={ShortClientForm.RATING.valueOf()}
103-
id={ShortClientForm.RATING.valueOf()}
104-
placeholder={ShortClientForm.RATING.valueOf()}
105-
error={errors?.rating?.message as string}
106-
{...register("rating")}
107-
/>
89+
Новый клиент
90+
</DialogTitle>
91+
<form className="pb-10 px-16" onSubmit={handleSubmit(onSubmit)}>
92+
<Box display="flex" flexDirection="column" gap={2}>
93+
{formFields.map(field => (
94+
<TextField
95+
key={field.id}
96+
label={field.label}
97+
id={field.id}
98+
placeholder={field.placeholder}
99+
error={field.error}
100+
{...register(field.id as keyof NewOwnerDto)}
101+
/>
102+
))}
103+
</Box>
104+
<Box display="flex" justifyContent="flex-end" mt={4}>
108105
<Button
109-
onClick={handleSubmit(onSubmit as unknown as () => void)}
106+
type="submit"
110107
variant={EButtonVariant.Primary}
111108
size={EButtonSize.Large}
112109
fontSize={16}
113110
fontWeight={700}
111+
disabled={!isReadyToSubmit}
114112
>
115-
Сохранить
113+
Добавить
116114
</Button>
117115
</Box>
118-
</Box>
119-
</form>
120-
</Dialog>
121-
)
122-
})
116+
</form>
117+
</Dialog>
118+
)
119+
}
120+
)

0 commit comments

Comments
 (0)