commerce/components/page/rich-text-display.tsx
Chloe ebbc8f053c
support dynamic content on PLP
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-07-07 15:05:15 +07:00

79 lines
1.9 KiB
TypeScript

import clsx from 'clsx';
import Link from 'next/link';
type Text = {
type: 'text';
value: string;
bold?: boolean;
};
type Content =
| { type: 'paragraph'; children: Text[] }
| Text
| {
type: 'list';
listType: 'bullet' | 'ordered' | 'unordered';
children: Array<{ type: 'listItem'; children: Text[] }>;
}
| { type: 'listItem'; children: Text[] }
| { type: 'link'; children: Text[]; target: string; title: string; url: string };
const RichTextBlock = ({ block }: { block: Content }) => {
if (block.type === 'text') {
return block.bold ? (
<strong className="font-semibold">{block.value}</strong>
) : (
<span className="font-normal">{block.value}</span>
);
}
if (block.type === 'link') {
return (
<Link href={block.url} target={block.target} title={block.title} className="underline">
{block.children[0]?.value || block.title}
</Link>
);
}
if (block.type === 'listItem') {
return block.children.map((child, index) => <RichTextBlock key={index} block={child} />);
}
if (block.type === 'list') {
return (
<ol
className={clsx('spacy-y-0.5 ml-7', {
'list-decimal': block.listType === 'ordered',
'list-disc': block.listType === 'unordered'
})}
>
{block.children.map((child, index) => (
<li key={index}>
<RichTextBlock block={child} />
</li>
))}
</ol>
);
}
return (
<p className="text-black-700">
{block.children.map((child, index) => (
<RichTextBlock key={index} block={child} />
))}
</p>
);
};
const RichTextDisplay = ({ contentBlocks }: { contentBlocks: Content[] }) => {
return (
<div className="flex w-full flex-col gap-4">
{contentBlocks.map((block, index) => (
<RichTextBlock key={index} block={block} />
))}
</div>
);
};
export default RichTextDisplay;