Co-authored-by: Sean Brydon <sean@Seans-Mac-mini.local> Co-authored-by: Eunjae Lee <hey@eunjae.dev> Co-authored-by: Peer Richelsen <peeroke@gmail.com> Co-authored-by: Hariom Balhara <hariombalhara@gmail.com>
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import { useRouter } from "next/navigation";
|
|
import type { Dispatch, SetStateAction } from "react";
|
|
import { useState } from "react";
|
|
|
|
import { Dialog } from "@calcom/features/components/controlled-dialog";
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { Button } from "@calcom/ui/components/button";
|
|
import { DialogContent, DialogFooter } from "@calcom/ui/components/dialog";
|
|
|
|
interface InfoLostWarningDialog {
|
|
isOpenInfoLostDialog: boolean;
|
|
setIsOpenInfoLostDialog: Dispatch<SetStateAction<boolean>>;
|
|
goToRoute: string;
|
|
handleSubmit: () => void;
|
|
}
|
|
|
|
const InfoLostWarningDialog = (props: InfoLostWarningDialog) => {
|
|
const { t } = useLocale();
|
|
const { isOpenInfoLostDialog, setIsOpenInfoLostDialog, goToRoute, handleSubmit } = props;
|
|
const router = useRouter();
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
return (
|
|
<Dialog open={isOpenInfoLostDialog} onOpenChange={setIsOpenInfoLostDialog}>
|
|
<DialogContent
|
|
title={t("leave_without_saving")}
|
|
description={`${t("leave_without_saving_description")}`}
|
|
Icon="circle-alert">
|
|
<DialogFooter className="mt-6">
|
|
<Button
|
|
onClick={() => {
|
|
setIsOpenInfoLostDialog(false);
|
|
}}
|
|
color="minimal"
|
|
disabled={isSubmitting}>
|
|
{t("go_back")}
|
|
</Button>
|
|
<Button
|
|
onClick={() => {
|
|
setIsSubmitting(true);
|
|
handleSubmit();
|
|
setIsOpenInfoLostDialog(false);
|
|
router.replace(goToRoute);
|
|
}}
|
|
loading={isSubmitting}>
|
|
{t("save_changes")}
|
|
</Button>
|
|
</DialogFooter>
|
|
</DialogContent>
|
|
</Dialog>
|
|
);
|
|
};
|
|
|
|
export { InfoLostWarningDialog };
|