2023-07-29 22:40:36 +00:00
|
|
|
'use client'
|
|
|
|
|
2023-02-15 20:33:47 +00:00
|
|
|
import {useEffect, useRef} from 'react'
|
2023-07-29 22:40:36 +00:00
|
|
|
import {usePathname} from 'next/navigation'
|
2023-01-14 19:31:05 +00:00
|
|
|
import {Container} from './Container'
|
2023-07-29 22:40:36 +00:00
|
|
|
import {ThemeButton} from '@/components/ui/ThemeButton'
|
|
|
|
import {DesktopNavigation, MobileNavigation} from '@/components/ui/Navigation'
|
2023-05-28 20:15:39 +00:00
|
|
|
import {Avatar, AvatarContainer} from '@/components/ui/Avatar'
|
2022-12-06 12:54:34 +00:00
|
|
|
|
2023-01-14 19:31:05 +00:00
|
|
|
function clamp(num: number, a: number, b: number) {
|
2022-12-06 12:54:34 +00:00
|
|
|
let min = Math.min(a, b)
|
|
|
|
let max = Math.max(a, b)
|
2023-01-14 19:31:05 +00:00
|
|
|
return Math.min(Math.max(num, min), max)
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export function Header() {
|
2023-07-29 22:40:36 +00:00
|
|
|
const pathname = usePathname()
|
|
|
|
const isHomePage = pathname === '/'
|
2023-01-14 19:31:05 +00:00
|
|
|
|
|
|
|
const headerRef = useRef<HTMLDivElement>(null)
|
|
|
|
const avatarRef = useRef<HTMLImageElement>(null)
|
|
|
|
const isInitial = useRef(true)
|
2022-12-06 12:54:34 +00:00
|
|
|
|
2023-01-14 19:31:05 +00:00
|
|
|
const headerPosition: Object = {
|
|
|
|
position: 'var(--header-position)'
|
|
|
|
}
|
|
|
|
const headerInnerPosition: Object = {
|
|
|
|
position: 'var(--header-inner-position)'
|
|
|
|
}
|
2022-12-06 12:54:34 +00:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
let downDelay = avatarRef.current?.offsetTop ?? 0
|
|
|
|
let upDelay = 64
|
|
|
|
|
2023-01-14 19:31:05 +00:00
|
|
|
function setProperty(property: string, value: string) {
|
|
|
|
document.documentElement.style.setProperty(property, value.toString())
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
2023-01-14 19:31:05 +00:00
|
|
|
function removeProperty(property: string) {
|
2022-12-06 12:54:34 +00:00
|
|
|
document.documentElement.style.removeProperty(property)
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateHeaderStyles() {
|
2023-01-14 19:31:05 +00:00
|
|
|
const headerBoundingRect = headerRef.current?.getBoundingClientRect()
|
|
|
|
let top = headerBoundingRect?.top!
|
|
|
|
let height = headerBoundingRect?.height!
|
|
|
|
|
2022-12-06 12:54:34 +00:00
|
|
|
let scrollY = clamp(
|
|
|
|
window.scrollY,
|
|
|
|
0,
|
|
|
|
document.body.scrollHeight - window.innerHeight
|
|
|
|
)
|
|
|
|
|
|
|
|
if (isInitial.current) {
|
|
|
|
setProperty('--header-position', 'sticky')
|
|
|
|
}
|
|
|
|
|
|
|
|
setProperty('--content-offset', `${downDelay}px`)
|
|
|
|
|
|
|
|
if (isInitial.current || scrollY < downDelay) {
|
|
|
|
setProperty('--header-height', `${downDelay + height}px`)
|
|
|
|
setProperty('--header-mb', `${-downDelay}px`)
|
|
|
|
} else if (top + height < -upDelay) {
|
|
|
|
let offset = Math.max(height, scrollY - upDelay)
|
|
|
|
setProperty('--header-height', `${offset}px`)
|
|
|
|
setProperty('--header-mb', `${height - offset}px`)
|
|
|
|
} else if (top === 0) {
|
|
|
|
setProperty('--header-height', `${scrollY + height}px`)
|
|
|
|
setProperty('--header-mb', `${-scrollY}px`)
|
|
|
|
}
|
|
|
|
|
|
|
|
if (top === 0 && scrollY > 0 && scrollY >= downDelay) {
|
|
|
|
setProperty('--header-inner-position', 'fixed')
|
|
|
|
removeProperty('--header-top')
|
|
|
|
removeProperty('--avatar-top')
|
|
|
|
} else {
|
|
|
|
removeProperty('--header-inner-position')
|
|
|
|
setProperty('--header-top', '0px')
|
|
|
|
setProperty('--avatar-top', '0px')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateAvatarStyles() {
|
|
|
|
if (!isHomePage) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
let fromScale = 1
|
|
|
|
let toScale = 36 / 64
|
|
|
|
let fromX = 0
|
|
|
|
let toX = 2 / 16
|
|
|
|
|
|
|
|
let scrollY = downDelay - window.scrollY
|
|
|
|
|
|
|
|
let scale = (scrollY * (fromScale - toScale)) / downDelay + toScale
|
|
|
|
scale = clamp(scale, fromScale, toScale)
|
|
|
|
|
|
|
|
let x = (scrollY * (fromX - toX)) / downDelay + toX
|
|
|
|
x = clamp(x, fromX, toX)
|
|
|
|
|
|
|
|
setProperty(
|
|
|
|
'--avatar-image-transform',
|
|
|
|
`translate3d(${x}rem, 0, 0) scale(${scale})`
|
|
|
|
)
|
|
|
|
|
|
|
|
let borderScale = 1 / (toScale / scale)
|
|
|
|
let borderX = (-toX + x) * borderScale
|
|
|
|
let borderTransform = `translate3d(${borderX}rem, 0, 0) scale(${borderScale})`
|
|
|
|
|
|
|
|
setProperty('--avatar-border-transform', borderTransform)
|
2023-01-14 19:31:05 +00:00
|
|
|
setProperty('--avatar-border-opacity', (scale === toScale ? 1 : 0).toString())
|
2022-12-06 12:54:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function updateStyles() {
|
|
|
|
updateHeaderStyles()
|
|
|
|
updateAvatarStyles()
|
|
|
|
isInitial.current = false
|
|
|
|
}
|
|
|
|
|
|
|
|
updateStyles()
|
2023-01-14 19:31:05 +00:00
|
|
|
|
|
|
|
const opts: AddEventListenerOptions & EventListenerOptions = {passive: true}
|
2024-09-17 14:04:30 +00:00
|
|
|
|
|
|
|
if (isHomePage) {
|
|
|
|
window.addEventListener('scroll', updateStyles, opts)
|
|
|
|
window.addEventListener('resize', updateStyles)
|
|
|
|
}
|
2022-12-06 12:54:34 +00:00
|
|
|
|
|
|
|
return () => {
|
2023-01-14 19:31:05 +00:00
|
|
|
window.removeEventListener('scroll', updateStyles, opts)
|
2022-12-06 12:54:34 +00:00
|
|
|
window.removeEventListener('resize', updateStyles)
|
|
|
|
}
|
|
|
|
}, [isHomePage])
|
|
|
|
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<header
|
|
|
|
className="pointer-events-none relative z-50 flex flex-col"
|
|
|
|
style={{
|
|
|
|
height: 'var(--header-height)',
|
|
|
|
marginBottom: 'var(--header-mb)',
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
{isHomePage && (
|
|
|
|
<>
|
|
|
|
<div
|
|
|
|
ref={avatarRef}
|
|
|
|
className="order-last mt-[calc(theme(spacing.16)-theme(spacing.3))]"
|
|
|
|
/>
|
|
|
|
<Container
|
|
|
|
className="top-0 order-last -mb-3 pt-3"
|
|
|
|
style={{position: 'var(--header-position)'}}
|
|
|
|
>
|
2023-01-14 19:31:05 +00:00
|
|
|
<div className="top-[var(--avatar-top,theme(spacing.3))] w-full"
|
|
|
|
style={headerInnerPosition}>
|
2022-12-06 12:54:34 +00:00
|
|
|
<div className="relative">
|
|
|
|
<AvatarContainer
|
|
|
|
className="absolute left-0 top-3 origin-left transition-opacity"
|
|
|
|
style={{
|
|
|
|
opacity: 'var(--avatar-border-opacity, 0)',
|
|
|
|
transform: 'var(--avatar-border-transform)',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
<Avatar
|
|
|
|
large
|
|
|
|
className="block h-16 w-16 origin-left"
|
|
|
|
style={{transform: 'var(--avatar-image-transform)'}}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Container>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
<div
|
|
|
|
ref={headerRef}
|
|
|
|
className="top-0 z-10 h-16 pt-6"
|
2023-01-14 19:31:05 +00:00
|
|
|
style={headerPosition}
|
2022-12-06 12:54:34 +00:00
|
|
|
>
|
|
|
|
<Container
|
|
|
|
className="top-[var(--header-top,theme(spacing.6))] w-full"
|
|
|
|
style={{position: 'var(--header-inner-position)'}}
|
|
|
|
>
|
|
|
|
<div className="relative flex gap-4">
|
|
|
|
<div className="flex flex-1">
|
|
|
|
{!isHomePage && (
|
|
|
|
<AvatarContainer>
|
|
|
|
<Avatar/>
|
|
|
|
</AvatarContainer>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div className="flex flex-1 justify-end md:justify-center">
|
|
|
|
<MobileNavigation className="pointer-events-auto md:hidden"/>
|
|
|
|
<DesktopNavigation className="pointer-events-auto hidden md:block"/>
|
|
|
|
</div>
|
|
|
|
<div className="flex justify-end md:flex-1">
|
|
|
|
<div className="pointer-events-auto">
|
2023-07-29 22:40:36 +00:00
|
|
|
<ThemeButton/>
|
2022-12-06 12:54:34 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</Container>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
{isHomePage && <div style={{height: 'var(--content-offset)'}}/>}
|
|
|
|
</>
|
|
|
|
)
|
|
|
|
}
|