- the great reformat

Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
Dave Richer
2024-02-06 18:20:58 -05:00
parent 30c530bcc4
commit e83badb454
912 changed files with 108516 additions and 107493 deletions

View File

@@ -1,24 +1,24 @@
import { useQuery } from "@apollo/client";
import React, { useContext } from "react";
import { QUERY_SEARCH_OWNER_BY_IDX } from "../../graphql/owners.queries";
import {useQuery} from "@apollo/client";
import React, {useContext} from "react";
import {QUERY_SEARCH_OWNER_BY_IDX} from "../../graphql/owners.queries";
import JobCreateContext from "../../pages/jobs-create/jobs-create.context";
import AlertComponent from "../alert/alert.component";
import JobsCreateOwnerInfoComponent from "./jobs-create-owner-info.component";
export default function JobsCreateOwnerContainer() {
const [state] = useContext(JobCreateContext);
const { loading, error, data } = useQuery(QUERY_SEARCH_OWNER_BY_IDX, {
variables: { search: `%${state.owner.search}%` },
skip: !state.owner.search,
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
});
const [state] = useContext(JobCreateContext);
const {loading, error, data} = useQuery(QUERY_SEARCH_OWNER_BY_IDX, {
variables: {search: `%${state.owner.search}%`},
skip: !state.owner.search,
fetchPolicy: "network-only",
nextFetchPolicy: "network-only",
});
if (error) return <AlertComponent message={error.message} type="error" />;
return (
<JobsCreateOwnerInfoComponent
loading={loading}
owners={data ? data.search_owners : null}
/>
);
if (error) return <AlertComponent message={error.message} type="error"/>;
return (
<JobsCreateOwnerInfoComponent
loading={loading}
owners={data ? data.search_owners : null}
/>
);
}