* Refacto pipeline progress board to be entity agnostic * Abstract hooks as well * Move files * Pass specific components as props * Move board hook to the generic component * Make dnd and update logic part of the board * Remove useless call and getch pipelineProgress from hook * Minot * improve typing * Revert "improve typing" This reverts commit 49bf7929b6231747cc460cbb98f68c3c10424659. * wip * Get board from initial component * Move files again * Lint * Fix story * Lint * Mock pipeline progress * Fix storybook * WIP refactor recoil * Checkpoint: compilation * Fix dnd * Fix unselect card * Checkpoint: compilation * Checkpoint: New card OK * Checkpoint: feature complete * Fix latency for delete * Linter * Fix rebase * Move files * lint * Update Stories tests * lint * Fix test * Refactor hook for company progress indexing * Remove useless type * Move boardState * remove gardcoded Id * Nit * Fix * Rename state
139 lines
3.9 KiB
TypeScript
139 lines
3.9 KiB
TypeScript
import { useEffect } from 'react';
|
|
import { useRecoilCallback, useRecoilState } from 'recoil';
|
|
|
|
import {
|
|
CompanyForBoard,
|
|
CompanyProgress,
|
|
PipelineProgressForBoard,
|
|
} from '@/companies/types/CompanyProgress';
|
|
import { BoardPipelineStageColumn } from '@/ui/board/components/Board';
|
|
import {
|
|
Pipeline,
|
|
PipelineStage,
|
|
useGetCompaniesQuery,
|
|
useGetPipelineProgressQuery,
|
|
useGetPipelinesQuery,
|
|
} from '~/generated/graphql';
|
|
|
|
import { boardState } from '../../modules/pipeline-progress/states/boardState';
|
|
|
|
import { companyProgressesFamilyState } from './companyProgressesFamilyState';
|
|
import { currentPipelineState } from './currentPipelineState';
|
|
import { isBoardLoadedState } from './isBoardLoadedState';
|
|
export function HookCompanyBoard() {
|
|
const [currentPipeline, setCurrentPipeline] =
|
|
useRecoilState(currentPipelineState);
|
|
|
|
const [, setBoard] = useRecoilState(boardState);
|
|
|
|
const [, setIsBoardLoaded] = useRecoilState(isBoardLoadedState);
|
|
|
|
useGetPipelinesQuery({
|
|
onCompleted: async (data) => {
|
|
const pipeline = data?.findManyPipeline[0] as Pipeline;
|
|
setCurrentPipeline(pipeline);
|
|
const pipelineStages = pipeline?.pipelineStages;
|
|
const orderedPipelineStages = pipelineStages
|
|
? [...pipelineStages].sort((a, b) => {
|
|
if (!a.index || !b.index) return 0;
|
|
return a.index - b.index;
|
|
})
|
|
: [];
|
|
const initialBoard: BoardPipelineStageColumn[] =
|
|
orderedPipelineStages?.map((pipelineStage) => ({
|
|
pipelineStageId: pipelineStage.id,
|
|
title: pipelineStage.name,
|
|
colorCode: pipelineStage.color,
|
|
pipelineProgressIds:
|
|
pipelineStage.pipelineProgresses?.map(
|
|
(item) => item.id as string,
|
|
) || [],
|
|
})) || [];
|
|
setBoard(initialBoard);
|
|
setIsBoardLoaded(true);
|
|
},
|
|
});
|
|
|
|
const pipelineProgressIds = currentPipeline?.pipelineStages
|
|
?.map((pipelineStage: PipelineStage) =>
|
|
(
|
|
pipelineStage.pipelineProgresses?.map((item) => item.id as string) || []
|
|
).flat(),
|
|
)
|
|
.flat();
|
|
|
|
const pipelineProgressesQuery = useGetPipelineProgressQuery({
|
|
variables: {
|
|
where: {
|
|
id: { in: pipelineProgressIds },
|
|
},
|
|
},
|
|
});
|
|
|
|
const pipelineProgresses =
|
|
pipelineProgressesQuery.data?.findManyPipelineProgress || [];
|
|
|
|
const entitiesQueryResult = useGetCompaniesQuery({
|
|
variables: {
|
|
where: {
|
|
id: {
|
|
in: pipelineProgresses.map((item) => item.progressableId),
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
const indexCompanyByIdReducer = (
|
|
acc: { [key: string]: CompanyForBoard },
|
|
company: CompanyForBoard,
|
|
) => ({
|
|
...acc,
|
|
[company.id]: company,
|
|
});
|
|
|
|
const companiesDict =
|
|
entitiesQueryResult.data?.companies.reduce(
|
|
indexCompanyByIdReducer,
|
|
{} as { [key: string]: CompanyForBoard },
|
|
) || {};
|
|
|
|
const indexPipelineProgressByIdReducer = (
|
|
acc: {
|
|
[key: string]: CompanyProgress;
|
|
},
|
|
pipelineProgress: PipelineProgressForBoard,
|
|
) => {
|
|
const company = companiesDict[pipelineProgress.progressableId];
|
|
return {
|
|
...acc,
|
|
[pipelineProgress.id]: {
|
|
pipelineProgress,
|
|
company,
|
|
},
|
|
};
|
|
};
|
|
const companyBoardIndex = pipelineProgresses.reduce(
|
|
indexPipelineProgressByIdReducer,
|
|
{} as { [key: string]: CompanyProgress },
|
|
);
|
|
|
|
const synchronizeCompanyProgresses = useRecoilCallback(
|
|
({ set }) =>
|
|
(companyBoardIndex: { [key: string]: CompanyProgress }) => {
|
|
Object.entries(companyBoardIndex).forEach(([id, companyProgress]) => {
|
|
set(companyProgressesFamilyState(id), companyProgress);
|
|
});
|
|
},
|
|
[],
|
|
);
|
|
|
|
const loading =
|
|
entitiesQueryResult.loading || pipelineProgressesQuery.loading;
|
|
|
|
useEffect(() => {
|
|
!loading && synchronizeCompanyProgresses(companyBoardIndex);
|
|
}, [loading, companyBoardIndex, synchronizeCompanyProgresses]);
|
|
|
|
return <></>;
|
|
}
|