30 lines
841 B
JavaScript
30 lines
841 B
JavaScript
import { useQuery } from "@apollo/react-hooks";
|
|
import React from "react";
|
|
import { QUERY_AVAILABLE_CC } from "../../graphql/courtesy-car.queries";
|
|
import AlertComponent from "../alert/alert.component";
|
|
import ContractCarsComponent from "./contract-cars.component";
|
|
|
|
|
|
|
|
export default function ContractCarsContainer({ selectedCarState, bodyshop }) {
|
|
const { loading, error, data } = useQuery(QUERY_AVAILABLE_CC);
|
|
|
|
const [selectedCar, setSelectedCar] = selectedCarState;
|
|
|
|
const handleSelect = record => {
|
|
setSelectedCar(record.id);
|
|
};
|
|
|
|
if (error) return <AlertComponent message={error.message} type="error" />;
|
|
return (
|
|
<div>
|
|
<ContractCarsComponent
|
|
handleSelect={handleSelect}
|
|
selectedCar={selectedCar}
|
|
loading={loading}
|
|
data={data ? data.courtesycars : []}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|