Package cleanup & transition to latest apollo.

This commit is contained in:
Patrick Fic
2021-02-24 08:48:55 -08:00
parent 359edea97c
commit 46014261d6
202 changed files with 31740 additions and 1174 deletions

View File

@@ -1,4 +1,4 @@
import gql from "graphql-tag"; import { gql } from "@apollo/client";
export const QUERY_ALL_SHOPS = gql` export const QUERY_ALL_SHOPS = gql`
query QUERY_ALL_SHOPS { query QUERY_ALL_SHOPS {

26513
client/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,11 +12,8 @@
"@tanem/react-nprogress": "^3.0.56", "@tanem/react-nprogress": "^3.0.56",
"@tinymce/tinymce-react": "^3.10.2", "@tinymce/tinymce-react": "^3.10.2",
"antd": "^4.12.3", "antd": "^4.12.3",
"apollo-boost": "^0.4.9",
"apollo-link-logger": "^2.0.0", "apollo-link-logger": "^2.0.0",
"axios": "^0.21.1", "axios": "^0.21.1",
"codemirror": "^5.59.3",
"codemirror-graphql": "^0.15.2",
"dinero.js": "^1.8.1", "dinero.js": "^1.8.1",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",
"firebase": "^8.2.9", "firebase": "^8.2.9",
@@ -24,7 +21,6 @@
"i18next": "^19.8.9", "i18next": "^19.8.9",
"i18next-browser-languagedetector": "^6.0.1", "i18next-browser-languagedetector": "^6.0.1",
"jsoneditor": "^9.1.10", "jsoneditor": "^9.1.10",
"jsoneditor-react": "^3.1.0",
"jsreport-browser-client-dist": "^1.3.0", "jsreport-browser-client-dist": "^1.3.0",
"libphonenumber-js": "^1.9.11", "libphonenumber-js": "^1.9.11",
"logrocket": "^1.0.13", "logrocket": "^1.0.13",
@@ -34,17 +30,13 @@
"prop-types": "^15.7.2", "prop-types": "^15.7.2",
"query-string": "^6.14.0", "query-string": "^6.14.0",
"react": "^17.0.1", "react": "^17.0.1",
"react-apollo": "^3.1.5",
"react-big-calendar": "^0.30.0", "react-big-calendar": "^0.30.0",
"react-codemirror2": "^7.2.1",
"react-color": "^2.19.3", "react-color": "^2.19.3",
"react-dom": "^17.0.1", "react-dom": "^17.0.1",
"react-drag-listview": "^0.1.8", "react-drag-listview": "^0.1.8",
"react-email-editor": "^1.2.0",
"react-grid-gallery": "^0.5.5", "react-grid-gallery": "^0.5.5",
"react-i18next": "^11.8.7", "react-i18next": "^11.8.7",
"react-icons": "^4.2.0", "react-icons": "^4.2.0",
"react-moment": "^1.1.1",
"react-number-format": "^4.4.4", "react-number-format": "^4.4.4",
"react-phone-input-2": "^2.13.9", "react-phone-input-2": "^2.13.9",
"react-redux": "^7.2.2", "react-redux": "^7.2.2",
@@ -86,9 +78,6 @@
] ]
}, },
"devDependencies": { "devDependencies": {
"@apollo/react-testing": "^4.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"redux-logger": "^3.0.6", "redux-logger": "^3.0.6",
"source-map-explorer": "^2.5.2" "source-map-explorer": "^2.5.2"
} }

View File

@@ -1,4 +1,4 @@
import { ApolloProvider } from "@apollo/react-common"; import { ApolloProvider } from "@apollo/client";
import { ConfigProvider } from "antd"; import { ConfigProvider } from "antd";
import enLocale from "antd/es/locale/en_US"; import enLocale from "antd/es/locale/en_US";
import LogRocket from "logrocket"; import LogRocket from "logrocket";

View File

