import { observer } from "mobx-react"; import * as React from "react"; import { useTranslation, Trans } from "react-i18next"; import { useHistory } from "react-router-dom"; import Document from "~/models/Document"; import Button from "~/components/Button"; import Flex from "~/components/Flex"; import Text from "~/components/Text"; import useStores from "~/hooks/useStores"; import useToasts from "~/hooks/useToasts"; type Props = { document: Document; onSubmit: () => void; }; function DocumentPermanentDelete({ document, onSubmit }: Props) { const [isDeleting, setIsDeleting] = React.useState(false); const { t } = useTranslation(); const { documents } = useStores(); const { showToast } = useToasts(); const history = useHistory(); const handleSubmit = React.useCallback( async (ev: React.SyntheticEvent) => { ev.preventDefault(); try { setIsDeleting(true); await documents.delete(document, { permanent: true, }); showToast(t("Document permanently deleted"), { type: "success", }); onSubmit(); history.push("/trash"); } catch (err) { showToast(err.message, { type: "error", }); } finally { setIsDeleting(false); } }, [document, onSubmit, showToast, t, history, documents] ); return (
, }} />
); } export default observer(DocumentPermanentDelete);