75 lines
1.6 KiB
TypeScript
75 lines
1.6 KiB
TypeScript
import { Button, Input, Modal } from "antd";
|
|
import WaiterRewardingIcon from "components/Icons/waiter/WaiterRewardingIcon";
|
|
import { useEffect, useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
|
|
interface TipDialogProps {
|
|
isOpen: boolean;
|
|
onClose: () => void;
|
|
initialValue: string;
|
|
onSave: (value: string) => void;
|
|
}
|
|
|
|
export function TipDialog({
|
|
isOpen,
|
|
onClose,
|
|
initialValue,
|
|
onSave,
|
|
}: TipDialogProps) {
|
|
const { t } = useTranslation();
|
|
const [value, setValue] = useState(initialValue);
|
|
|
|
useEffect(() => {
|
|
setValue(initialValue);
|
|
}, [initialValue]);
|
|
|
|
const handleSave = () => {
|
|
onSave(value);
|
|
onClose();
|
|
};
|
|
|
|
const handleCancel = () => {
|
|
setValue(initialValue);
|
|
onClose();
|
|
};
|
|
|
|
return (
|
|
<Modal
|
|
title={t("cart.tip")}
|
|
open={isOpen}
|
|
onCancel={handleCancel}
|
|
footer={[
|
|
<Button key="cancel" onClick={handleCancel}>
|
|
{t("cart.cancel")}
|
|
</Button>,
|
|
<Button key="save" type="primary" onClick={handleSave}>
|
|
{t("cart.addTip")}
|
|
</Button>,
|
|
]}
|
|
width={500}
|
|
destroyOnHidden
|
|
>
|
|
<div
|
|
style={{
|
|
display: "flex",
|
|
flexDirection: "column",
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
}}
|
|
>
|
|
<WaiterRewardingIcon />
|
|
|
|
<br />
|
|
|
|
<Input
|
|
value={value}
|
|
onChange={(e) => setValue(e.target.value)}
|
|
placeholder={t("cart.amount")}
|
|
autoFocus={false}
|
|
size="large"
|
|
/>
|
|
</div>
|
|
</Modal>
|
|
);
|
|
}
|