import * as React from 'react'; import type { ScrollView } from 'react-native'; import { View } from 'react-native'; import Animated, { useAnimatedStyle } from 'react-native-reanimated'; import { commonStyles } from '../../constants'; import { StickyHeaderScrollView } from '../../primitiveComponents/StickyHeaderScrollView'; import { parseAnimatedColorProp } from '../common/utils/parseAnimatedColorProp'; import type { DetailsHeaderScrollViewProps } from './DetailsHeaderProps'; import { HeaderBar } from './components/HeaderBar'; import { useDetailsHeader } from './hooks/useDetailsHeader'; export const DetailsHeaderScrollView = React.forwardRef( (props, ref) => { const { backgroundColor, children, contentContainerStyle, decelerationRate = 'fast', enableSafeAreaTopInset = true, leftTopIcon, leftTopIconAccessibilityLabel, leftTopIconOnPress, leftTopIconTestID, nestedScrollEnabled = true, overScrollMode = 'never', renderHeader, renderHeaderBar, rightTopIcon, rightTopIconAccessibilityLabel, rightTopIconOnPress, rightTopIconTestID, scrollEventThrottle = 16, title, titleStyle, ...rest } = props; const { headerTitleContainerAnimatedStyle, onMomentumScrollEnd, onScroll, onScrollEndDrag, renderHeader: defaultRenderHeader, scrollViewRef, } = useDetailsHeader(props); React.useImperativeHandle(ref, () => scrollViewRef.current as ScrollView); const wrapperAnimatedStyle = useAnimatedStyle(() => { return { backgroundColor: parseAnimatedColorProp(backgroundColor), }; }, [backgroundColor]); return ( {renderHeaderBar ? ( renderHeaderBar() ) : ( )} {children} ); } );