feat(SW-1269): added dynamic content to collection page
This commit is contained in:
@@ -1,13 +1,8 @@
|
||||
import SectionContainer from "@/components/Section/Container"
|
||||
import SectionHeader from "@/components/Section/Header"
|
||||
import SectionLink from "@/components/Section/Link"
|
||||
import Subtitle from "@/components/TempDesignSystem/Text/Subtitle"
|
||||
import Title from "@/components/TempDesignSystem/Text/Title"
|
||||
|
||||
import styles from "./sectionWrapper.module.css"
|
||||
|
||||
import type { DynamicContentProps } from "@/types/components/blocks/dynamicContent"
|
||||
import { DynamicContentEnum } from "@/types/enums/dynamicContent"
|
||||
|
||||
export default function SectionWrapper({
|
||||
children,
|
||||
@@ -19,17 +14,9 @@ export default function SectionWrapper({
|
||||
dynamic_content.subtitle ||
|
||||
dynamic_content.title
|
||||
)
|
||||
const isOverviewTable =
|
||||
dynamic_content.component ===
|
||||
DynamicContentEnum.Blocks.components.overview_table
|
||||
return (
|
||||
<SectionContainer className={styles.container}>
|
||||
{isOverviewTable ? (
|
||||
<div className={styles.header}>
|
||||
<Title className={styles.tableTitle}> {dynamic_content.title}</Title>
|
||||
<Subtitle>{dynamic_content.subtitle}</Subtitle>
|
||||
</div>
|
||||
) : displayHeader ? (
|
||||
<SectionContainer>
|
||||
{displayHeader ? (
|
||||
<SectionHeader
|
||||
link={dynamic_content.link}
|
||||
preamble={dynamic_content.subtitle}
|
||||
@@ -38,7 +25,7 @@ export default function SectionWrapper({
|
||||
/>
|
||||
) : null}
|
||||
{children}
|
||||
{displayHeader ? (
|
||||
{dynamic_content.link ? (
|
||||
<SectionLink link={dynamic_content.link} variant="mobile" />
|
||||
) : null}
|
||||
</SectionContainer>
|
||||
|
||||
Reference in New Issue
Block a user