blob: a307688b4c418dd2a9aa76e7b28ef2c7579cedf9 (
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
|
import Script from 'next/script';
import { FC } from 'react';
import { BreadcrumbList } from 'schema-dts';
import { Section, type SectionProps, type SectionVariant } from '../../atoms';
export type PageSection = Pick<SectionProps, 'content' | 'title'>;
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: SectionProps[]) => {
return items.map((section, index) => {
const variant: SectionVariant = index % 2 ? 'light' : 'dark';
const isLastSection = index === items.length - 1;
return (
<Section
content={section.content}
key={`section-${index}`}
title={section.title}
variant={variant}
withBorder={!isLastSection}
/>
);
});
};
return (
<>
<Script
dangerouslySetInnerHTML={{ __html: JSON.stringify(breadcrumbSchema) }}
id="schema-breadcrumb"
type="application/ld+json"
/>
{getSections(sections)}
</>
);
};
|