import { titleCase } from 'string-ts'; import { createBlocksTyped } from '../../create-blocks-typed/create-blocks-typed'; import { TWorkflowById } from '@/domains/workflows/fetchers'; import { valueOrNA } from '@ballerine/common'; import { useMemo } from 'react'; import { omitPropsFromObject } from '@/pages/Entity/hooks/useEntityLogic/utils'; import { userCreatedIconCell } from '@/lib/blocks/utils/constants'; export const useEntityAdditionalInfoBlock = ({ entity, workflow, predefinedOrder, }: { entity: TWorkflowById['context']['entity']; workflow: TWorkflowById; predefinedOrder: string[]; }) => { return useMemo(() => { const entityAdditionalInfo = omitPropsFromObject( entity?.data?.additionalInfo ?? {}, 'store', 'bank', 'mainContact', 'openCorporate', 'mainRepresentative', 'ubos', 'associatedCompanies', 'directors', ); if (Object.keys(entityAdditionalInfo ?? {}).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: `Additional ${valueOrNA(titleCase(entity?.type ?? ''))} Information`, props: { className: 'mt-0' }, }) .addCell({ type: 'subheading', value: 'User-Provided Data', }) .buildFlat(), }) .buildFlat(), props: { className: 'flex space-x-1 items-center mt-4', }, }) .addCell({ id: 'entity-details', type: 'details', hideSeparator: true, value: { id: 'entity-details-value', title: `${valueOrNA(titleCase(entity?.type ?? ''))} Information`, data: Object.entries(entityAdditionalInfo) ?.map(([title, value]) => ({ title, value, type: 'string', isEditable: false, })) // removing private properties from list (__kyb_snapshot in this case) // __kyb_snapshot is state of KYB,temp solution // payload is not for users so removing it // TO DO: Remove this as soon as BE updated .filter(elem => !elem.title.startsWith('__')), }, props: { config: { sort: { predefinedOrder } } }, workflowId: workflow?.id, documents: workflow?.context?.documents?.map( ({ details: _details, ...document }) => document, ), isDocumentsV2: !!workflow?.workflowDefinition?.config?.isDocumentsV2, }) .build() .flat(1), }) .build(); }, [entity, workflow]); };