mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
67 lines
1.7 KiB
JavaScript
67 lines
1.7 KiB
JavaScript
import React, { createContext } from 'react';
|
|
import { isEmpty } from 'lodash';
|
|
|
|
import DashboardInsider from 'components/Dashboard/DashboardInsider';
|
|
import { useResourceViews, useResourceMeta, useBills } from 'hooks/query';
|
|
|
|
import { getFieldsFromResourceMeta } from 'utils';
|
|
|
|
const BillsListContext = createContext();
|
|
|
|
/**
|
|
* Accounts chart data provider.
|
|
*/
|
|
function BillsListProvider({ query, tableStateChanged, ...props }) {
|
|
// Fetch accounts resource views and fields.
|
|
const { data: billsViews, isLoading: isViewsLoading } =
|
|
useResourceViews('bills');
|
|
|
|
// Fetch the accounts resource fields.
|
|
const {
|
|
data: resourceMeta,
|
|
isLoading: isResourceLoading,
|
|
isFetching: isResourceFetching,
|
|
} = useResourceMeta('bills');
|
|
|
|
// Fetch accounts list according to the given custom view id.
|
|
const {
|
|
data: { bills, pagination, filterMeta },
|
|
isLoading: isBillsLoading,
|
|
isFetching: isBillsFetching,
|
|
} = useBills(query, { keepPreviousData: true });
|
|
|
|
// Detarmines the datatable empty status.
|
|
const isEmptyStatus =
|
|
isEmpty(bills) && !isBillsLoading && !tableStateChanged;
|
|
|
|
// Provider payload.
|
|
const provider = {
|
|
bills,
|
|
pagination,
|
|
billsViews,
|
|
|
|
resourceMeta,
|
|
fields: getFieldsFromResourceMeta(resourceMeta.fields),
|
|
isResourceLoading,
|
|
isResourceFetching,
|
|
|
|
isBillsLoading,
|
|
isBillsFetching,
|
|
isViewsLoading,
|
|
isEmptyStatus,
|
|
};
|
|
|
|
return (
|
|
<DashboardInsider
|
|
loading={isViewsLoading || isResourceLoading}
|
|
name={'bills'}
|
|
>
|
|
<BillsListContext.Provider value={provider} {...props} />
|
|
</DashboardInsider>
|
|
);
|
|
}
|
|
|
|
const useBillsListContext = () => React.useContext(BillsListContext);
|
|
|
|
export { BillsListProvider, useBillsListContext };
|