1368ffe55d
* refactor: move data-table hooks/contexts/provider from features to web modules Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix: update broken useColumnResizing import path in DataTable.tsx Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * fix: update remaining broken import paths for moved hooks Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> * docs: update GUIDE.md import paths and file references for moved modules Co-Authored-By: eunjae@cal.com <hey@eunjae.dev> --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
59 lines
1.6 KiB
TypeScript
59 lines
1.6 KiB
TypeScript
import { useLocale } from "@calcom/lib/hooks/useLocale";
|
|
import { trpc } from "@calcom/trpc/react";
|
|
import { Dialog, ConfirmationDialogContent } from "@calcom/ui/components/dialog";
|
|
import { showToast } from "@calcom/ui/components/toast";
|
|
|
|
import { useDataTable } from "~/data-table/hooks";
|
|
import type { FilterSegmentOutput } from "@calcom/features/data-table/lib/types";
|
|
|
|
export function DeleteSegmentDialog({
|
|
segment,
|
|
onClose,
|
|
}: {
|
|
segment: FilterSegmentOutput;
|
|
onClose: () => void;
|
|
}) {
|
|
const { t } = useLocale();
|
|
const utils = trpc.useUtils();
|
|
const { segmentId, setSegmentId } = useDataTable();
|
|
|
|
const { mutate: deleteSegment, isPending } = trpc.viewer.filterSegments.delete.useMutation({
|
|
onSuccess: ({ id }) => {
|
|
utils.viewer.filterSegments.list.invalidate();
|
|
showToast(t("filter_segment_deleted"), "success");
|
|
if (segmentId && segmentId.type === "user" && segmentId.id === id) {
|
|
setSegmentId(null);
|
|
}
|
|
onClose();
|
|
},
|
|
onError: () => {
|
|
showToast(t("error_deleting_filter_segment"), "error");
|
|
},
|
|
});
|
|
|
|
const handleDelete = () => {
|
|
if (!segment) return;
|
|
deleteSegment({ id: segment.id });
|
|
};
|
|
|
|
return (
|
|
<Dialog
|
|
open
|
|
onOpenChange={(open) => {
|
|
if (!open) {
|
|
onClose();
|
|
}
|
|
}}>
|
|
<ConfirmationDialogContent
|
|
variety="danger"
|
|
title={t("delete_segment")}
|
|
confirmBtnText={t("delete")}
|
|
cancelBtnText={t("cancel")}
|
|
isPending={isPending}
|
|
onConfirm={handleDelete}>
|
|
<p className="mt-5">{t("delete_segment_confirmation")}</p>
|
|
</ConfirmationDialogContent>
|
|
</Dialog>
|
|
);
|
|
}
|