1
0
mirror of synced 2025-12-22 11:26:57 -05:00
Files
docs/components/page-header/Header.tsx
2023-04-07 17:12:11 +00:00

379 lines
15 KiB
TypeScript

import { useCallback, useEffect, useRef, useState } from 'react'
import cx from 'classnames'
import { useRouter } from 'next/router'
import { AnchoredOverlay, Button, Dialog, IconButton } from '@primer/react'
import {
KebabHorizontalIcon,
LinkExternalIcon,
MarkGithubIcon,
SearchIcon,
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 { ApiVersionPicker } from 'components/sidebar/ApiVersionPicker'
import { useTranslation } from 'components/hooks/useTranslation'
import { Search } from 'src/search/components/Search'
import { Breadcrumbs } from 'components/page-header/Breadcrumbs'
import { VersionPicker } from 'components/page-header/VersionPicker'
import { SidebarNav } from 'components/sidebar/SidebarNav'
import { AllProductsLink } from 'components/sidebar/AllProductsLink'
import styles from './Header.module.scss'
export const Header = () => {
const router = useRouter()
const { error } = useMainContext()
const { isHomepageVersion, currentProduct, currentProductTree, allVersions } = useMainContext()
const { currentVersion } = useVersion()
const { t } = useTranslation(['header'])
const isRestPage = currentProduct && currentProduct.id === 'rest'
const [isSearchOpen, setIsSearchOpen] = useState(false)
const [scroll, setScroll] = useState(false)
const { hasAccount } = useHasAccount()
const [isMenuOpen, setIsMenuOpen] = useState(false)
const openMenuOverlay = useCallback(() => setIsMenuOpen(true), [setIsMenuOpen])
const closeMenuOverlay = useCallback(() => setIsMenuOpen(false), [setIsMenuOpen])
const [isSidebarOpen, setIsSidebarOpen] = useState(false)
const openSidebar = useCallback(() => setIsSidebarOpen(true), [isSidebarOpen])
const closeSidebar = useCallback(() => setIsSidebarOpen(false), [isSidebarOpen])
const isMounted = useRef(false)
const menuButtonRef = useRef<HTMLButtonElement>(null)
const { asPath } = useRouter()
const isSearchResultsPage = router.route === '/search'
const signupCTAVisible =
hasAccount === false && // don't show if `null`
(currentVersion === DEFAULT_VERSION || currentVersion === 'enterprise-cloud@latest')
const productTitle = currentProductTree?.shortTitle || currentProductTree?.title
const [windowSize, setWindowSize] = useState(0)
const handleWindowResize = useCallback(() => {
setWindowSize(window.innerWidth)
}, [])
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)
}, [])
// For the UI in smaller browswer widths, and focus the picker menu button when the search
// input is closed.
useEffect(() => {
if (!isSearchOpen && isMounted.current && menuButtonRef.current) {
menuButtonRef.current.focus()
}
if (!isMounted.current) {
isMounted.current = true
}
}, [isSearchOpen])
// 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 && windowSize < 1280 ? 'hidden' : 'auto'
}
window.addEventListener('resize', handleWindowResize)
return () => window.removeEventListener('resize', handleWindowResize)
}, [isSidebarOpen, windowSize])
// 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)
}
}, [])
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 p-2 position-sticky top-0 z-1 border-bottom',
scroll && 'color-shadow-small'
)}
>
<div
className="d-flex flex-justify-between p-2 flex-items-center flex-wrap"
data-testid="desktop-header"
>
<div
tabIndex={-1}
className={cx(isSearchOpen ? styles.logoWithOpenSearch : styles.logoWithClosedSearch)}
id="github-logo"
>
<Link
href={`/${router.locale}`}
className="d-flex flex-items-center color-fg-default no-underline mr-3"
>
<MarkGithubIcon size={32} />
<span className="h4 text-semibold ml-2">{t('github_docs')}</span>
</Link>
<div className="hide-sm border-left">
<VersionPicker />
</div>
</div>
<div
className={cx('d-flex flex-items-center', isSearchOpen && styles.widgetsContainer)}
>
{/* <!-- GitHub.com homepage and 404 page has a stylized search; Enterprise homepages do not --> */}
{error !== '404' && (
<div
className={cx(
isSearchOpen
? styles.searchContainerWithOpenSearch
: styles.searchContainerWithClosedSearch,
'mr-3'
)}
>
<Search />
</div>
)}
<div className={cx('d-none d-lg-flex flex-items-center', signupCTAVisible && 'mr-3')}>
<LanguagePicker />
</div>
{signupCTAVisible && (
<div data-testid="header-signup" className="border-left">
<a
href="https://github.com/signup?ref_cta=Sign+up&ref_loc=docs+header&ref_page=docs"
target="_blank"
rel="noopener"
className="d-none d-lg-flex ml-3 btn color-fg-muted"
>
{t`sign_up_cta`}
</a>
</div>
)}
<IconButton
className={cx(
'hide-lg hide-xl',
!isSearchOpen ? 'd-flex flex-items-center' : 'd-none'
)}
data-testid="mobile-search-button"
onClick={() => setIsSearchOpen(!isSearchOpen)}
aria-label="Open Search Bar"
aria-expanded={isSearchOpen ? 'true' : 'false'}
icon={SearchIcon}
/>
<IconButton
className="px-3"
data-testid="mobile-search-button"
onClick={() => setIsSearchOpen(!isSearchOpen)}
aria-label="Close Search Bar"
aria-expanded={isSearchOpen ? 'true' : 'false'}
icon={XIcon}
sx={
isSearchOpen
? {
// The x button to close the small width search UI when search is open, as the
// browser width increases to md and above we no longer show that search UI so
// the close search button is hidden as well.
// breakpoint(md)
'@media (min-width: 768px)': {
display: 'none',
},
}
: {
display: 'none',
}
}
/>
{/* The ... navigation menu at medium and smaller widths */}
<div>
<AnchoredOverlay
anchorRef={menuButtonRef}
renderAnchor={(anchorProps) => (
<Button
data-testid="mobile-menu"
className="px-2"
{...anchorProps}
icon={KebabHorizontalIcon}
aria-label="Open Menu Bar"
sx={
isSearchOpen
? // The ... menu button when the smaller width search UI is open. Since the search
// UI is open, we don't show the button at smaller widths but we do show it as
// the browser width increases to md, and then at lg and above widths we hide
// the button again since the pickers and sign-up button are shown in the header.
{
marginLeft: '8px',
display: 'none',
// breakpoint(md)
'@media (min-width: 768px)': {
display: 'inline-block',
marginLeft: '4px',
},
// breakpoint(lg)
'@media (min-width: 1012px)': {
display: 'none',
},
}
: // The ... menu button when the smaller width search UI is closed, the button is
// shown up to md. At lg and above we don't show the button since the pickers
// and sign-up button are shown in the header.
{
marginLeft: '16px',
'@media (min-width: 768px)': {
marginLeft: '0',
},
'@media (min-width: 1012px)': {
display: 'none',
},
}
}
>
{}
</Button>
)}
open={isMenuOpen}
onOpen={openMenuOverlay}
onClose={closeMenuOverlay}
aria-labelledby="menu-title"
>
<div
data-testid="open-mobile-menu"
className={cx('pt-2', !signupCTAVisible && 'pb-2', styles.menuOverlay)}
>
<span id="menu-title" className="f6 px-3 py-2 mb-1 d-block h6 color-fg-muted">
{t('menu')}
</span>
<span className="px-2 pb-2 m-2 d-block d-sm-none">
<VersionPicker mediumOrLower={true} />
</span>
<span className="px-2 pb-2 m-2 d-block">
<LanguagePicker mediumOrLower={true} />
</span>
{isRestPage && allVersions[currentVersion].apiVersions.length > 0 && (
<span className="px-2 pb-2 m-2 d-block">
<ApiVersionPicker />
</span>
)}
{signupCTAVisible && (
<Link
href="https://github.com/signup?ref_cta=Sign+up&ref_loc=docs+header&ref_page=docs"
target="_blank"
rel="noopener"
data-testid="mobile-signup"
className="d-flex flex-justify-between flex-items-center color-fg-muted border-top px-3 py-3"
>
{t`sign_up_cta`}
<LinkExternalIcon aria-label="(external site)" />
</Link>
)}
</div>
</AnchoredOverlay>
</div>
</div>
</div>
{!isHomepageVersion && !isSearchResultsPage && (
<div className="d-flex flex-items-center d-xl-none mt-2">
<div className={cx(styles.sidebarOverlayCloseButtonContainer, 'mr-2')}>
<IconButton
data-testid="sidebar-hamburger"
className="color-fg-muted"
variant="invisible"
icon={ThreeBarsIcon}
aria-label="Open Sidebar"
onClick={openSidebar}
/>
<Dialog
isOpen={isSidebarOpen}
onDismiss={closeSidebar}
aria-labelledby="menu-title"
sx={{
position: 'fixed',
top: '0',
left: '0',
marginTop: '0',
maxHeight: '100vh',
width: 'auto !important',
transform: 'none',
borderRadius: '0',
borderRight: '1px solid var(--color-border-default)',
}}
>
<Dialog.Header
style={{ paddingTop: '0px', background: 'none' }}
id="sidebar-overlay-header"
sx={{ display: 'block' }}
>
<AllProductsLink />
{error === '404' ||
!currentProduct ||
isSearchResultsPage ||
!currentProductTree ? null : (
<div className="mt-3">
<Link
data-testid="sidebar-product-dialog"
href={currentProductTree.href}
className="d-block pl-1 mb-2 h3 color-fg-default no-underline"
>
{productTitle}
</Link>
</div>
)}
{isRestPage && <ApiVersionPicker />}
</Dialog.Header>
<SidebarNav variant="overlay" />
</Dialog>
</div>
<div className="mr-auto width-full" data-search="breadcrumbs">
<Breadcrumbs inHeader={true} />
</div>
</div>
)}
</header>
</div>
</>
)
}