-
Notifications
You must be signed in to change notification settings - Fork 68.1k
Expand file tree
/
Copy pathHeader.tsx
More file actions
269 lines (252 loc) · 9.96 KB
/
Copy pathHeader.tsx
File metadata and controls
269 lines (252 loc) · 9.96 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
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
import { useCallback, useEffect, useRef, useState } from 'react'
import type { JSX } from 'react'
import cx from 'classnames'
import { useRouter } from 'next/router'
import { Dialog, IconButton } from '@primer/react'
import { MarkGithubIcon, ThreeBarsIcon } from '@primer/octicons-react'
import { DEFAULT_VERSION, useVersion } from '@/versions/components/useVersion'
import { Link } from '@/frame/components/Link'
import { useMainContext } from '@/frame/components/context/MainContext'
import { HeaderNotifications } from '@/frame/components/page-header/HeaderNotifications'
import { ApiVersionPicker } from '@/rest/components/ApiVersionPicker'
import { useTranslation } from '@/languages/components/useTranslation'
import { Breadcrumbs } from '@/frame/components/page-header/Breadcrumbs'
import { VersionPicker } from '@/versions/components/VersionPicker'
import { SidebarNav } from '@/frame/components/sidebar/SidebarNav'
import { SearchBarButton } from '@/search/components/input/SearchBarButton'
import { HeaderSearchAndWidgets } from './HeaderSearchAndWidgets'
import { useInnerWindowWidth } from './hooks/useInnerWindowWidth'
import { useMultiQueryParams } from '@/search/components/hooks/useMultiQueryParams'
import { SearchOverlayContainer } from '@/search/components/input/SearchOverlayContainer'
import { useSearchOverlayContext } from '@/search/components/context/SearchOverlayContext'
import styles from './Header.module.scss'
export const Header = () => {
const router = useRouter()
const { error } = useMainContext()
const { isHomepageVersion, currentProduct, currentProductName } = useMainContext()
const { currentVersion } = useVersion()
const { t } = useTranslation(['header'])
const isRestPage = currentProduct && currentProduct.id === 'rest'
const { params, updateParams } = useMultiQueryParams()
const [scroll, setScroll] = useState(false)
const [isSidebarOpen, setIsSidebarOpen] = useState(false)
const openSidebar = useCallback(() => setIsSidebarOpen(true), [])
const closeSidebar = useCallback(() => setIsSidebarOpen(false), [])
const isMounted = useRef(false)
const menuButtonRef = useRef<HTMLButtonElement>(null)
const { asPath } = useRouter()
const isSearchResultsPage = router.route === '/search'
const isEarlyAccessPage = currentProduct && currentProduct.id === 'early-access'
const { width } = useInnerWindowWidth()
const returnFocusRef = useRef(null)
const searchButtonRefLarge = useRef<HTMLButtonElement>(null)
const searchButtonRefSmall = useRef<HTMLButtonElement>(null)
const { isSearchOpen, setIsSearchOpen } = useSearchOverlayContext()
// The lg breakpoint (1012px) determines which search button is visible.
// Pass the correct ref to SearchOverlayContainer so Primer's Overlay
// restores focus to the visible trigger element on close.
const isLargeViewport = width !== null && width >= 1012
const searchButtonRef = isLargeViewport ? searchButtonRefLarge : searchButtonRefSmall
const SearchButtonLarge: JSX.Element = (
<SearchBarButton
isSearchOpen={isSearchOpen}
setIsSearchOpen={setIsSearchOpen}
params={params}
searchButtonRef={searchButtonRefLarge}
instanceId="large"
/>
)
const SearchButtonSmall: JSX.Element = (
<SearchBarButton
isSearchOpen={isSearchOpen}
setIsSearchOpen={setIsSearchOpen}
params={params}
searchButtonRef={searchButtonRefSmall}
instanceId="small"
/>
)
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') {
setIsSearchOpen(false)
}
}
window.addEventListener('keydown', close)
return () => window.removeEventListener('keydown', close)
}, [])
// Pressing "/" anywhere on the page opens the search overlay, matching the
// shortcut on github.com. Ignore the key when the user is typing in a form
// field or editable element so we never swallow a literal "/", and when a
// modifier is held so we don't clash with browser or OS shortcuts.
useEffect(() => {
const openOnSlash = (e: KeyboardEvent) => {
if (e.key !== '/' || e.ctrlKey || e.metaKey || e.altKey) {
return
}
const target = e.target as HTMLElement | null
const tagName = target?.tagName
if (
tagName === 'INPUT' ||
tagName === 'TEXTAREA' ||
tagName === 'SELECT' ||
target?.isContentEditable
) {
return
}
e.preventDefault()
setIsSearchOpen(true)
}
window.addEventListener('keydown', openOnSlash)
return () => window.removeEventListener('keydown', openOnSlash)
}, [])
// For the UI in smaller browser widths, focus the picker menu button when
// the sidebar is closed (not when the search overlay is closed — the
// overlay's returnFocusRef handles focus restoration to the search button).
useEffect(() => {
if (!isSidebarOpen && isMounted.current && menuButtonRef.current) {
menuButtonRef.current.focus()
}
if (!isMounted.current) {
isMounted.current = true
}
}, [isSidebarOpen])
// When the sidebar overlay is opened, prevent the main content from being
// scrollable.
useEffect(() => {
const bodyDiv = document.querySelector('body div') as HTMLElement
const body = document.querySelector('body')
if (bodyDiv && body) {
// The full sidebar automatically shows at the xl window size so unlock
// scrolling if the overlay was opened and the window size is increased to xl.
body.style.overflow = isSidebarOpen && width && width < 1280 ? 'hidden' : 'auto'
}
}, [isSidebarOpen])
// with client side navigation clicking sidebar overlay links doesn't dismiss
// the overlay so we close it ourselves when the path changes
useEffect(() => {
setIsSidebarOpen(false)
}, [asPath])
// on REST pages there are sidebar links that are hash anchor links to different
// sections on the same page so the sidebar overlay doesn't dismiss. we listen
// for hash changes and close the overlay when the hash changes.
useEffect(() => {
const hashChangeHandler = () => {
setIsSidebarOpen(false)
}
window.addEventListener('hashchange', hashChangeHandler)
return () => {
window.removeEventListener('hashchange', hashChangeHandler)
}
}, [])
let homeURL = `/${router.locale}`
if (currentVersion !== DEFAULT_VERSION) {
homeURL += `/${currentVersion}`
}
return (
<div
data-container="header"
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 p-2 position-sticky top-0 z-2 border-bottom',
scroll && 'color-shadow-small',
)}
role="banner"
aria-label="Main"
>
<div
className={cx(
'd-flex flex-justify-between p-2 flex-items-center flex-wrap',
styles.headerContainer,
)}
data-testid="desktop-header"
>
<div
tabIndex={-1}
className={cx(isSearchOpen ? styles.logoWithOpenSearch : styles.logoWithClosedSearch)}
id="github-logo"
>
<Link
href={homeURL}
className="d-flex flex-items-center color-fg-default no-underline mr-3"
>
<MarkGithubIcon size={32} />
<span className="h4 text-semibold ml-2 mr-3">{t('github_docs')}</span>
</Link>
<div className="hide-sm border-left pl-3 d-flex flex-items-center">
<VersionPicker />
{/* In larger viewports, we want to show the search bar next to the version picker */}
<div className={styles.displayOverLarge}>{SearchButtonLarge}</div>
</div>
</div>
<HeaderSearchAndWidgets
isSearchOpen={isSearchOpen}
SearchButton={SearchButtonSmall}
width={width}
/>
</div>
{!isHomepageVersion && !isSearchResultsPage && (
<div className="d-flex flex-items-center d-xxl-none mt-2" data-testid="header-subnav">
{!isEarlyAccessPage && (
<div
className={cx(styles.sidebarOverlayCloseButtonContainer, 'mr-2')}
data-testid="header-subnav-hamburger"
>
<IconButton
data-testid="sidebar-hamburger"
className="color-fg-muted"
variant="invisible"
icon={ThreeBarsIcon}
aria-label="Open Sidebar"
onClick={openSidebar}
ref={returnFocusRef}
/>
{isSidebarOpen && (
<Dialog
returnFocusRef={returnFocusRef}
onClose={closeSidebar}
className={cx(styles.dialog, 'd-xxl-none')}
position="left"
title={
error === '404' || !currentProduct || isSearchResultsPage
? null
: currentProductName || currentProduct.name
}
subtitle={isRestPage && <ApiVersionPicker />}
width="medium"
>
<SidebarNav variant="overlay" />
</Dialog>
)}
</div>
)}
<div className="mr-auto width-full" data-search="breadcrumbs">
<Breadcrumbs inHeader={true} />
</div>
</div>
)}
<SearchOverlayContainer
isSearchOpen={isSearchOpen}
setIsSearchOpen={setIsSearchOpen}
params={params}
updateParams={updateParams}
searchButtonRef={searchButtonRef}
/>
</header>
</div>
)
}