AbdulElahGwaith's picture
Upload folder using huggingface_hub
88df9e4 verified
import React from 'react'
import cx from 'classnames'
import { SupportPortalVaIframe, SupportPortalVaIframeProps } from './SupportPortalVaIframe'
import styles from './ArticleGridLayout.module.scss'
type Props = {
intro?: React.ReactNode
topper?: React.ReactNode
toc?: React.ReactNode
children?: React.ReactNode
className?: string
supportPortalVaIframeProps?: SupportPortalVaIframeProps
fullWidth?: boolean
}
export const ArticleGridLayout = ({
intro,
topper,
toc,
children,
className,
supportPortalVaIframeProps,
fullWidth,
}: Props) => {
const containerBoxStyles = fullWidth ? '' : styles.containerBox
return (
<div className={cx(containerBoxStyles, className)}>
{topper && <div style={{ gridArea: 'topper' }}>{topper}</div>}
{intro && (
<div id="article-intro" style={{ gridArea: 'intro' }} className="f4 pb-4">
{intro}
</div>
)}
{toc && (
<div
data-container="toc"
style={{ gridArea: 'sidebar', alignSelf: 'flex-start' }}
className={cx(styles.sidebarBox, 'border-bottom border-lg-0 pb-4 mb-5 pb-xl-0 mb-xl-0')}
>
{toc}
</div>
)}
<div data-container="article" style={{ gridArea: 'content' }} data-search="article-body">
{supportPortalVaIframeProps &&
supportPortalVaIframeProps.supportPortalUrl &&
supportPortalVaIframeProps.vaFlowUrlParameter && (
<SupportPortalVaIframe supportPortalVaIframeProps={supportPortalVaIframeProps} />
)}
{children}
</div>
</div>
)
}