import * as React from 'react'; import { View, StyleSheet, StyleProp, ViewStyle } from 'react-native'; import { NavigationContext } from 'react-navigation'; import { EdgeInsets } from 'react-native-safe-area-context'; import Header from './Header'; import { forSlideLeft, forSlideUp, forNoAnimation, forSlideRight, } from '../../TransitionConfigs/HeaderStyleInterpolators'; import { Route, Layout, Scene, StackHeaderStyleInterpolator, StackNavigationProp, GestureDirection, } from '../../types'; export type Props = { mode: 'float' | 'screen'; layout: Layout; insets: EdgeInsets; scenes: (Scene> | undefined)[]; getPreviousRoute: (props: { route: Route; }) => Route | undefined; getFocusedRoute: () => Route; onContentHeightChange?: (props: { route: Route; height: number; }) => void; styleInterpolator: StackHeaderStyleInterpolator; gestureDirection: GestureDirection; style?: StyleProp; }; export default function HeaderContainer({ mode, scenes, layout, insets, getFocusedRoute, getPreviousRoute, onContentHeightChange, gestureDirection, styleInterpolator, style, }: Props) { const focusedRoute = getFocusedRoute(); return ( {scenes.slice(-3).map((scene, i, self) => { if ((mode === 'screen' && i !== self.length - 1) || !scene) { return null; } const { options } = scene.descriptor; const isFocused = focusedRoute.key === scene.route.key; const previousRoute = getPreviousRoute({ route: scene.route }); let previous; if (previousRoute) { // The previous scene will be shortly before the current scene in the array // So loop back from current index to avoid looping over the full array for (let j = i - 1; j >= 0; j--) { const s = self[j]; if (s && s.route.key === previousRoute.key) { previous = s; break; } } } // If the screen is next to a headerless screen, we need to make the header appear static // This makes the header look like it's moving with the screen const previousScene = self[i - 1]; const nextScene = self[i + 1]; const isHeaderStatic = (previousScene && previousScene.descriptor.options.headerShown === false && // We still need to animate when coming back from next scene // A hacky way to check this is if the next scene exists !nextScene) || (nextScene && nextScene.descriptor.options.headerShown === false); const props = { mode, layout, insets, scene, previous, navigation: scene.descriptor.navigation as StackNavigationProp, styleInterpolator: mode === 'float' ? isHeaderStatic ? gestureDirection === 'vertical' || gestureDirection === 'vertical-inverted' ? forSlideUp : gestureDirection === 'horizontal-inverted' ? forSlideRight : forSlideLeft : styleInterpolator : forNoAnimation, }; return ( <> onContentHeightChange({ route: scene.route, height: e.nativeEvent.layout.height, }) : undefined } pointerEvents={isFocused ? 'box-none' : 'none'} accessibilityElementsHidden={!isFocused} importantForAccessibility={ isFocused ? 'auto' : 'no-hide-descendants' } style={ // Avoid positioning the focused header absolutely // Otherwise accessibility tools don't seem to be able to find it (mode === 'float' && !isFocused) || options.headerTransparent ? styles.header : null } > {options.headerShown !== false ? ( options.header !== undefined ? ( options.header(props) ) : (
) ) : null} ); })} ); } const styles = StyleSheet.create({ header: { position: 'absolute', top: 0, left: 0, right: 0, }, });