53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { observer } from "mobx-react";
|
||
import * as React from "react";
|
||
import { useTranslation, Trans } from "react-i18next";
|
||
import { toast } from "sonner";
|
||
import Comment from "~/models/Comment";
|
||
import ConfirmationDialog from "~/components/ConfirmationDialog";
|
||
import Text from "~/components/Text";
|
||
import useStores from "~/hooks/useStores";
|
||
|
||
type Props = {
|
||
comment: Comment;
|
||
onSubmit?: () => void;
|
||
};
|
||
|
||
function CommentDeleteDialog({ comment, onSubmit }: Props) {
|
||
const { comments } = useStores();
|
||
const { t } = useTranslation();
|
||
const hasChildComments = comments.inThread(comment.id).length > 1;
|
||
|
||
const handleSubmit = async () => {
|
||
try {
|
||
await comment.delete();
|
||
onSubmit?.();
|
||
} catch (err) {
|
||
toast.error(err.message);
|
||
}
|
||
};
|
||
|
||
return (
|
||
<ConfirmationDialog
|
||
onSubmit={handleSubmit}
|
||
submitText={t("I’m sure – Delete")}
|
||
savingText={`${t("Deleting")}…`}
|
||
danger
|
||
>
|
||
<Text as="p" type="secondary">
|
||
{hasChildComments ? (
|
||
<Trans>
|
||
Are you sure you want to permanently delete this entire comment
|
||
thread?
|
||
</Trans>
|
||
) : (
|
||
<Trans>
|
||
Are you sure you want to permanently delete this comment?
|
||
</Trans>
|
||
)}
|
||
</Text>
|
||
</ConfirmationDialog>
|
||
);
|
||
}
|
||
|
||
export default observer(CommentDeleteDialog);
|