@@ -1,6 +1,6 @@
import React, { useState } from "react"; import React, { useState } from "react";
import AllocationsAssignmentComponent from "./allocations-assignment.component"; import AllocationsAssignmentComponent from "./allocations-assignment.component";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { INSERT_ALLOCATION } from "../../graphql/allocations.queries"; import { INSERT_ALLOCATION } from "../../graphql/allocations.queries";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { notification } from "antd"; import { notification } from "antd";
@@ -8,29 +8,29 @@ import { notification } from "antd";
export default function AllocationsAssignmentContainer({ export default function AllocationsAssignmentContainer({
jobLineId, jobLineId,
hours, hours,
refetch refetch,
}) { }) {
const visibilityState = useState(false); const visibilityState = useState(false);
const { t } = useTranslation(); const { t } = useTranslation();
const [assignment, setAssignment] = useState({ const [assignment, setAssignment] = useState({
joblineid: jobLineId, joblineid: jobLineId,
hours: parseFloat(hours), hours: parseFloat(hours),
employeeid: null employeeid: null,
}); });
const [insertAllocation] = useMutation(INSERT_ALLOCATION); const [insertAllocation] = useMutation(INSERT_ALLOCATION);
const handleAssignment = () => { const handleAssignment = () => {
insertAllocation({ variables: { alloc: { ...assignment } } }) insertAllocation({ variables: { alloc: { ...assignment } } })
.then(r => { .then((r) => {
notification["success"]({ notification["success"]({
message: t("allocations.successes.save") message: t("allocations.successes.save"),
}); });
visibilityState[1](false); visibilityState[1](false);
if (refetch) refetch(); if (refetch) refetch();
}) })
.catch(error => { .catch((error) => {
notification["error"]({ notification["error"]({
message: t("employees.errors.saving", { message: error.message }) message: t("employees.errors.saving", { message: error.message }),
}); });
}); });
}; };

View File

@@ -1,18 +1,18 @@
import React, { useState } from "react"; import React, { useState } from "react";
import AllocationsBulkAssignment from "./allocations-bulk-assignment.component"; import AllocationsBulkAssignment from "./allocations-bulk-assignment.component";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { INSERT_ALLOCATION } from "../../graphql/allocations.queries"; import { INSERT_ALLOCATION } from "../../graphql/allocations.queries";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { notification } from "antd"; import { notification } from "antd";
export default function AllocationsBulkAssignmentContainer({ export default function AllocationsBulkAssignmentContainer({
jobLines, jobLines,
refetch refetch,
}) { }) {
const visibilityState = useState(false); const visibilityState = useState(false);
const { t } = useTranslation(); const { t } = useTranslation();
const [assignment, setAssignment] = useState({ const [assignment, setAssignment] = useState({
employeeid: null employeeid: null,
}); });
const [insertAllocation] = useMutation(INSERT_ALLOCATION); const [insertAllocation] = useMutation(INSERT_ALLOCATION);
@@ -21,14 +21,14 @@ export default function AllocationsBulkAssignmentContainer({
acc.push({ acc.push({
joblineid: value.id, joblineid: value.id,
hours: parseFloat(value.mod_lb_hrs) || 0, hours: parseFloat(value.mod_lb_hrs) || 0,
employeeid: assignment.employeeid employeeid: assignment.employeeid,
}); });
return acc; return acc;
}, []); }, []);
insertAllocation({ variables: { alloc: allocs } }).then(r => { insertAllocation({ variables: { alloc: allocs } }).then((r) => {
notification["success"]({ notification["success"]({
message: t("employees.successes.save") message: t("employees.successes.save"),
}); });
visibilityState[1](false); visibilityState[1](false);
if (refetch) refetch(); if (refetch) refetch();
@@ -37,7 +37,7 @@ export default function AllocationsBulkAssignmentContainer({
return ( return (
<AllocationsBulkAssignment <AllocationsBulkAssignment
disabled={jobLines.length > 0 ? false : true} disabled={jobLines.length > 0 ? false : true}
handleAssignment={handleAssignment} handleAssignment={handleAssignment}
assignment={assignment} assignment={assignment}
setAssignment={setAssignment} setAssignment={setAssignment}

View File

@@ -1,5 +1,5 @@
import React from "react"; import React from "react";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { DELETE_ALLOCATION } from "../../graphql/allocations.queries"; import { DELETE_ALLOCATION } from "../../graphql/allocations.queries";
import AllocationsLabelComponent from "./allocations-employee-label.component"; import AllocationsLabelComponent from "./allocations-employee-label.component";
import { notification } from "antd"; import { notification } from "antd";

View File

@@ -1,6 +1,6 @@
import React from "react"; import React from "react";
import AuditTrailListComponent from "./audit-trail-list.component"; import AuditTrailListComponent from "./audit-trail-list.component";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { QUERY_AUDIT_TRAIL } from "../../graphql/audit_trail.queries"; import { QUERY_AUDIT_TRAIL } from "../../graphql/audit_trail.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";
import { logImEXEvent } from "../../firebase/firebase.utils"; import { logImEXEvent } from "../../firebase/firebase.utils";
@@ -15,7 +15,7 @@ export default function AuditTrailListContainer({ recordId }) {
return ( return (
<div> <div>
{error ? ( {error ? (
<AlertComponent type='error' message={error.message} /> <AlertComponent type="error" message={error.message} />
) : ( ) : (
<AuditTrailListComponent <AuditTrailListComponent
loading={loading} loading={loading}

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation, useQuery } from "@apollo/react-hooks"; import { useMutation, useQuery } from "@apollo/client";
import { Button, Form } from "antd"; import { Button, Form } from "antd";
import moment from "moment"; import moment from "moment";
import queryString from "query-string"; import queryString from "query-string";

View File

@@ -1,4 +1,4 @@
import { useApolloClient, useMutation } from "@apollo/react-hooks"; import { useApolloClient, useMutation } from "@apollo/client";
import { Button, Form, Modal, notification } from "antd"; import { Button, Form, Modal, notification } from "antd";
import _ from "lodash"; import _ from "lodash";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";

View File

@@ -10,7 +10,7 @@ import {
Upload, Upload,
} from "antd"; } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useApolloClient } from "react-apollo"; import { useApolloClient } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useLazyQuery, useQuery } from "@apollo/react-hooks"; import { useLazyQuery, useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,6 +1,6 @@
import React, { useState } from "react"; import React, { useState } from "react";
import { QUERY_ALL_VENDORS } from "../../graphql/vendors.queries"; import { QUERY_ALL_VENDORS } from "../../graphql/vendors.queries";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import queryString from "query-string"; import queryString from "query-string";
import { useHistory, useLocation } from "react-router-dom"; import { useHistory, useLocation } from "react-router-dom";
import { Table, Input } from "antd"; import { Table, Input } from "antd";

View File

@@ -1,4 +1,4 @@
import { useSubscription } from "@apollo/react-hooks"; import { useSubscription } from "@apollo/client";
import React from "react"; import React from "react";
import { CONVERSATION_LIST_SUBSCRIPTION } from "../../graphql/conversations.queries"; import { CONVERSATION_LIST_SUBSCRIPTION } from "../../graphql/conversations.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Tag } from "antd"; import { Tag } from "antd";
import React from "react"; import React from "react";
import { Link } from "react-router-dom"; import { Link } from "react-router-dom";

View File

@@ -1,4 +1,4 @@
import { useMutation, useSubscription } from "@apollo/react-hooks"; import { useMutation, useSubscription } from "@apollo/client";
import React, { useState } from "react"; import React, { useState } from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,5 +1,5 @@
import { PictureFilled } from "@ant-design/icons"; import { PictureFilled } from "@ant-design/icons";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Badge, Popover } from "antd"; import { Badge, Popover } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,5 +1,5 @@
import { PlusOutlined } from "@ant-design/icons"; import { PlusOutlined } from "@ant-design/icons";
import { useLazyQuery, useMutation } from "@apollo/react-hooks"; import { useLazyQuery, useMutation } from "@apollo/client";
import { Tag } from "antd"; import { Tag } from "antd";
import _ from "lodash"; import _ from "lodash";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { QUERY_AVAILABLE_CC } from "../../graphql/courtesy-car.queries"; import { QUERY_AVAILABLE_CC } from "../../graphql/courtesy-car.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -9,7 +9,7 @@ import {
Space, Space,
} from "antd"; } from "antd";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { INSERT_NEW_JOB } from "../../graphql/jobs.queries"; import { INSERT_NEW_JOB } from "../../graphql/jobs.queries";
import moment from "moment"; import moment from "moment";
import { connect } from "react-redux"; import { connect } from "react-redux";

View File

@@ -1,4 +1,4 @@
import { useLazyQuery } from "@apollo/react-hooks"; import { useLazyQuery } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import React, { useEffect } from "react"; import React, { useEffect } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -9,7 +9,7 @@ import { selectBodyshop } from "../../redux/user/user.selectors";
import CourtesyCarReturnModalComponent from "./courtesy-car-return-modal.component"; import CourtesyCarReturnModalComponent from "./courtesy-car-return-modal.component";
import moment from "moment"; import moment from "moment";
import { RETURN_CONTRACT } from "../../graphql/cccontracts.queries"; import { RETURN_CONTRACT } from "../../graphql/cccontracts.queries";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
const mapStateToProps = createStructuredSelector({ const mapStateToProps = createStructuredSelector({
courtesyCarReturnModal: selectCourtesyCarReturn, courtesyCarReturnModal: selectCourtesyCarReturn,

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Form } from "antd"; import { Form } from "antd";
import queryString from "query-string"; import queryString from "query-string";
import React, { useEffect } from "react"; import React, { useEffect } from "react";

View File

@@ -1,7 +1,7 @@
// import Icon from "@ant-design/icons"; // import Icon from "@ant-design/icons";
// import { Button, Dropdown, Menu, notification } from "antd"; // import { Button, Dropdown, Menu, notification } from "antd";
// import React, { useState } from "react"; // import React, { useState } from "react";
// import { useMutation, useQuery } from "react-apollo"; // import { useMutation, useQuery } from "@apollo/client";
// import { Responsive, WidthProvider } from "react-grid-layout"; // import { Responsive, WidthProvider } from "react-grid-layout";
// import { useTranslation } from "react-i18next"; // import { useTranslation } from "react-i18next";
// import { MdClose } from "react-icons/md"; // import { MdClose } from "react-icons/md";

View File

@@ -1,5 +1,5 @@
import React, { Component } from "react"; import React, { Component } from "react";
import { withApollo } from "react-apollo"; import { withApollo } from "@apollo/client/react/hoc";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";
import { logImEXEvent, messaging } from "../../firebase/firebase.utils"; import { logImEXEvent, messaging } from "../../firebase/firebase.utils";
@@ -57,9 +57,6 @@ if ("serviceWorker" in navigator) {
}); });
}) })
.catch(function (err) { .catch(function (err) {
console.log( console.log("[FCM] Service worker registration failed, error:", err);
"[FCM] Service worker registration failed, error:",
err
);
}); });
} }

View File

@@ -1,4 +1,4 @@
import { useLazyQuery } from "@apollo/react-hooks"; import { useLazyQuery } from "@apollo/client";
import { AutoComplete, Input } from "antd"; import { AutoComplete, Input } from "antd";
import _ from "lodash"; import _ from "lodash";
import React from "react"; import React from "react";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Button, Form, Input, InputNumber, Modal, Radio, Select } from "antd"; import { Button, Form, Input, InputNumber, Modal, Radio, Select } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,7 +1,7 @@
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import Axios from "axios"; import Axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { UPDATE_JOB } from "../../graphql/jobs.queries"; import { UPDATE_JOB } from "../../graphql/jobs.queries";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Form, notification, Switch } from "antd"; import { Button, Form, notification, Switch } from "antd";
import queryString from "query-string"; import queryString from "query-string";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Modal } from "antd"; import { Modal } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,5 +1,5 @@
import { PrinterFilled } from "@ant-design/icons"; import { PrinterFilled } from "@ant-design/icons";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Button, Col, Drawer, Grid, PageHeader, Row, Space, Tag } from "antd"; import { Button, Col, Drawer, Grid, PageHeader, Row, Space, Tag } from "antd";
import queryString from "query-string"; import queryString from "query-string";
import React from "react"; import React from "react";

View File

@@ -1,5 +1,5 @@
import { DeleteFilled, FilterFilled, SyncOutlined } from "@ant-design/icons"; import { DeleteFilled, FilterFilled, SyncOutlined } from "@ant-design/icons";
import { useMutation, useQuery } from "@apollo/react-hooks"; import { useMutation, useQuery } from "@apollo/client";
import { Button, Dropdown, Input, Menu, Space, Table } from "antd"; import { Button, Dropdown, Input, Menu, Space, Table } from "antd";
import React, { useMemo, useState } from "react"; import React, { useMemo, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { notification } from "antd"; import { notification } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,6 +1,6 @@
import { notification, Select } from "antd"; import { notification, Select } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,7 +1,7 @@
import React, { useState, useEffect } from "react"; import React, { useState, useEffect } from "react";
import { Input, notification } from "antd"; import { Input, notification } from "antd";
import LoadingSpinner from "../loading-spinner/loading-spinner.component"; import LoadingSpinner from "../loading-spinner/loading-spinner.component";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { UPDATE_JOB_LINE } from "../../graphql/jobs-lines.queries"; import { UPDATE_JOB_LINE } from "../../graphql/jobs-lines.queries";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,6 +1,6 @@
import { notification, Select } from "antd"; import { notification, Select } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { notification } from "antd"; import { notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,6 +1,6 @@
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { UPDATE_JOB } from "../../graphql/jobs.queries"; import { UPDATE_JOB } from "../../graphql/jobs.queries";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Card, Form, notification, Popover } from "antd"; import { Button, Card, Form, notification, Popover } from "antd";
import moment from "moment"; import moment from "moment";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,5 +1,5 @@
import { LoadingOutlined } from "@ant-design/icons"; import { LoadingOutlined } from "@ant-design/icons";
import { useLazyQuery } from "@apollo/react-hooks"; import { useLazyQuery } from "@apollo/client";
import { Empty, Select } from "antd"; import { Empty, Select } from "antd";
import _ from "lodash"; import _ from "lodash";
import React, { forwardRef, useEffect, useState } from "react"; import React, { forwardRef, useEffect, useState } from "react";

View File

@@ -1,7 +1,7 @@
import { Col, Collapse, Result, Row, Typography } from "antd"; import { Col, Collapse, Result, Row, Typography } from "antd";
import Dinero from "dinero.js"; import Dinero from "dinero.js";
import { JsonEditor as Editor } from "jsoneditor-react"; //import { JsonEditor as Editor } from "jsoneditor-react";
import "jsoneditor-react/es/editor.min.css"; //import "jsoneditor-react/es/editor.min.css";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
@@ -351,12 +351,18 @@ export function JobsTotalsTableComponent({ bodyshop, jobRO, job }) {
<JobCalculateTotals job={job} disabled={jobRO} /> <JobCalculateTotals job={job} disabled={jobRO} />
<Collapse> <Collapse>
<Collapse.Panel header="JSON Tree Totals"> <Collapse.Panel header="JSON Tree Totals">
<Editor <div>
value={{ <pre>
CIECA: job.cieca_ttl && job.cieca_ttl.data, {JSON.stringify(
ImEXCalc: job.job_totals, {
}} CIECA: job.cieca_ttl && job.cieca_ttl.data,
/> ImEXCalc: job.job_totals,
},
null,
2
)}
</pre>
</div>
</Collapse.Panel> </Collapse.Panel>
</Collapse> </Collapse>
</div> </div>

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Form, notification, Popconfirm, Select } from "antd"; import { Button, Form, notification, Popconfirm, Select } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Form, notification, DatePicker } from "antd"; import { Button, Form, notification, DatePicker } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,6 +1,6 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import gql from "graphql-tag"; import { gql } from "@apollo/client";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
export default function JobAdminDeleteIntake({ job }) { export default function JobAdminDeleteIntake({ job }) {

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Form, notification } from "antd"; import { Button, Form, notification } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Form, notification } from "antd"; import { Button, Form, notification } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,5 +1,5 @@
import { GET_JOB_LINES_BY_PK } from "../../graphql/jobs-lines.queries"; import { GET_JOB_LINES_BY_PK } from "../../graphql/jobs-lines.queries";
import gql from "graphql-tag"; import { gql } from "@apollo/client";
import _ from "lodash"; import _ from "lodash";
export const GetSupplementDelta = async (client, jobId, newLines) => { export const GetSupplementDelta = async (client, jobId, newLines) => {

View File

@@ -4,7 +4,7 @@ import {
PlusCircleFilled, PlusCircleFilled,
SyncOutlined, SyncOutlined,
} from "@ant-design/icons"; } from "@ant-design/icons";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Input, notification, Space, Table } from "antd"; import { Button, Input, notification, Space, Table } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -3,11 +3,11 @@ import {
useLazyQuery, useLazyQuery,
useMutation, useMutation,
useQuery, useQuery,
} from "@apollo/react-hooks"; } from "@apollo/client";
import { notification } from "antd"; import { notification } from "antd";
import Axios from "axios"; import Axios from "axios";
import Dinero from "dinero.js"; import Dinero from "dinero.js";
import gql from "graphql-tag"; import { gql } from "@apollo/client";
import _ from "lodash"; import _ from "lodash";
import React, { useState, useEffect, useCallback } from "react"; import React, { useState, useEffect, useCallback } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,7 +1,7 @@
import { DownCircleFilled } from "@ant-design/icons"; import { DownCircleFilled } from "@ant-design/icons";
import { Button, Dropdown, Menu, notification } from "antd"; import { Button, Dropdown, Menu, notification } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,6 +1,6 @@
import { Button, Form, notification, Popover, Select } from "antd"; import { Button, Form, notification, Popover, Select } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React, { useContext } from "react"; import React, { useContext } from "react";
import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries"; import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries";
import JobCreateContext from "../../pages/jobs-create/jobs-create.context"; import JobCreateContext from "../../pages/jobs-create/jobs-create.context";

