86 lines
2.6 KiB
JavaScript
86 lines
2.6 KiB
JavaScript
import { QuestionCircleOutlined } from "@ant-design/icons";
|
|
import { useMutation } from "@apollo/client";
|
|
import { Button, notification, Popconfirm } from "antd";
|
|
import axios from "axios";
|
|
import React, { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { logImEXEvent } from "../../firebase/firebase.utils";
|
|
import { DELETE_DOCUMENTS } from "../../graphql/documents.queries";
|
|
//Context: currentUserEmail, bodyshop, jobid, invoiceid
|
|
|
|
export default function JobsDocumentsDeleteButton({
|
|
galleryImages,
|
|
deletionCallback,
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [deleteDocument] = useMutation(DELETE_DOCUMENTS);
|
|
const imagesToDelete = [
|
|
...galleryImages.images.filter((image) => image.isSelected),
|
|
...galleryImages.other.filter((image) => image.isSelected),
|
|
];
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleDelete = async () => {
|
|
logImEXEvent("job_documents_delete", { count: imagesToDelete.length });
|
|
setLoading(true);
|
|
const res = await axios.post("/media/delete", {
|
|
ids: imagesToDelete,
|
|
});
|
|
|
|
const successfulDeletes = [];
|
|
res.data.forEach((resType) => {
|
|
Object.keys(resType.deleted).forEach((key) => {
|
|
if (resType.deleted[key] !== "deleted") {
|
|
notification["error"]({
|
|
message: t("documents.errors.deleting_cloudinary", {
|
|
message: JSON.stringify(resType.deleted[key]),
|
|
}),
|
|
});
|
|
} else {
|
|
successfulDeletes.push(key.replace(/\.[^/.]+$/, ""));
|
|
}
|
|
});
|
|
});
|
|
const delres = await deleteDocument({
|
|
variables: {
|
|
ids: imagesToDelete
|
|
.filter((i) => successfulDeletes.includes(i.key))
|
|
.map((i) => i.id),
|
|
},
|
|
});
|
|
if (delres.errors) {
|
|
notification["error"]({
|
|
message: t("documents.errors.deleting", {
|
|
message: JSON.stringify(delres.errors),
|
|
}),
|
|
});
|
|
} else {
|
|
notification.open({
|
|
key: "docdeletedsuccesfully",
|
|
type: "success",
|
|
message: t("documents.successes.delete"),
|
|
});
|
|
|
|
if (deletionCallback) deletionCallback();
|
|
}
|
|
|
|
setLoading(false);
|
|
};
|
|
|
|
return (
|
|
<Popconfirm
|
|
disabled={imagesToDelete.length < 1}
|
|
icon={<QuestionCircleOutlined style={{ color: "red" }} />}
|
|
onConfirm={handleDelete}
|
|
title={t("documents.labels.confirmdelete")}
|
|
okText={t("general.actions.delete")}
|
|
okButtonProps={{ type: "danger" }}
|
|
cancelText={t("general.actions.cancel")}
|
|
>
|
|
<Button disabled={imagesToDelete.length < 1} loading={loading}>
|
|
{t("documents.actions.delete")}
|
|
</Button>
|
|
</Popconfirm>
|
|
);
|
|
}
|