69 lines
1.5 KiB
TypeScript
69 lines
1.5 KiB
TypeScript
import { Button, Input } from "antd";
|
|
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { ProBottomSheet } from "components/ProBottomSheet/ProBottomSheet.tsx";
|
|
|
|
const { TextArea } = Input;
|
|
|
|
interface SpecialRequestBottomSheetProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
initialValue: string;
|
|
onSave: (value: string) => void;
|
|
}
|
|
|
|
export function BottomSheet({
|
|
isOpen,
|
|
onClose,
|
|
initialValue,
|
|
onSave,
|
|
}: SpecialRequestBottomSheetProps) {
|
|
const { t } = useTranslation();
|
|
const [value, setValue] = useState(initialValue);
|
|
|
|
useEffect(() => {
|
|
setValue(initialValue);
|
|
}, [initialValue]);
|
|
|
|
const handleSave = () => {
|
|
onSave(value);
|
|
onClose();
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
setValue(initialValue);
|
|
onClose();
|
|
};
|
|
|
|
return (
|
|
<ProBottomSheet
|
|
isOpen={isOpen}
|
|
onClose={handleCancel}
|
|
title={t("cart.specialRequest")}
|
|
showCloseButton={false}
|
|
initialSnap={1}
|
|
height={"40vh"}
|
|
snapPoints={["30vh"]}
|
|
>
|
|
<div className="space-y-4">
|
|
<div>
|
|
<TextArea
|
|
value={value}
|
|
onChange={(e) => setValue(e.target.value)}
|
|
placeholder={t("cart.specialRequest")}
|
|
rows={6}
|
|
size="middle"
|
|
autoFocus={false}
|
|
/>
|
|
</div>
|
|
|
|
<br />
|
|
|
|
<Button type="primary" style={{ width: "100%" }} onClick={handleSave}>
|
|
{t("cart.save")}
|
|
</Button>
|
|
</div>
|
|
</ProBottomSheet>
|
|
);
|
|
}
|