import { Table } from '@byline/ui/react' import type { Locale } from '@/ui/byline/types/i18n' import type { SerializeOptions, SerializeProps } from '../richtext-lexical/serialize/index.tsx' import type { SerializedLexicalNode } from '../richtext-lexical/serialize/types.ts' export function TableCellSerializer({ node, serialize, lng, options, }: { node: SerializedLexicalNode serialize: ({ nodes, options }: SerializeProps) => React.JSX.Element lng: Locale options: SerializeOptions }): React.JSX.Element { // Disable any animations for any child nodes that appear inside a table cell const tableCellOptions: SerializeOptions = { ...options, disableAnimation: true } if (node?.headerState === 1 || node?.headerState === 2 || node?.headerState === 3) { return ( {node?.children != null && serialize({ nodes: node?.children, lng, options: tableCellOptions })} ) } else { return ( {node?.children != null && serialize({ nodes: node?.children, lng, options: tableCellOptions })} ) } }