2022-05-16 16:27:36 +00:00
|
|
|
import * as DialogPrimitive from "@radix-ui/react-dialog";
|
2022-05-17 20:43:27 +00:00
|
|
|
import React, { PropsWithChildren } from "react";
|
2022-05-16 16:27:36 +00:00
|
|
|
|
2022-05-17 20:43:27 +00:00
|
|
|
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
2022-05-16 16:27:36 +00:00
|
|
|
import { Button } from "@calcom/ui/Button";
|
|
|
|
import { DialogClose, DialogContent } from "@calcom/ui/Dialog";
|
2022-07-27 02:24:00 +00:00
|
|
|
import { Icon } from "@calcom/ui/Icon";
|
2022-05-16 16:27:36 +00:00
|
|
|
|
|
|
|
export type DeleteStripeDialogContentProps = {
|
|
|
|
cancelAllBookingsBtnText?: string;
|
|
|
|
removeBtnText?: string;
|
|
|
|
cancelBtnText?: string;
|
|
|
|
onConfirm?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
|
|
onRemove?: (event: React.MouseEvent<HTMLElement, MouseEvent>) => void;
|
|
|
|
title: string;
|
|
|
|
variety?: "danger" | "warning" | "success";
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function DeleteStripeDialogContent(props: PropsWithChildren<DeleteStripeDialogContentProps>) {
|
|
|
|
const { t } = useLocale();
|
|
|
|
const {
|
|
|
|
title,
|
|
|
|
variety,
|
|
|
|
cancelAllBookingsBtnText,
|
|
|
|
removeBtnText,
|
|
|
|
cancelBtnText = t("cancel"),
|
|
|
|
onConfirm,
|
|
|
|
onRemove,
|
|
|
|
children,
|
|
|
|
} = props;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<DialogContent>
|
|
|
|
<div className="flex">
|
|
|
|
{variety && (
|
|
|
|
<div className="mt-0.5 ltr:mr-3">
|
|
|
|
{variety === "danger" && (
|
|
|
|
<div className="mx-auto rounded-full bg-red-100 p-2 text-center">
|
2022-08-03 16:01:29 +00:00
|
|
|
<Icon.FiAlertTriangle className="h-5 w-5 text-red-600" />
|
2022-05-16 16:27:36 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{variety === "warning" && (
|
|
|
|
<div className="mx-auto rounded-full bg-orange-100 p-2 text-center">
|
2022-08-03 16:01:29 +00:00
|
|
|
<Icon.FiAlertTriangle className="h-5 w-5 text-orange-600" />
|
2022-05-16 16:27:36 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{variety === "success" && (
|
|
|
|
<div className="mx-auto rounded-full bg-green-100 p-2 text-center">
|
2022-08-03 16:01:29 +00:00
|
|
|
<Icon.FiCheck className="h-5 w-5 text-green-600" />
|
2022-05-16 16:27:36 +00:00
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
<div>
|
|
|
|
<DialogPrimitive.Title className="font-cal text-xl text-gray-900">{title}</DialogPrimitive.Title>
|
|
|
|
<DialogPrimitive.Description className="text-sm text-neutral-500">
|
|
|
|
{children}
|
|
|
|
</DialogPrimitive.Description>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="mt-5 flex flex-row-reverse gap-x-2 sm:mt-8">
|
|
|
|
<DialogClose onClick={onConfirm} asChild>
|
|
|
|
<Button color="alert">{cancelAllBookingsBtnText}</Button>
|
|
|
|
</DialogClose>
|
|
|
|
<DialogClose onClick={onRemove} asChild>
|
|
|
|
<Button color="alert2">{removeBtnText}</Button>
|
|
|
|
</DialogClose>
|
|
|
|
<DialogClose asChild>
|
|
|
|
<Button color="secondary">{cancelBtnText}</Button>
|
|
|
|
</DialogClose>
|
|
|
|
</div>
|
|
|
|
</DialogContent>
|
|
|
|
);
|
|
|
|
}
|