forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArticleGridLayout.tsx
53 lines (49 loc) · 1.38 KB
/
ArticleGridLayout.tsx
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
import React from 'react'
import cx from 'classnames'
import { Box } from '@primer/react'
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
}
export const ArticleGridLayout = ({
intro,
topper,
toc,
children,
className,
supportPortalVaIframeProps,
}: Props) => {
return (
<Box className={cx(styles.containerBox, className)}>
{topper && <Box gridArea="topper">{topper}</Box>}
{toc && (
<Box
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}
</Box>
)}
{intro && (
<Box id="article-intro" gridArea="intro">
{intro}
</Box>
)}
<Box gridArea="content" data-search="article-body">
{supportPortalVaIframeProps &&
supportPortalVaIframeProps.supportPortalUrl &&
supportPortalVaIframeProps.vaFlowUrlParameter && (
<SupportPortalVaIframe supportPortalVaIframeProps={supportPortalVaIframeProps} />
)}
{children}
</Box>
</Box>
)
}