Something went wrong. Try again.
Bluesky app fork with some witchin' additions 💫 forked from jollywhoppers.com/witchsky.app
Something went wrong. Try again.
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200import React, {useCallback, useEffect} from 'react'import {type NativeScrollEvent} from 'react-native'import { clamp, interpolate, useSharedValue, withSpring,} from 'react-native-reanimated'import EventEmitter from 'eventemitter3'
import {ScrollProvider} from '#/lib/ScrollContext'import {useMinimalShellMode} from '#/state/shell'import {useShellLayout} from '#/state/shell/shell-layout'import {IS_NATIVE, IS_WEB} from '#/env'
const WEB_HIDE_SHELL_THRESHOLD = 200
export function MainScrollProvider({children}: {children: React.ReactNode}) { const {headerHeight} = useShellLayout() const {headerMode} = useMinimalShellMode() const startDragOffset = useSharedValue<number | null>(null) const startMode = useSharedValue<number | null>(null) const didJustRestoreScroll = useSharedValue<boolean>(false)
const setMode = React.useCallback( (v: boolean) => { 'worklet' headerMode.set(() => withSpring(v ? 1 : 0, { overshootClamping: true, }), ) }, [headerMode], )
useEffect(() => { if (IS_WEB) { return listenToForcedWindowScroll(() => { startDragOffset.set(null) startMode.set(null) didJustRestoreScroll.set(true) }) } })
const snapToClosestState = useCallback( (e: NativeScrollEvent) => { 'worklet' const offsetY = Math.max(0, e.contentOffset.y) if (IS_NATIVE) { const startDragOffsetValue = startDragOffset.get() if (startDragOffsetValue === null) { return } const didScrollDown = offsetY > startDragOffsetValue startDragOffset.set(null) startMode.set(null) if (offsetY < headerHeight.get()) { // If we're close to the top, show the shell. setMode(false) } else if (didScrollDown) { // Showing the bar again on scroll down feels annoying, so don't. setMode(true) } else { // Snap to whichever state is the closest. setMode(Math.round(headerMode.get()) === 1) } } }, [startDragOffset, startMode, setMode, headerMode, headerHeight], )
const onBeginDrag = useCallback( (e: NativeScrollEvent) => { 'worklet' const offsetY = Math.max(0, e.contentOffset.y) if (IS_NATIVE) { startDragOffset.set(offsetY) startMode.set(headerMode.get()) } }, [headerMode, startDragOffset, startMode], )
const onEndDrag = useCallback( (e: NativeScrollEvent) => { 'worklet' if (IS_NATIVE) { if (e.velocity && e.velocity.y !== 0) { // If we detect a velocity, wait for onMomentumEnd to snap. return } snapToClosestState(e) } }, [snapToClosestState], )
const onMomentumEnd = useCallback( (e: NativeScrollEvent) => { 'worklet' if (IS_NATIVE) { snapToClosestState(e) } }, [snapToClosestState], )
const onScroll = useCallback( (e: NativeScrollEvent) => { 'worklet' const offsetY = Math.max(0, e.contentOffset.y) if (IS_NATIVE) { const startDragOffsetValue = startDragOffset.get() const startModeValue = startMode.get() if (startDragOffsetValue === null || startModeValue === null) { if (headerMode.get() !== 0 && offsetY < headerHeight.get()) { // If we're close enough to the top, always show the shell. // Even if we're not dragging. setMode(false) } return }
// The "mode" value is always between 0 and 1. // Figure out how much to move it based on the current dragged distance. const dy = offsetY - startDragOffsetValue const dProgress = interpolate( dy, [-headerHeight.get(), headerHeight.get()], [-1, 1], ) const newValue = clamp(startModeValue + dProgress, 0, 1) if (newValue !== headerMode.get()) { // Manually adjust the value. This won't be (and shouldn't be) animated. headerMode.set(newValue) } } else { if (didJustRestoreScroll.get()) { didJustRestoreScroll.set(false) // Don't hide/show navbar based on scroll restoratoin. return } // On the web, we don't try to follow the drag because we don't know when it ends. // Instead, show/hide immediately based on whether we're scrolling up or down. const dy = offsetY - (startDragOffset.get() ?? 0) startDragOffset.set(offsetY)
if (dy < 0 || offsetY < WEB_HIDE_SHELL_THRESHOLD) { setMode(false) } else if (dy > 0) { setMode(true) } } }, [ headerHeight, headerMode, setMode, startDragOffset, startMode, didJustRestoreScroll, ], )
return ( <ScrollProvider onBeginDrag={onBeginDrag} onEndDrag={onEndDrag} onScroll={onScroll} onMomentumEnd={onMomentumEnd}> {children} </ScrollProvider> )}
const emitter = new EventEmitter()
if (IS_WEB) { const originalScroll = window.scroll window.scroll = function () { emitter.emit('forced-scroll') return originalScroll.apply(this, arguments as any) }
const originalScrollTo = window.scrollTo window.scrollTo = function () { emitter.emit('forced-scroll') return originalScrollTo.apply(this, arguments as any) }}
function listenToForcedWindowScroll(listener: () => void) { emitter.addListener('forced-scroll', listener) return () => { emitter.removeListener('forced-scroll', listener) }}