* feat: paginate and merge frequent activities * feat: due date activities * fix: requested changes fixes * refactor: slight reshuffle and improve types * chore: translations --------- Co-authored-by: Henry <henry_ball@hotmail.co.uk>
73 lines
2.3 KiB
TypeScript
73 lines
2.3 KiB
TypeScript
import { t } from "@lingui/core/macro";
|
|
|
|
import Button from "~/components/Button";
|
|
import { useModal } from "~/providers/modal";
|
|
import { usePopup } from "~/providers/popup";
|
|
import { api } from "~/utils/api";
|
|
import { invalidateCard } from "~/utils/cardInvalidation";
|
|
|
|
export function DeleteChecklistConfirmation({
|
|
cardPublicId,
|
|
checklistPublicId,
|
|
}: {
|
|
cardPublicId: string;
|
|
checklistPublicId: string;
|
|
}) {
|
|
const { closeModal } = useModal();
|
|
const { showPopup } = usePopup();
|
|
const utils = api.useUtils();
|
|
|
|
const deleteChecklist = api.checklist.delete.useMutation({
|
|
onMutate: async () => {
|
|
await utils.card.byId.cancel({ cardPublicId });
|
|
const previous = utils.card.byId.getData({ cardPublicId });
|
|
utils.card.byId.setData({ cardPublicId }, (old) => {
|
|
if (!old) return old as any;
|
|
const updatedChecklists = old.checklists.filter(
|
|
(cl) => cl.publicId !== checklistPublicId,
|
|
);
|
|
return { ...old, checklists: updatedChecklists } as typeof old;
|
|
});
|
|
return { previous };
|
|
},
|
|
onError: (_err, _vars, ctx) => {
|
|
if (ctx?.previous)
|
|
utils.card.byId.setData({ cardPublicId }, ctx.previous);
|
|
showPopup({
|
|
header: t`Unable to delete checklist`,
|
|
message: t`Please try again later, or contact customer support.`,
|
|
icon: "error",
|
|
});
|
|
},
|
|
onSettled: async () => {
|
|
closeModal();
|
|
await invalidateCard(utils, cardPublicId);
|
|
},
|
|
});
|
|
|
|
const handleDelete = () => {
|
|
deleteChecklist.mutate({ checklistPublicId });
|
|
};
|
|
|
|
return (
|
|
<div className="p-5">
|
|
<div className="flex w-full flex-col justify-between pb-4">
|
|
<h2 className="text-md pb-4 font-medium text-neutral-900 dark:text-dark-1000">
|
|
{t`Are you sure you want to delete this checklist?`}
|
|
</h2>
|
|
<p className="text-sm font-medium text-light-900 dark:text-dark-900">
|
|
{t`This action can't be undone.`}
|
|
</p>
|
|
</div>
|
|
<div className="mt-5 flex justify-end space-x-2 sm:mt-6">
|
|
<Button variant="secondary" onClick={() => closeModal()}>
|
|
{t`Cancel`}
|
|
</Button>
|
|
<Button onClick={handleDelete} isLoading={deleteChecklist.isPending}>
|
|
{t`Delete`}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|