feat: smooth scroll animation for catalog header
All checks were successful
Build Docker Image / build (push) Successful in 4m41s

- Dynamic top positioning based on scrollY
- Chevron inside SearchBar for expand/collapse
- All layers position:fixed with calculated offsets
This commit is contained in:
Ruslan Bakiev
2026-01-14 22:03:27 +07:00
parent c10c085b70
commit 6f16c862f4
2 changed files with 91 additions and 91 deletions

View File

@@ -1,55 +1,66 @@
/**
* Composable for collapsing header on scroll
* Returns isCollapsed state that becomes true when scroll > threshold
* User can manually override the collapsed state
* Composable for smooth header collapse on scroll
* Returns pixel positions for all fixed layers
*/
export const useScrollCollapse = (threshold = 50) => {
const isCollapsed = ref(false)
export const useScrollCollapse = (headerHeight = 112, searchBarHeight = 48) => {
const scrollY = ref(0)
const manualOverride = ref(false)
// Layer positions in pixels
// Layers 1+2 (MainNav + SubNav): slide up as user scrolls
const headerOffset = computed(() => -Math.min(scrollY.value, headerHeight))
// Layer 3 (SearchBar): slides down to top:0
const searchBarTop = computed(() => Math.max(0, headerHeight - scrollY.value))
// Layer 4 (Map): follows SearchBar, minimum is searchBarHeight
const mapTop = computed(() => Math.max(searchBarHeight, headerHeight + searchBarHeight - scrollY.value))
// Content padding-top
const contentPaddingTop = computed(() => Math.max(searchBarHeight, headerHeight + searchBarHeight - scrollY.value))
// Is header fully collapsed?
const isCollapsed = computed(() => scrollY.value >= headerHeight)
// Expand - scroll to top
const expand = () => {
if (import.meta.client) {
window.scrollTo({ top: 0, behavior: 'smooth' })
}
}
// Collapse - scroll down to hide header
const collapse = () => {
if (import.meta.client) {
window.scrollTo({ top: headerHeight, behavior: 'smooth' })
}
}
const onScroll = () => {
if (import.meta.server) return
scrollY.value = window.scrollY
// Only auto-collapse if user hasn't manually expanded
if (!manualOverride.value) {
isCollapsed.value = scrollY.value > threshold
if (import.meta.client) {
scrollY.value = window.scrollY
}
// Reset manual override when scrolling back to top
if (scrollY.value <= threshold) {
manualOverride.value = false
isCollapsed.value = false
}
}
// Manual expand (user clicked chevron down)
const expand = () => {
isCollapsed.value = false
manualOverride.value = true
}
// Manual collapse (user clicked chevron up)
const collapse = () => {
isCollapsed.value = true
manualOverride.value = false
}
onMounted(() => {
window.addEventListener('scroll', onScroll, { passive: true })
// Initial check
onScroll()
if (import.meta.client) {
window.addEventListener('scroll', onScroll, { passive: true })
onScroll() // Initial value
}
})
onUnmounted(() => {
window.removeEventListener('scroll', onScroll)
if (import.meta.client) {
window.removeEventListener('scroll', onScroll)
}
})
return {
isCollapsed: readonly(isCollapsed),
scrollY: readonly(scrollY),
headerOffset,
searchBarTop,
mapTop,
contentPaddingTop,
isCollapsed,
expand,
collapse
}