-
Notifications
You must be signed in to change notification settings - Fork 66.8k
Expand file tree
/
Copy pathArticleInlineLayout.tsx
More file actions
78 lines (72 loc) · 2.12 KB
/
ArticleInlineLayout.tsx
File metadata and controls
78 lines (72 loc) · 2.12 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import React from 'react'
import cx from 'classnames'
import { SupportPortalVaIframe, SupportPortalVaIframeProps } from './SupportPortalVaIframe'
import styles from './ArticleInlineLayout.module.scss'
type Props = {
breadcrumbs?: React.ReactNode
intro?: React.ReactNode
introCallOuts?: React.ReactNode
topper?: React.ReactNode
toc?: React.ReactNode
children?: React.ReactNode
className?: string
supportPortalVaIframeProps?: SupportPortalVaIframeProps
}
export const ArticleInlineLayout = ({
breadcrumbs,
intro,
introCallOuts,
topper,
toc,
children,
className,
supportPortalVaIframeProps,
}: Props) => {
return (
<div className={cx(styles.containerBox, className)}>
{breadcrumbs && (
<div
style={{ gridArea: 'breadcrumbs' }}
className={cx('d-none d-xxl-block mt-3 mr-auto width-full')}
>
{breadcrumbs}
</div>
)}
<div className={cx(styles.contentBox)}>
{topper && <div style={{ gridArea: 'topper' }}>{topper}</div>}
{intro && (
<div id="article-intro" style={{ gridArea: 'intro' }} className="f4">
{intro}
</div>
)}
{introCallOuts && (
<div style={{ gridArea: 'intro' }} className="f4 mb-4">
{introCallOuts}
</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"
className={cx(styles.articleContainer, className)}
>
{supportPortalVaIframeProps &&
supportPortalVaIframeProps.supportPortalUrl &&
supportPortalVaIframeProps.vaFlowUrlParameter && (
<SupportPortalVaIframe supportPortalVaIframeProps={supportPortalVaIframeProps} />
)}
{children}
</div>
</div>
</div>
)
}