* feat: wip implement back-end call csv import * fix: rebase IconBrandTwitter missing * feat: person and company csv import * fix: test & clean * fix: clean & test
110 lines
4.0 KiB
TypeScript
110 lines
4.0 KiB
TypeScript
import { useMemo } from 'react';
|
|
|
|
import { companyViewFields } from '@/companies/constants/companyViewFields';
|
|
import { useCompanyTableActionBarEntries } from '@/companies/hooks/useCompanyTableActionBarEntries';
|
|
import { useCompanyTableContextMenuEntries } from '@/companies/hooks/useCompanyTableContextMenuEntries';
|
|
import { useSpreadsheetCompanyImport } from '@/companies/hooks/useSpreadsheetCompanyImport';
|
|
import { filtersScopedState } from '@/ui/filter-n-sort/states/filtersScopedState';
|
|
import { sortsOrderByScopedState } from '@/ui/filter-n-sort/states/sortScopedState';
|
|
import { turnFilterIntoWhereClause } from '@/ui/filter-n-sort/utils/turnFilterIntoWhereClause';
|
|
import { EntityTable } from '@/ui/table/components/EntityTable';
|
|
import { GenericEntityTableData } from '@/ui/table/components/GenericEntityTableData';
|
|
import { useUpsertEntityTableItem } from '@/ui/table/hooks/useUpsertEntityTableItem';
|
|
import { TableRecoilScopeContext } from '@/ui/table/states/recoil-scope-contexts/TableRecoilScopeContext';
|
|
import { currentTableViewIdState } from '@/ui/table/states/tableViewsState';
|
|
import { useRecoilScopedValue } from '@/ui/utilities/recoil-scope/hooks/useRecoilScopedValue';
|
|
import { useTableViewFields } from '@/views/hooks/useTableViewFields';
|
|
import { useTableViews } from '@/views/hooks/useTableViews';
|
|
import { useViewSorts } from '@/views/hooks/useViewSorts';
|
|
import {
|
|
SortOrder,
|
|
UpdateOneCompanyMutationVariables,
|
|
useGetCompaniesQuery,
|
|
useUpdateOneCompanyMutation,
|
|
} from '~/generated/graphql';
|
|
import { companiesFilters } from '~/pages/companies/companies-filters';
|
|
import { availableSorts } from '~/pages/companies/companies-sorts';
|
|
|
|
export function CompanyTable() {
|
|
const currentViewId = useRecoilScopedValue(
|
|
currentTableViewIdState,
|
|
TableRecoilScopeContext,
|
|
);
|
|
const orderBy = useRecoilScopedValue(
|
|
sortsOrderByScopedState,
|
|
TableRecoilScopeContext,
|
|
);
|
|
const [updateEntityMutation] = useUpdateOneCompanyMutation();
|
|
const upsertEntityTableItem = useUpsertEntityTableItem();
|
|
|
|
const objectId = 'company';
|
|
const { handleViewsChange } = useTableViews({ objectId });
|
|
const { handleColumnsChange } = useTableViewFields({
|
|
objectName: objectId,
|
|
viewFieldDefinitions: companyViewFields,
|
|
});
|
|
const { updateSorts } = useViewSorts({ availableSorts });
|
|
const { openCompanySpreadsheetImport } = useSpreadsheetCompanyImport();
|
|
|
|
const filters = useRecoilScopedValue(
|
|
filtersScopedState,
|
|
TableRecoilScopeContext,
|
|
);
|
|
|
|
const whereFilters = useMemo(() => {
|
|
return { AND: filters.map(turnFilterIntoWhereClause) };
|
|
}, [filters]) as any;
|
|
|
|
const { setContextMenuEntries } = useCompanyTableContextMenuEntries();
|
|
const { setActionBarEntries } = useCompanyTableActionBarEntries();
|
|
|
|
function handleImport() {
|
|
openCompanySpreadsheetImport();
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<GenericEntityTableData
|
|
getRequestResultKey="companies"
|
|
useGetRequest={useGetCompaniesQuery}
|
|
orderBy={
|
|
orderBy.length
|
|
? orderBy
|
|
: [
|
|
{
|
|
createdAt: SortOrder.Desc,
|
|
},
|
|
]
|
|
}
|
|
whereFilters={whereFilters}
|
|
filterDefinitionArray={companiesFilters}
|
|
setContextMenuEntries={setContextMenuEntries}
|
|
setActionBarEntries={setActionBarEntries}
|
|
/>
|
|
<EntityTable
|
|
viewName="All Companies"
|
|
availableSorts={availableSorts}
|
|
onColumnsChange={handleColumnsChange}
|
|
onSortsUpdate={currentViewId ? updateSorts : undefined}
|
|
onViewsChange={handleViewsChange}
|
|
onImport={handleImport}
|
|
updateEntityMutation={({
|
|
variables,
|
|
}: {
|
|
variables: UpdateOneCompanyMutationVariables;
|
|
}) =>
|
|
updateEntityMutation({
|
|
variables,
|
|
onCompleted: (data) => {
|
|
if (!data.updateOneCompany) {
|
|
return;
|
|
}
|
|
upsertEntityTableItem(data.updateOneCompany);
|
|
},
|
|
})
|
|
}
|
|
/>
|
|
</>
|
|
);
|
|
}
|