forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefaultLayout.tsx
147 lines (135 loc) · 5.11 KB
/
DefaultLayout.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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
import Head from 'next/head'
import { useRouter } from 'next/router'
import { SidebarNav } from 'components/sidebar/SidebarNav'
import { Header } from 'components/page-header/Header'
import { LegalFooter } from 'components/page-footer/LegalFooter'
import { ScrollButton } from 'components/ui/ScrollButton'
import { SupportSection } from 'components/page-footer/SupportSection'
import { DeprecationBanner } from 'src/versions/components/DeprecationBanner'
import { RestBanner } from 'src/rest/components/RestBanner'
import { useMainContext } from 'components/context/MainContext'
import { useTranslation } from 'src/languages/components/useTranslation'
import { Breadcrumbs } from 'components/page-header/Breadcrumbs'
import { useLanguages } from 'src/languages/components/LanguagesContext'
const MINIMAL_RENDER = Boolean(JSON.parse(process.env.MINIMAL_RENDER || 'false'))
type Props = { children?: React.ReactNode }
export const DefaultLayout = (props: Props) => {
const {
page,
error,
isHomepageVersion,
currentPathWithoutLanguage,
currentVersion,
currentProduct,
relativePath,
fullUrl,
status,
} = useMainContext()
const { t } = useTranslation(['meta', 'scroll_button'])
const router = useRouter()
const metaDescription = page.introPlainText ? page.introPlainText : t('default_description')
const { languages } = useLanguages()
// This is only true when we do search indexing which renders every page
// just to be able to `cheerio` load the main body (and the meta
// keywords tag).
if (MINIMAL_RENDER) {
return (
<div>
<Head>
<title>{page.fullTitle}</title>
</Head>
{/* For local site search indexing */}
<div className="d-none d-xl-block" data-search="breadcrumbs">
<Breadcrumbs />
</div>
<main id="main-content" style={{ scrollMarginTop: '5rem' }}>
{props.children}
</main>
</div>
)
}
return (
<>
<Head>
{error === '404' ? (
<title>{t('oops')}</title>
) : (!isHomepageVersion && page.fullTitle) ||
(currentPathWithoutLanguage.includes('enterprise-server') && page.fullTitle) ? (
<title>{page.fullTitle}</title>
) : null}
{/* For Google and Bots */}
<meta name="description" content={metaDescription} />
{page.hidden && <meta name="robots" content="noindex" />}
{Object.values(languages)
.filter((lang) => lang.code !== router.locale)
.map((variant) => {
return (
<link
key={variant.code}
rel="alternate"
hrefLang={variant.hreflang || variant.code}
href={`https://docs.github.com/${variant.code}${
router.asPath === '/' ? '' : router.asPath
}`}
/>
)
})}
{/* For local site search indexing */}
{page.topics.length > 0 && <meta name="keywords" content={page.topics.join(',')} />}
{/* For analytics events */}
{router.locale && <meta name="path-language" content={router.locale} />}
{currentVersion && <meta name="path-version" content={currentVersion} />}
{currentProduct && <meta name="path-product" content={currentProduct.id} />}
{relativePath && (
<meta
name="path-article"
content={relativePath.replace('/index.md', '').replace('.md', '')}
/>
)}
{page.type && <meta name="page-type" content={page.type} />}
{page.documentType && <meta name="page-document-type" content={page.documentType} />}
{status && <meta name="status" content={status.toString()} />}
{/* OpenGraph data */}
{page.fullTitle && (
<>
<meta property="og:site_name" content="GitHub Docs" />
<meta property="og:title" content={page.fullTitle} />
<meta property="og:type" content="article" />
<meta property="og:url" content={fullUrl} />
<meta
property="og:image"
content="https://github.githubassets.com/images/modules/open_graph/github-logo.png"
/>
</>
)}
</Head>
<a
href="#main-content"
className="visually-hidden skip-button color-bg-accent-emphasis color-fg-on-emphasis"
>
Skip to main content
</a>
<Header />
<div className="d-lg-flex">
{isHomepageVersion ? null : <SidebarNav />}
{/* Need to set an explicit height for sticky elements since we also
set overflow to auto */}
<div className="flex-column flex-1 min-width-0">
<main id="main-content" style={{ scrollMarginTop: '5rem' }}>
<DeprecationBanner />
<RestBanner />
{props.children}
</main>
<footer data-container="footer">
<SupportSection />
<LegalFooter />
<ScrollButton
className="position-fixed bottom-0 mb-4 right-0 mr-4 z-1"
ariaLabel={t('scroll_to_top')}
/>
</footer>
</div>
</div>
</>
)
}