import * as React from 'react'; import type { SectionList } from 'react-native'; import { View } from 'react-native'; import Animated, { useAnimatedStyle } from 'react-native-reanimated'; import { commonStyles } from '../../constants'; import { StickyHeaderSectionList } from '../../primitiveComponents/StickyHeaderSectionList'; import { parseAnimatedColorProp } from '../common/utils/parseAnimatedColorProp'; import type { DetailsHeaderSectionListProps } from './DetailsHeaderProps'; import { HeaderBar } from './components/HeaderBar'; import { useDetailsHeader } from './hooks/useDetailsHeader'; function DetailsHeaderSectionListInner( props: DetailsHeaderSectionListProps, ref: React.ForwardedRef> ) { const { backgroundColor, contentContainerStyle, decelerationRate = 'fast', enableSafeAreaTopInset = true, leftTopIcon, leftTopIconAccessibilityLabel, leftTopIconOnPress, leftTopIconTestID, nestedScrollEnabled = true, overScrollMode = 'never', renderHeader, renderHeaderBar, renderSectionFooter, renderSectionHeader, rightTopIcon, rightTopIconAccessibilityLabel, rightTopIconOnPress, rightTopIconTestID, scrollEventThrottle = 16, sections, stickySectionHeadersEnabled = true, title, titleStyle, ...rest } = props; const { headerTitleContainerAnimatedStyle, onScroll, onScrollEndDrag, onMomentumScrollEnd, renderHeader: defaultRenderHeader, scrollViewRef, } = useDetailsHeader>(props); React.useImperativeHandle(ref, () => scrollViewRef.current as SectionList); const wrapperAnimatedStyle = useAnimatedStyle(() => { return { backgroundColor: parseAnimatedColorProp(backgroundColor), }; }, [backgroundColor]); return ( {renderHeaderBar ? ( renderHeaderBar() ) : ( )} ); } type DetailsHeaderSectionListType = ( props: DetailsHeaderSectionListProps & React.RefAttributes> ) => React.ReactElement; export const DetailsHeaderSectionList = React.forwardRef( DetailsHeaderSectionListInner ) as DetailsHeaderSectionListType;