forked from github/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeader.tsx
185 lines (167 loc) · 6.49 KB
/
Header.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
import { useEffect, useState } from 'react'
import cx from 'classnames'
import { useRouter } from 'next/router'
import { MarkGithubIcon, ThreeBarsIcon, XIcon } from '@primer/octicons-react'
import { DEFAULT_VERSION, useVersion } from 'components/hooks/useVersion'
import { Link } from 'components/Link'
import { useMainContext } from 'components/context/MainContext'
import { useHasAccount } from 'components/hooks/useHasAccount'
import { LanguagePicker } from './LanguagePicker'
import { HeaderNotifications } from 'components/page-header/HeaderNotifications'
import { ProductPicker } from 'components/page-header/ProductPicker'
import { useTranslation } from 'components/hooks/useTranslation'
import { Search } from 'components/Search'
import { BasicSearch } from 'components/BasicSearch'
import { VersionPicker } from 'components/page-header/VersionPicker'
import { Breadcrumbs } from './Breadcrumbs'
import styles from './Header.module.scss'
export const Header = () => {
const router = useRouter()
const { error } = useMainContext()
const { currentVersion } = useVersion()
const { t } = useTranslation(['header', 'homepage'])
const [isMenuOpen, setIsMenuOpen] = useState(
router.pathname !== '/' && router.query.query && true
)
const [scroll, setScroll] = useState(false)
const { hasAccount } = useHasAccount()
const signupCTAVisible =
hasAccount === false && // don't show if `null`
(currentVersion === DEFAULT_VERSION || currentVersion === 'enterprise-cloud@latest')
useEffect(() => {
function onScroll() {
setScroll(window.scrollY > 10)
}
window.addEventListener('scroll', onScroll)
return () => {
window.removeEventListener('scroll', onScroll)
}
}, [])
useEffect(() => {
const close = (e: { key: string }) => {
if (e.key === 'Escape') {
setIsMenuOpen(false)
}
}
window.addEventListener('keydown', close)
return () => window.removeEventListener('keydown', close)
}, [])
// If you're on `/pt/search` the `router.asPath` will be `/search`
// but `/pt/search` is just shorthand for `/pt/free-pro-team@latest/search`
// so we need to make exception to that.
const onSearchResultPage =
currentVersion === DEFAULT_VERSION
? router.asPath.split('?')[0] === '/search'
: router.asPath.split('?')[0] === `/${currentVersion}/search`
const SearchComponent = onSearchResultPage ? BasicSearch : Search
return (
<div
className={cx(
'border-bottom d-unset color-border-muted no-print z-3 color-bg-default',
styles.header
)}
>
{error !== '404' && <HeaderNotifications />}
<header
className={cx(
'color-bg-default px-3 px-md-6 pt-3 pb-3 position-sticky top-0 z-3 border-bottom',
scroll && 'color-shadow-small',
styles.fullVerticalScroll
)}
>
{/* desktop header */}
<div
className="d-none d-lg-flex flex-justify-end flex-items-center flex-wrap flex-xl-nowrap"
data-testid="desktop-header"
>
<div
className={cx('mr-auto width-full width-xl-auto', scroll && styles.breadcrumbs)}
data-search="breadcrumbs"
>
<Breadcrumbs />
</div>
<div className="d-flex flex-items-center">
<VersionPicker />
<LanguagePicker />
{signupCTAVisible && (
<a
href="https://github.com/signup?ref_cta=Sign+up&ref_loc=docs+header&ref_page=docs"
target="_blank"
rel="noopener"
className="ml-3 btn color-fg-muted"
>
{t`sign_up_cta`}
</a>
)}
{/* <!-- GitHub.com homepage and 404 page has a stylized search; Enterprise homepages do not --> */}
{error !== '404' && (
<div className="d-inline-block ml-3">
<SearchComponent iconSize={16} isHeaderSearch={true} />
</div>
)}
</div>
</div>
{/* mobile header */}
<div className="d-lg-none" data-testid="mobile-header">
<div className="d-flex flex-justify-between">
<div className="d-flex flex-items-center" id="github-logo-mobile">
<Link aria-hidden="true" tabIndex={-1} href={`/${router.locale}`}>
<MarkGithubIcon size={32} className="color-fg-default" />
</Link>
<Link
href={`/${router.locale}`}
className="f4 text-semibold color-fg-default no-underline no-wrap pl-2"
>
{t('github_docs')}
</Link>
</div>
<nav>
<button
className="btn"
data-testid="mobile-menu-button"
onClick={() => setIsMenuOpen(!isMenuOpen)}
aria-label="Navigation Menu"
aria-expanded={isMenuOpen ? 'true' : 'false'}
>
{isMenuOpen ? <XIcon size="small" /> : <ThreeBarsIcon size="small" />}
</button>
</nav>
</div>
{/* mobile menu contents */}
<div className="relative">
<div
className={cx('width-full position-sticky top-0', isMenuOpen ? 'd-block' : 'd-none')}
>
<div className="my-4">
<Breadcrumbs />
</div>
<ProductPicker />
<div className="border-top my-2" />
<VersionPicker variant="inline" />
<div className="border-top my-2" />
<LanguagePicker variant="inline" />
{signupCTAVisible && (
<a
href="https://github.com/signup?ref_cta=Sign+up&ref_loc=docs+header&ref_page=docs"
target="_blank"
rel="noopener"
className="mt-3 py-2 btn color-fg-muted d-block"
>
{t`sign_up_cta`}
</a>
)}
{/* <!-- GitHub.com homepage and 404 page has a stylized search; Enterprise homepages do not --> */}
{error !== '404' && (
<div className="my-2 pt-2">
<SearchComponent iconSize={16} isMobileSearch={true} />
</div>
)}
</div>
</div>
</div>
</header>
{/* Adding Portal Root here for DropdownMenu and ActionList Search Results */}
<div id="__primerPortalRoot__" className={cx(styles.portalRoot)} />
</div>
)
}