View File

@@ -3,7 +3,7 @@ import JobsCreateVehicleInfoComponent from "./jobs-create-vehicle-info.component
import JobCreateContext from "../../pages/jobs-create/jobs-create.context"; import JobCreateContext from "../../pages/jobs-create/jobs-create.context";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";
import { SEARCH_VEHICLE_BY_VIN } from "../../graphql/vehicles.queries"; import { SEARCH_VEHICLE_BY_VIN } from "../../graphql/vehicles.queries";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
export default function JobsCreateVehicleInfoContainer({ form }) { export default function JobsCreateVehicleInfoContainer({ form }) {
const [state] = useContext(JobCreateContext); const [state] = useContext(JobCreateContext);
@@ -12,7 +12,7 @@ export default function JobsCreateVehicleInfoContainer({ form }) {
skip: !state.vehicle.search, skip: !state.vehicle.search,
}); });
if (error) return <AlertComponent message={error.message} type='error' />; if (error) return <AlertComponent message={error.message} type="error" />;
return ( return (
<JobsCreateVehicleInfoComponent <JobsCreateVehicleInfoComponent

View File

@@ -1,5 +1,5 @@
import { DownCircleFilled } from "@ant-design/icons"; import { DownCircleFilled } from "@ant-design/icons";
import { useApolloClient, useMutation } from "@apollo/react-hooks"; import { useApolloClient, useMutation } from "@apollo/client";
import { Button, Dropdown, Menu, notification, Popconfirm } from "antd"; import { Button, Dropdown, Menu, notification, Popconfirm } from "antd";
import React, { useMemo } from "react"; import React, { useMemo } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation, useApolloClient } from "@apollo/react-hooks"; import { useMutation, useApolloClient } from "@apollo/client";
import { Menu, notification } from "antd"; import { Menu, notification } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { GET_LINE_TICKET_BY_PK } from "../../graphql/jobs-lines.queries"; import { GET_LINE_TICKET_BY_PK } from "../../graphql/jobs-lines.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import queryString from "query-string"; import queryString from "query-string";
import React from "react"; import React from "react";
import { useHistory, useLocation } from "react-router-dom"; import { useHistory, useLocation } from "react-router-dom";

View File

@@ -2,7 +2,7 @@ import { Button, Form, Popover, notification } from "antd";
import React, { useState, useMemo } from "react"; import React, { useState, useMemo } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import JobSearchSelect from "../job-search-select/job-search-select.component"; import JobSearchSelect from "../job-search-select/job-search-select.component";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { UPDATE_DOCUMENT } from "../../graphql/documents.queries"; import { UPDATE_DOCUMENT } from "../../graphql/documents.queries";
import axios from "axios"; import axios from "axios";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { GET_DOCUMENTS_BY_JOB } from "../../graphql/documents.queries"; import { GET_DOCUMENTS_BY_JOB } from "../../graphql/documents.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,5 +1,5 @@
import { QuestionCircleOutlined } from "@ant-design/icons"; import { QuestionCircleOutlined } from "@ant-design/icons";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification, Popconfirm } from "antd"; import { Button, notification, Popconfirm } from "antd";
import axios from "axios"; import axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import _ from "lodash"; import _ from "lodash";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Modal } from "antd"; import { Modal } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,5 +1,5 @@
import { SyncOutlined } from "@ant-design/icons"; import { SyncOutlined } from "@ant-design/icons";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { Button, Input, Table } from "antd"; import { Button, Input, Table } from "antd";
import queryString from "query-string"; import queryString from "query-string";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,14 +1,16 @@
import { useMutation, useQuery } from "@apollo/react-hooks"; import { useMutation, useQuery } from "@apollo/client";
import { notification } from "antd"; import { notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
//import SpinComponent from "../../components/loading-spinner/loading-spinner.component"; //import SpinComponent from "../../components/loading-spinner/loading-spinner.component";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import AlertComponent from "../../components/alert/alert.component"; import AlertComponent from "../../components/alert/alert.component";
import { logImEXEvent } from "../../firebase/firebase.utils"; import { logImEXEvent } from "../../firebase/firebase.utils";
import { DELETE_NOTE, QUERY_NOTES_BY_JOB_PK } from "../../graphql/notes.queries"; import {
DELETE_NOTE,
QUERY_NOTES_BY_JOB_PK,
} from "../../graphql/notes.queries";
import JobNotesComponent from "./jobs.notes.component"; import JobNotesComponent from "./jobs.notes.component";
export default function JobNotesContainer({ jobId }) { export default function JobNotesContainer({ jobId }) {
const { loading, error, data, refetch } = useQuery(QUERY_NOTES_BY_JOB_PK, { const { loading, error, data, refetch } = useQuery(QUERY_NOTES_BY_JOB_PK, {
variables: { id: jobId }, variables: { id: jobId },

View File

@@ -7,9 +7,9 @@ import {
import { Button, Table } from "antd"; import { Button, Table } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import Moment from "react-moment";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { setModalContext } from "../../redux/modals/modals.actions"; import { setModalContext } from "../../redux/modals/modals.actions";
import { DateTimeFormatter } from "../../utils/DateFormatter";
import NoteUpsertModal from "../note-upsert-modal/note-upsert-modal.container"; import NoteUpsertModal from "../note-upsert-modal/note-upsert-modal.container";
const mapDispatchToProps = (dispatch) => ({ const mapDispatchToProps = (dispatch) => ({
@@ -58,9 +58,7 @@ export function JobNotesComponent({
width: 200, width: 200,
sorter: (a, b) => new Date(a.updated_at) - new Date(b.updated_at), sorter: (a, b) => new Date(a.updated_at) - new Date(b.updated_at),
render: (text, record) => ( render: (text, record) => (
<span> <DateTimeFormatter>{record.updated_at}</DateTimeFormatter>
<Moment format="MM/DD/YYYY @ HH:mm">{record.updated_at}</Moment>
</span>
), ),
}, },
{ {

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { import {
Button, Button,
Card, Card,

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Form, Modal, notification } from "antd"; import { Form, Modal, notification } from "antd";
import React, { useEffect } from "react"; import React, { useEffect } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,6 +1,6 @@
import { Form, notification } from "antd"; import { Form, notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { UPDATE_OWNER } from "../../graphql/owners.queries"; import { UPDATE_OWNER } from "../../graphql/owners.queries";
import OwnerDetailFormComponent from "./owner-detail-form.component"; import OwnerDetailFormComponent from "./owner-detail-form.component";

View File

@@ -1,7 +1,7 @@
import React from "react"; import React from "react";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { UPDATE_JOBS } from "../../graphql/jobs.queries"; import { UPDATE_JOBS } from "../../graphql/jobs.queries";
import { logImEXEvent } from "../../firebase/firebase.utils"; import { logImEXEvent } from "../../firebase/firebase.utils";

View File

@@ -1,6 +1,6 @@
import { Modal } from "antd"; import { Modal } from "antd";
import React from "react"; import React from "react";
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries"; import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,11 +1,11 @@
import { LoadingOutlined } from "@ant-design/icons"; import { LoadingOutlined } from "@ant-design/icons";
import { useLazyQuery } from "@apollo/react-hooks"; import { useLazyQuery } from "@apollo/client";
import { Empty, Select } from "antd"; import { Empty, Select } from "antd";
import _ from "lodash"; import _ from "lodash";
import React, { forwardRef, useEffect, useState } from "react"; import React, { forwardRef, useEffect, useState } from "react";
import { import {
SEARCH_OWNERS_BY_ID_FOR_AUTOCOMPLETE, SEARCH_OWNERS_BY_ID_FOR_AUTOCOMPLETE,
SEARCH_OWNERS_FOR_AUTOCOMPLETE SEARCH_OWNERS_FOR_AUTOCOMPLETE,
} from "../../graphql/owners.queries"; } from "../../graphql/owners.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import React from "react"; import React from "react";
import { QUERY_ALL_OWNERS_PAGINATED } from "../../graphql/owners.queries"; import { QUERY_ALL_OWNERS_PAGINATED } from "../../graphql/owners.queries";
import AlertComponent from "../alert/alert.component"; import AlertComponent from "../alert/alert.component";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification, Popover } from "antd"; import { Button, notification, Popover } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation, useQuery } from "@apollo/react-hooks"; import { useMutation, useQuery } from "@apollo/client";
import { Form, Modal, notification } from "antd"; import { Form, Modal, notification } from "antd";
import moment from "moment"; import moment from "moment";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Form, Modal, notification } from "antd"; import { Form, Modal, notification } from "antd";
import React, { useEffect } from "react"; import React, { useEffect } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import React, { useState } from "react"; import React, { useState } from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { CardElement, useElements, useStripe } from "@stripe/react-stripe-js"; import { CardElement, useElements, useStripe } from "@stripe/react-stripe-js";
import { Form, Modal, notification } from "antd"; import { Form, Modal, notification } from "antd";
import axios from "axios"; import axios from "axios";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import axios from "axios"; import axios from "axios";
import _ from "lodash"; import _ from "lodash";

View File

@@ -1,4 +1,4 @@
import { useApolloClient } from "@apollo/react-hooks"; import { useApolloClient } from "@apollo/client";
import Board, { moveCard } from "@lourenci/react-kanban"; import Board, { moveCard } from "@lourenci/react-kanban";
import "@lourenci/react-kanban/dist/styles.css"; import "@lourenci/react-kanban/dist/styles.css";
import { notification } from "antd"; import { notification } from "antd";

View File

@@ -1,4 +1,4 @@
import { useSubscription } from "@apollo/react-hooks"; import { useSubscription } from "@apollo/client";
import React from "react"; import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -2,7 +2,7 @@ import { ExclamationCircleFilled } from "@ant-design/icons";
import { Dropdown, Menu } from "antd"; import { Dropdown, Menu } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { UPDATE_JOB } from "../../graphql/jobs.queries"; import { UPDATE_JOB } from "../../graphql/jobs.queries";
import { logImEXEvent } from "../../firebase/firebase.utils"; import { logImEXEvent } from "../../firebase/firebase.utils";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Dropdown, Menu } from "antd"; import { Dropdown, Menu } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { DatePicker, Dropdown } from "antd"; import { DatePicker, Dropdown } from "antd";
import moment from "moment"; import moment from "moment";
import React from "react"; import React from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Dropdown, Menu } from "antd"; import { Dropdown, Menu } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Dropdown, Menu } from "antd"; import { Dropdown, Menu } from "antd";
import React from "react"; import React from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,5 +1,5 @@
import Icon from "@ant-design/icons"; import Icon from "@ant-design/icons";
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, Input, Popover } from "antd"; import { Button, Input, Popover } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Dropdown, Menu } from "antd"; import { Dropdown, Menu } from "antd";
import React from "react"; import React from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
@@ -35,13 +35,15 @@ export function ProductionListColumnStatus({ record, bodyshop }) {
overlay={ overlay={
<Menu <Menu
style={{ maxHeight: "200px", overflowY: "auto" }} style={{ maxHeight: "200px", overflowY: "auto" }}
onClick={handleSetStatus}> onClick={handleSetStatus}
>
{bodyshop.md_ro_statuses.statuses.map((item) => ( {bodyshop.md_ro_statuses.statuses.map((item) => (
<Menu.Item key={item}>{item}</Menu.Item> <Menu.Item key={item}>{item}</Menu.Item>
))} ))}
</Menu> </Menu>
} }
trigger={["contextMenu"]}> trigger={["contextMenu"]}
>
<div style={{ width: "100%", height: "19px" }}>{record.status}</div> <div style={{ width: "100%", height: "19px" }}>{record.status}</div>
</Dropdown> </Dropdown>
); );

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import React, { useState } from "react"; import React, { useState } from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useSubscription } from "@apollo/react-hooks"; import { useSubscription } from "@apollo/client";
import React, { useState } from "react"; import React, { useState } from "react";
import { connect } from "react-redux"; import { connect } from "react-redux";
import { createStructuredSelector } from "reselect"; import { createStructuredSelector } from "reselect";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Button, notification } from "antd"; import { Button, notification } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";

View File

@@ -1,7 +1,7 @@
import { CheckCircleFilled, EyeInvisibleFilled } from "@ant-design/icons"; import { CheckCircleFilled, EyeInvisibleFilled } from "@ant-design/icons";
import { Button, List, notification, Popover } from "antd"; import { Button, List, notification, Popover } from "antd";
import React, { useMemo, useState } from "react"; import React, { useMemo, useState } from "react";
import { useMutation } from "react-apollo"; import { useMutation } from "@apollo/client";
import { useTranslation } from "react-i18next"; import { useTranslation } from "react-i18next";
import { UPDATE_JOB_LINE } from "../../graphql/jobs-lines.queries"; import { UPDATE_JOB_LINE } from "../../graphql/jobs-lines.queries";
export default function ProductionSubletsManageComponent({ subletJobLines }) { export default function ProductionSubletsManageComponent({ subletJobLines }) {

View File

@@ -1,5 +1,5 @@
import React from "react"; import React from "react";
import { useQuery, useMutation } from "@apollo/react-hooks"; import { useQuery, useMutation } from "@apollo/client";
import { import {
QUERY_ALL_ASSOCIATIONS, QUERY_ALL_ASSOCIATIONS,
UPDATE_ASSOCIATION, UPDATE_ASSOCIATION,
@@ -26,7 +26,7 @@ export default function ProfileShopsContainer() {
refetch(); refetch();
}; };
if (error) return <AlertComponent type='error' message={error.message} />; if (error) return <AlertComponent type="error" message={error.message} />;
return ( return (
<ProfileShopsComponent <ProfileShopsComponent
loading={loading} loading={loading}

View File

@@ -1,4 +1,4 @@
import { useLazyQuery } from "@apollo/react-hooks"; import { useLazyQuery } from "@apollo/client";
import { Button, DatePicker, Form, Select, Switch } from "antd"; import { Button, DatePicker, Form, Select, Switch } from "antd";
import moment from "moment"; import moment from "moment";
import React from "react"; import React from "react";

View File

@@ -1,4 +1,4 @@
import { useMutation } from "@apollo/react-hooks"; import { useMutation } from "@apollo/client";
import { Dropdown, Menu, notification } from "antd"; import { Dropdown, Menu, notification } from "antd";
import moment from "moment"; import moment from "moment";
import React from "react"; import React from "react";

View File

@@ -1,4 +1,4 @@
import { useQuery } from "@apollo/react-hooks"; import { useQuery } from "@apollo/client";
import queryString from "query-string"; import queryString from "query-string";
import React, { useMemo, useEffect } from "react"; import React, { useMemo, useEffect } from "react";
import { useLocation } from "react-router-dom"; import { useLocation } from "react-router-dom";

Some files were not shown because too many files have changed in this diff Show More