Time estimate card: fix date values

This commit is contained in:
2025-11-13 16:43:15 +03:00
parent 529893be8b
commit 590cc2c5e9
6 changed files with 64 additions and 61 deletions

View File

@@ -25,7 +25,6 @@ import useBreakPoint from "hooks/useBreakPoint.ts";
import CarPlateCard from "pages/cart/components/CarPlateCard.tsx"; import CarPlateCard from "pages/cart/components/CarPlateCard.tsx";
import CartFooter from "pages/cart/components/cartFooter/CartFooter.tsx"; import CartFooter from "pages/cart/components/cartFooter/CartFooter.tsx";
import CouponCard from "pages/cart/components/CouponCard.tsx"; import CouponCard from "pages/cart/components/CouponCard.tsx";
import DateCard from "pages/cart/components/DateCard.tsx";
import RewardWaiterCard from "pages/cart/components/RewardWaiterCard.tsx"; import RewardWaiterCard from "pages/cart/components/RewardWaiterCard.tsx";
import SpecialRequestCard from "pages/cart/components/specialRequest/SpecialRequestCard.tsx"; import SpecialRequestCard from "pages/cart/components/specialRequest/SpecialRequestCard.tsx";
import TableNumberCard from "pages/cart/components/TableNumberCard.tsx"; import TableNumberCard from "pages/cart/components/TableNumberCard.tsx";
@@ -246,8 +245,6 @@ export default function CartMobileTabletLayout({
orderType === OrderType.Pickup || orderType === OrderType.Pickup ||
orderType === OrderType.ScheduledOrder) && <TimeEstimateCard />} orderType === OrderType.ScheduledOrder) && <TimeEstimateCard />}
{orderType === OrderType.ScheduledOrder && <DateCard form={form} />}
{/* Collection Method */} {/* Collection Method */}
{orderType === OrderType.Pickup && ( {orderType === OrderType.Pickup && (
<ProInputCard title={t("cart.collectionMethod")}> <ProInputCard title={t("cart.collectionMethod")}>

View File

@@ -5,15 +5,13 @@ import { useTranslation } from "react-i18next";
interface EstimateTimeBottomSheetProps { interface EstimateTimeBottomSheetProps {
isOpen: boolean; isOpen: boolean;
onClose: () => void; onClose: () => void;
onSave: (date: Date, time: string) => void; onSave: (date: string, time: string) => void;
initialDate?: Date;
} }
export function BottomSheet({ export function BottomSheet({
isOpen, isOpen,
onClose, onClose,
onSave, onSave,
initialDate = new Date(),
}: EstimateTimeBottomSheetProps) { }: EstimateTimeBottomSheetProps) {
const { t } = useTranslation(); const { t } = useTranslation();
@@ -27,7 +25,7 @@ export function BottomSheet({
height={555} height={555}
snapPoints={["65vh"]} snapPoints={["65vh"]}
> >
<Content onSave={onSave} initialDate={initialDate} onClose={onClose} /> <Content onSave={onSave} onClose={onClose} />
</ProBottomSheet> </ProBottomSheet>
); );
} }

View File

@@ -1,11 +1,13 @@
import { Button, Divider } from "antd"; import { Button, Divider } from "antd";
import BackIcon from "components/Icons/BackIcon.tsx"; import BackIcon from "components/Icons/BackIcon.tsx";
import NextIcon from "components/Icons/NextIcon.tsx"; import NextIcon from "components/Icons/NextIcon.tsx";
import { useEffect, useState } from "react"; import { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useAppSelector } from "redux/hooks"; import { useAppSelector } from "redux/hooks";
import { ProGray1 } from "ThemeConstants"; import { ProGray1 } from "ThemeConstants";
import styles from "./TimeEstimateCard.module.css"; import styles from "./TimeEstimateCard.module.css";
import dayjs from "dayjs";
import { SERVER_DATE_FORMAT, UI_DATE_FORMAT } from "utils/constants.ts";
const timeSlots = [ const timeSlots = [
"12:00", "12:00",
@@ -22,44 +24,30 @@ const timeSlots = [
"11:00", "11:00",
]; ];
interface EstimateTimeContentProps { interface EstimateTimeContentProps {
onSave: (date: Date, time: string) => void; onSave: (date: string, time: string) => void;
initialDate: Date;
onClose: () => void; onClose: () => void;
} }
export default function Content({ export default function Content({
onSave, onSave,
initialDate,
onClose, onClose,
}: EstimateTimeContentProps) { }: EstimateTimeContentProps) {
const { t } = useTranslation(); const { t } = useTranslation();
const [selectedDate, setSelectedDate] = useState(initialDate); const [selectedDate, setSelectedDate] = useState<string>();
const [selectedTime, setSelectedTime] = useState("12:00"); const [selectedTime, setSelectedTime] = useState<string>();
const [isAM, setIsAM] = useState(true); const [isAM, setIsAM] = useState(true);
const { isRTL } = useAppSelector((state) => state.locale); const { isRTL } = useAppSelector((state) => state.locale);
useEffect(() => {
setSelectedDate(initialDate);
}, [initialDate]);
const formatDate = (date: Date) => {
return date.toLocaleDateString("en-US", {
weekday: "long",
month: "short",
day: "numeric",
});
};
const goToPreviousDay = () => { const goToPreviousDay = () => {
const newDate = new Date(selectedDate); const newDate = dayjs(selectedDate).subtract(1, "d");
newDate.setDate(newDate.getDate() - 1); setSelectedDate(newDate.format(SERVER_DATE_FORMAT));
setSelectedDate(newDate);
}; };
const goToNextDay = () => { const goToNextDay = () => {
const newDate = new Date(selectedDate); const newDate = dayjs(selectedDate).add(1, "d");
newDate.setDate(newDate.getDate() + 1); setSelectedDate(newDate.format(SERVER_DATE_FORMAT));
setSelectedDate(newDate);
}; };
const handleTimeSelect = (time: string) => { const handleTimeSelect = (time: string) => {
@@ -67,16 +55,8 @@ export default function Content({
}; };
const handleSave = () => { const handleSave = () => {
const [hours, minutes] = selectedTime.split(":"); console.log(selectedTime);
const date = new Date(selectedDate); onSave(selectedDate || "", `${selectedTime} ${isAM ? "AM" : "PM"}`);
date.setHours(
isAM ? parseInt(hours) : parseInt(hours) + 12,
parseInt(minutes),
0,
0,
);
onSave(date, `${selectedTime} ${isAM ? "AM" : "PM"}`);
onClose(); onClose();
}; };
@@ -124,7 +104,7 @@ export default function Content({
marginBottom: 4, marginBottom: 4,
}} }}
> >
{formatDate(selectedDate)} {dayjs(selectedDate).format(UI_DATE_FORMAT)}
</div> </div>
</div> </div>

View File

@@ -6,16 +6,10 @@ import Content from "pages/cart/components/timeEstimate/Content.tsx";
interface EstimateTimeDialogProps { interface EstimateTimeDialogProps {
isOpen: boolean; isOpen: boolean;
onClose: () => void; onClose: () => void;
onSave: (date: Date, time: string) => void; onSave: (date: string, time: string) => void;
initialDate?: Date;
} }
export function Dialog({ export function Dialog({ isOpen, onClose, onSave }: EstimateTimeDialogProps) {
isOpen,
onClose,
onSave,
initialDate = new Date(),
}: EstimateTimeDialogProps) {
const { t } = useTranslation(); const { t } = useTranslation();
return ( return (
@@ -27,7 +21,7 @@ export function Dialog({
width={500} width={500}
destroyOnHidden destroyOnHidden
> >
<Content onSave={onSave} initialDate={initialDate} onClose={onClose} /> <Content onSave={onSave} onClose={onClose} />
</Modal> </Modal>
); );
} }

View File

@@ -1,24 +1,28 @@
import { Form } from "antd"; import { Form } from "antd";
import ProInputCard from "components/ProInputCard/ProInputCard.tsx"; import ProInputCard from "components/ProInputCard/ProInputCard.tsx";
import ProRatioGroups from "components/ProRatioGroups/ProRatioGroups.tsx"; import ProRatioGroups from "components/ProRatioGroups/ProRatioGroups.tsx";
import { selectCart, updateEstimateTime } from "features/order/orderSlice.ts";
import useBreakPoint from "hooks/useBreakPoint.ts"; import useBreakPoint from "hooks/useBreakPoint.ts";
import { BottomSheet } from "pages/cart/components/timeEstimate/BottomSheet.tsx"; import { BottomSheet } from "pages/cart/components/timeEstimate/BottomSheet.tsx";
import { Dialog } from "pages/cart/components/timeEstimate/Dialog.tsx"; import { Dialog } from "pages/cart/components/timeEstimate/Dialog.tsx";
import { useState } from "react"; import { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useAppDispatch, useAppSelector } from "redux/hooks.ts"; import useFormInstance from "antd/es/form/hooks/useFormInstance";
import ProDateFormInput from "components/proDatePicker/ProDatePicker.tsx";
import dayjs from "dayjs";
import { SERVER_DATE_FORMAT } from "utils/constants.ts";
import TimeFormInput from "components/proDatePicker/ProTimePicker.tsx";
export default function TimeEstimateCard() { export default function TimeEstimateCard() {
const { t } = useTranslation(); const { t } = useTranslation();
const dispatch = useAppDispatch(); const form = useFormInstance();
const { estimateTimeDate } = useAppSelector(selectCart);
const { isDesktop } = useBreakPoint(); const { isDesktop } = useBreakPoint();
const [estimateWay, setEstimateWay] = useState("now"); const [estimateWay, setEstimateWay] = useState("now");
const [isEstimateTimeOpen, setIsEstimateTimeOpen] = useState(false); const [isEstimateTimeOpen, setIsEstimateTimeOpen] = useState(false);
const handleEstimateTimeSave = (date: Date, time: string) => { const handleEstimateTimeSave = (date: string, time: string) => {
dispatch(updateEstimateTime({ date, time })); console.log(time);
form.setFieldsValue({ pickupTime: time, pickupDate: date });
}; };
const handleEstimateTimeClose = () => { const handleEstimateTimeClose = () => {
@@ -44,7 +48,10 @@ export default function TimeEstimateCard() {
onRatioClick={(value) => { onRatioClick={(value) => {
if (value === "now") { if (value === "now") {
setEstimateWay(value); setEstimateWay(value);
handleEstimateTimeSave(new Date(), "now"); handleEstimateTimeSave(
dayjs().format(SERVER_DATE_FORMAT),
"now",
);
} else { } else {
setEstimateWay(value); setEstimateWay(value);
setIsEstimateTimeOpen(true); setIsEstimateTimeOpen(true);
@@ -52,19 +59,46 @@ export default function TimeEstimateCard() {
}} }}
/> />
</Form.Item> </Form.Item>
{estimateWay === "later" && (
<div style={{ display: "flex", gap: "15px" }}>
<ProDateFormInput
pickerProps={{
size: "middle",
open: false,
onClick: (e) => {
e.preventDefault();
e.stopPropagation();
setIsEstimateTimeOpen(true);
},
}}
formItemProps={{ name: "pickupDate" }}
/>
<TimeFormInput
pickerProps={{
size: "middle",
open: false,
onClick: (e) => {
e.preventDefault();
e.stopPropagation();
setIsEstimateTimeOpen(true);
},
}}
formItemProps={{ name: "pickupTime" }}
/>
</div>
)}
</ProInputCard> </ProInputCard>
{isDesktop ? ( {isDesktop ? (
<Dialog <Dialog
isOpen={isEstimateTimeOpen} isOpen={isEstimateTimeOpen}
onClose={handleEstimateTimeClose} onClose={handleEstimateTimeClose}
initialDate={estimateTimeDate}
onSave={handleEstimateTimeSave} onSave={handleEstimateTimeSave}
/> />
) : ( ) : (
<BottomSheet <BottomSheet
isOpen={isEstimateTimeOpen} isOpen={isEstimateTimeOpen}
onClose={handleEstimateTimeClose} onClose={handleEstimateTimeClose}
initialDate={estimateTimeDate}
onSave={handleEstimateTimeSave} onSave={handleEstimateTimeSave}
/> />
)} )}

View File

@@ -49,7 +49,7 @@ export const DEFAULT_LANGUAGE = "selectedLang";
export const SERVER_DATE_FORMAT = "YYYY-MM-DD"; export const SERVER_DATE_FORMAT = "YYYY-MM-DD";
export const UI_DATE_FORMAT = "YYYY/MM/DD"; export const UI_DATE_FORMAT = "YYYY/MM/DD";
export const UI_TIME_FORMAT = "HH:mm"; export const UI_TIME_FORMAT = "h:mm A";
export const CONTACTS_URL = "LT"; export const CONTACTS_URL = "LT";
export const FILTER_PARAMS = ""; export const FILTER_PARAMS = "";