44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
import { useQuery } from "@apollo/client";
|
|
import React from "react";
|
|
import { QUERY_ALL_OWNERS_PAGINATED } from "../../graphql/owners.queries";
|
|
import AlertComponent from "../alert/alert.component";
|
|
import OwnersListComponent from "./owners-list.component";
|
|
import queryString from "query-string";
|
|
import { useLocation } from "react-router-dom";
|
|
|
|
export default function OwnersListContainer() {
|
|
const searchParams = queryString.parse(useLocation().search);
|
|
const { page, sortcolumn, sortorder, search } = searchParams;
|
|
const { loading, error, data, refetch } = useQuery(
|
|
QUERY_ALL_OWNERS_PAGINATED,
|
|
{
|
|
fetchPolicy: "network-only",
|
|
nextFetchPolicy: "network-only",
|
|
variables: {
|
|
search: search || "",
|
|
offset: page ? (page - 1) * 25 : 0,
|
|
limit: 25,
|
|
order: [
|
|
{
|
|
[sortcolumn || "created_at"]: sortorder
|
|
? sortorder === "descend"
|
|
? "desc"
|
|
: "asc"
|
|
: "desc",
|
|
},
|
|
],
|
|
},
|
|
}
|
|
);
|
|
|
|
if (error) return <AlertComponent message={error.message} type="error" />;
|
|
return (
|
|
<OwnersListComponent
|
|
loading={loading}
|
|
owners={data ? data.search_owners : null}
|
|
total={data ? data.search_owners_aggregate.aggregate.count : 0}
|
|
refetch={refetch}
|
|
/>
|
|
);
|
|
}
|