blob: 7fcad63857fec08b0804803db2b625fd3579b82f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
import Script from 'next/script';
import { FC } from 'react';
import { BreadcrumbList } from 'schema-dts';
import Section, {
type SectionProps,
type SectionVariant,
} from '../../atoms/layout/section';
export type Section = Pick<SectionProps, 'content' | 'title'>;
export type SectionedLayoutProps = {
/**
* The breadcrumb JSON schema.
*/
breadcrumbSchema: BreadcrumbList['itemListElement'][];
/**
* An array of objects describing each section.
*/
sections: Section[];
};
/**
* SectionedLayout component
*
* Render a sectioned layout.
*/
const SectionedLayout: FC<SectionedLayoutProps> = ({
breadcrumbSchema,
sections,
}) => {
const getSections = (items: SectionProps[]) => {
return items.map((section, index) => {
const variant: SectionVariant = index % 2 ? 'light' : 'dark';
const isLastSection = index === items.length - 1;
return (
<Section
key={`section-${index}`}
title={section.title}
content={section.content}
variant={variant}
withBorder={!isLastSection}
/>
);
});
};
return (
<>
<Script
id="schema-breadcrumb"
type="application/ld+json"
dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbSchema) }}
/>
{getSections(sections)}
</>
);
};
export default SectionedLayout;
|