131 lines
3.6 KiB
JavaScript
131 lines
3.6 KiB
JavaScript
import React, { useState } from "react";
|
|
|
|
import { useMutation } from "@apollo/client";
|
|
import { Button, Form, Popover, Select, Space, notification } from "antd";
|
|
import { useTranslation } from "react-i18next";
|
|
import { connect } from "react-redux";
|
|
import { createStructuredSelector } from "reselect";
|
|
import { UPDATE_LINE_BULK_ASSIGN } from "../../graphql/jobs-lines.queries";
|
|
import { selectJobReadOnly } from "../../redux/application/application.selectors";
|
|
import {
|
|
selectBodyshop,
|
|
selectCurrentUser,
|
|
} from "../../redux/user/user.selectors";
|
|
const mapStateToProps = createStructuredSelector({
|
|
bodyshop: selectBodyshop,
|
|
jobRO: selectJobReadOnly,
|
|
currentUser: selectCurrentUser,
|
|
});
|
|
const mapDispatchToProps = (dispatch) => ({
|
|
//setUserLanguage: language => dispatch(setUserLanguage(language))
|
|
});
|
|
export default connect(mapStateToProps, mapDispatchToProps)(JoblineBulkAssign);
|
|
|
|
export function JoblineBulkAssign({
|
|
setSelectedLines,
|
|
selectedLines,
|
|
|
|
bodyshop,
|
|
jobRO,
|
|
job,
|
|
currentUser,
|
|
}) {
|
|
console.log(
|
|
"🚀 ~ file: job-line-bulk-assign.component.jsx:36 ~ selectedLines:",
|
|
selectedLines
|
|
);
|
|
const [visible, setVisible] = useState(false);
|
|
const [loading, setLoading] = useState(false);
|
|
const [form] = Form.useForm();
|
|
|
|
const { t } = useTranslation();
|
|
const [assignLines] = useMutation(UPDATE_LINE_BULK_ASSIGN);
|
|
|
|
const handleConvert = async (values) => {
|
|
try {
|
|
setLoading(true);
|
|
const result = await assignLines({
|
|
variables: {
|
|
jobline: {
|
|
assigned_team: values.assigned_team,
|
|
},
|
|
ids: selectedLines.map((l) => l.id),
|
|
},
|
|
});
|
|
if (result.errors) {
|
|
notification.open({
|
|
type: "error",
|
|
message: t("parts_dispatch.errors.creating", {
|
|
error: JSON.stringify(result.errors),
|
|
}),
|
|
});
|
|
}
|
|
setVisible(false);
|
|
} catch (error) {
|
|
notification.open({
|
|
type: "error",
|
|
message: t("parts_dispatch.errors.creating", {
|
|
error: error,
|
|
}),
|
|
});
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
const popMenu = (
|
|
<div>
|
|
<Form layout="vertical" form={form} onFinish={handleConvert}>
|
|
<Form.Item
|
|
name={"assigned_team"}
|
|
label={t("joblines.fields.assigned_team")}
|
|
rules={[
|
|
{
|
|
required: true,
|
|
//message: t("general.validation.required"),
|
|
},
|
|
]}
|
|
>
|
|
<Select
|
|
showSearch
|
|
style={{ width: 200 }}
|
|
optionFilterProp="children"
|
|
filterOption={(input, option) =>
|
|
option.props.children
|
|
.toLowerCase()
|
|
.indexOf(input.toLowerCase()) >= 0
|
|
}
|
|
>
|
|
{bodyshop.employee_teams.map((team) => (
|
|
<Select.Option value={team.id} key={team.id} name={team.name}>
|
|
{team.name}
|
|
</Select.Option>
|
|
))}
|
|
</Select>
|
|
</Form.Item>
|
|
|
|
<Space wrap>
|
|
<Button type="danger" onClick={() => form.submit()} loading={loading}>
|
|
{t("general.actions.save")}
|
|
</Button>
|
|
<Button onClick={() => setVisible(false)}>
|
|
{t("general.actions.cancel")}
|
|
</Button>
|
|
</Space>
|
|
</Form>
|
|
</div>
|
|
);
|
|
|
|
return (
|
|
<Popover open={visible} content={popMenu}>
|
|
<Button
|
|
disabled={selectedLines.length === 0 || jobRO}
|
|
loading={loading}
|
|
onClick={() => setVisible(true)}
|
|
>
|
|
{t("joblines.actions.assign_team", { count: selectedLines.length })}
|
|
</Button>
|
|
</Popover>
|
|
);
|
|
}
|