73 lines
2.1 KiB
JavaScript
73 lines
2.1 KiB
JavaScript
import { useMutation } from "@apollo/client";
|
|
import { Button, notification } from "antd";
|
|
import React, { useState } from "react";
|
|
import { useTranslation } from "react-i18next";
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import { UNVOID_JOB } from "../../graphql/jobs.queries";
|
|
import { insertAuditTrail } from "../../redux/application/application.actions";
|
|
import {
|
|
selectBodyshop,
|
|
selectCurrentUser,
|
|
} from "../../redux/user/user.selectors";
|
|
import AuditTrailMapping from "../../utils/AuditTrailMappings";
|
|
|
|
const mapStateToProps = createStructuredSelector({
|
|
bodyshop: selectBodyshop,
|
|
currentUser: selectCurrentUser,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
insertAuditTrail: ({ jobid, operation, type }) =>
|
|
dispatch(insertAuditTrail({ jobid, operation, type })),
|
|
});
|
|
export default connect(mapStateToProps, mapDispatchToProps)(JobsAdminUnvoid);
|
|
|
|
export function JobsAdminUnvoid({
|
|
insertAuditTrail,
|
|
bodyshop,
|
|
job,
|
|
currentUser,
|
|
}) {
|
|
const { t } = useTranslation();
|
|
const [loading, setLoading] = useState(false);
|
|
const [mutationUnvoidJob] = useMutation(UNVOID_JOB);
|
|
|
|
const handleUpdate = async (values) => {
|
|
setLoading(true);
|
|
const result = await mutationUnvoidJob({
|
|
variables: {
|
|
jobId: job.id,
|
|
default_imported: bodyshop.md_ro_statuses.default_imported,
|
|
currentUserEmail: currentUser.email,
|
|
text: t("jobs.labels.unvoidnote"),
|
|
},
|
|
});
|
|
|
|
if (!result.errors) {
|
|
notification["success"]({ message: t("jobs.successes.save") });
|
|
|
|
insertAuditTrail({
|
|
jobid: job.id,
|
|
operation: AuditTrailMapping.admin_jobunvoid(),
|
|
type: "admin_jobunvoid",
|
|
});
|
|
} else {
|
|
notification["error"]({
|
|
message: t("jobs.errors.saving", {
|
|
error: JSON.stringify(result.errors),
|
|
}),
|
|
});
|
|
}
|
|
setLoading(false);
|
|
//Get the owner details, populate it all back into the job.
|
|
};
|
|
|
|
return (
|
|
<>
|
|
<Button loading={loading} disabled={!job.voided} onClick={handleUpdate}>
|
|
{t("jobs.actions.unvoid")}
|
|
</Button>
|
|
</>
|
|
);
|
|
}
|