blob: 6d58e836f2675d97d3a493118c76f7399420361c (
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
|
import Script from 'next/script';
import type { FC } from 'react';
import type { BreadcrumbList } from 'schema-dts';
import { Section, type SectionProps, type SectionVariant } from '../../atoms';
export type PageSection = Required<Pick<SectionProps, 'children' | 'id'>>;
export type SectionedLayoutProps = {
/**
* The breadcrumb JSON schema.
*/
breadcrumbSchema: BreadcrumbList['itemListElement'][];
/**
* An array of objects describing each section.
*/
sections: PageSection[];
};
/**
* SectionedLayout component
*
* Render a sectioned layout.
*/
export const SectionedLayout: FC<SectionedLayoutProps> = ({
breadcrumbSchema,
sections,
}) => {
const getSections = (items: PageSection[]) =>
items.map((section, index) => {
const variant: SectionVariant = index % 2 ? 'light' : 'dark';
const isLastSection = index === items.length - 1;
return (
<Section hasBorder={!isLastSection} key={section.id} variant={variant}>
{section.children}
</Section>
);
});
return (
<>
<Script
dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbSchema) }}
// eslint-disable-next-line react/jsx-no-literals -- Id allowed.
id="schema-breadcrumb"
type="application/ld+json"
/>
{getSections(sections)}
</>
);
};
|