feat(SW-3228): Move Image to design-system * Move Image to design-system * Merge branch 'master' into feat/sw-3228-move-image-to-design-system Approved-by: Linus Flood
129 lines
3.5 KiB
TypeScript
129 lines
3.5 KiB
TypeScript
import { cx } from "class-variance-authority"
|
|
import Link from "next/link"
|
|
|
|
import Body from "@scandic-hotels/design-system/Body"
|
|
import Image from "@scandic-hotels/design-system/Image"
|
|
import { OldDSButton as Button } from "@scandic-hotels/design-system/OldDSButton"
|
|
import Title from "@scandic-hotels/design-system/Title"
|
|
|
|
import BiroScript from "@/components/TempDesignSystem/Text/BiroScript"
|
|
|
|
import {
|
|
getBodyFontColor,
|
|
getButtonTheme,
|
|
getScriptFontColor,
|
|
getTitleFontColor,
|
|
} from "./utils"
|
|
import { cardVariants } from "./variants"
|
|
|
|
import styles from "./card.module.css"
|
|
|
|
import type { CardProps } from "./card"
|
|
|
|
export default function Card({
|
|
primaryButton,
|
|
secondaryButton,
|
|
scriptedTopTitle,
|
|
heading,
|
|
bodyText,
|
|
className,
|
|
theme,
|
|
backgroundImage,
|
|
imageGradient,
|
|
onPrimaryButtonClick,
|
|
onSecondaryButtonClick,
|
|
height,
|
|
}: CardProps) {
|
|
const buttonTheme = getButtonTheme(theme)
|
|
const titleFontColor = getTitleFontColor(theme)
|
|
const scriptFontColor = getScriptFontColor(theme)
|
|
const bodyFontColor = getBodyFontColor(theme)
|
|
|
|
return (
|
|
<article
|
|
className={cardVariants({
|
|
theme,
|
|
height,
|
|
className,
|
|
})}
|
|
>
|
|
{backgroundImage && (
|
|
<div
|
|
className={cx(styles.imageContainer, {
|
|
[styles.imageGradient]: imageGradient,
|
|
})}
|
|
>
|
|
<Image
|
|
src={backgroundImage.url}
|
|
className={styles.image}
|
|
alt={backgroundImage.meta.alt || backgroundImage.title}
|
|
fill
|
|
sizes="(min-width: 1367px) 700px, 900px"
|
|
focalPoint={backgroundImage.focalPoint}
|
|
/>
|
|
</div>
|
|
)}
|
|
<div className={styles.content}>
|
|
{scriptedTopTitle ? (
|
|
<section className={styles.scriptContainer}>
|
|
<BiroScript
|
|
className={styles.scriptedTitle}
|
|
type="two"
|
|
tilted="small"
|
|
color={scriptFontColor}
|
|
>
|
|
{scriptedTopTitle}
|
|
</BiroScript>
|
|
</section>
|
|
) : null}
|
|
<Title
|
|
as="h3"
|
|
level="h3"
|
|
textAlign="center"
|
|
textTransform="regular"
|
|
color={titleFontColor}
|
|
>
|
|
{heading}
|
|
</Title>
|
|
{bodyText ? (
|
|
<Body textAlign="center" color={bodyFontColor}>
|
|
{bodyText}
|
|
</Body>
|
|
) : null}
|
|
<div className={styles.buttonContainer}>
|
|
{primaryButton ? (
|
|
<Button asChild theme={buttonTheme} size="small">
|
|
<Link
|
|
href={primaryButton.href}
|
|
target={primaryButton.openInNewTab ? "_blank" : undefined}
|
|
onClick={onPrimaryButtonClick}
|
|
scroll={primaryButton.scrollOnClick ?? true}
|
|
>
|
|
{primaryButton.title}
|
|
</Link>
|
|
</Button>
|
|
) : null}
|
|
{secondaryButton ? (
|
|
<Button
|
|
asChild
|
|
theme={buttonTheme}
|
|
size="small"
|
|
intent="secondary"
|
|
disabled
|
|
>
|
|
<Link
|
|
href={secondaryButton.href}
|
|
target={secondaryButton.openInNewTab ? "_blank" : undefined}
|
|
onClick={onSecondaryButtonClick}
|
|
scroll={secondaryButton.scrollOnClick ?? true}
|
|
>
|
|
{secondaryButton.title}
|
|
</Link>
|
|
</Button>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
</article>
|
|
)
|
|
}
|