import { useMemo } from 'react'; import { createBlocksTyped } from '@/lib/blocks/create-blocks-typed/create-blocks-typed'; import { userCreatedIconCell } from '@/lib/blocks/utils/constants'; export const useProcessingDetailsBlock = ({ processingDetails, workflow }) => { return useMemo(() => { if (Object.keys(processingDetails ?? {}).length === 0) { return []; } return createBlocksTyped() .addBlock() .addCell({ type: 'block', value: createBlocksTyped() .addBlock() .addCell({ type: 'container', value: createBlocksTyped() .addBlock() .addCell(userCreatedIconCell) .addCell({ type: 'container', value: createBlocksTyped() .addBlock() .addCell({ type: 'heading', value: 'Processing details', props: { className: 'mt-0' }, }) .addCell({ type: 'subheading', value: 'User-Provided Data', }) .buildFlat(), }) .buildFlat(), props: { className: 'flex space-x-1 items-center mt-4', }, }) .addCell({ type: 'details', value: { data: Object.entries(processingDetails)?.map(([title, value]) => ({ title, value, isEditable: false, })), }, workflowId: workflow?.id, documents: workflow?.context?.documents?.map( ({ details: _details, ...document }) => document, ), hideSeparator: true, isDocumentsV2: !!workflow?.workflowDefinition?.config?.isDocumentsV2, }) .build() .flat(1), }) .build(); }, [processingDetails, workflow]); };