mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-13 09:39:18 +08:00
118 lines
3.8 KiB
TypeScript
118 lines
3.8 KiB
TypeScript
import * as React from 'react';
|
|
import * as BaseActions from './BaseActions';
|
|
import { NavigationEventEmitter } from './useEventEmitter';
|
|
import {
|
|
NavigationAction,
|
|
NavigationHelpers,
|
|
NavigationProp,
|
|
ParamListBase,
|
|
NavigationState,
|
|
Router,
|
|
} from './types';
|
|
|
|
type Options = {
|
|
state: NavigationState;
|
|
getState: () => NavigationState;
|
|
navigation: NavigationHelpers<ParamListBase> &
|
|
Partial<NavigationProp<ParamListBase, string, any, any, any>>;
|
|
setOptions: (
|
|
cb: (options: { [key: string]: object }) => { [key: string]: object }
|
|
) => void;
|
|
router: Router<NavigationState, NavigationAction>;
|
|
emitter: NavigationEventEmitter;
|
|
};
|
|
|
|
type NavigationCache<
|
|
State extends NavigationState,
|
|
ScreenOptions extends object
|
|
> = {
|
|
[key: string]: NavigationProp<ParamListBase, string, State, ScreenOptions>;
|
|
};
|
|
|
|
/**
|
|
* Hook to cache navigation objects for each screen in the navigator.
|
|
* It's important to cache them to make sure navigation objects don't change between renders.
|
|
* This lets us apply optimizations like `React.memo` to minimize re-rendering screens.
|
|
*/
|
|
export default function useNavigationCache<
|
|
State extends NavigationState,
|
|
ScreenOptions extends object
|
|
>({ state, getState, navigation, setOptions, router, emitter }: Options) {
|
|
// Cache object which holds navigation objects for each screen
|
|
// We use `React.useMemo` instead of `React.useRef` coz we want to invalidate it when deps change
|
|
// In reality, these deps will rarely change, if ever
|
|
const cache = React.useMemo(
|
|
() => ({ current: {} as NavigationCache<State, ScreenOptions> }),
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
[getState, navigation, setOptions, router, emitter]
|
|
);
|
|
|
|
const actions = {
|
|
...router.actionCreators,
|
|
...BaseActions,
|
|
};
|
|
|
|
cache.current = state.routes.reduce<NavigationCache<State, ScreenOptions>>(
|
|
(acc, route, index) => {
|
|
const previous = cache.current[route.key];
|
|
const isFirst = route.key === state.routes[0].key;
|
|
|
|
if (previous && previous.isFirstRouteInParent() === isFirst) {
|
|
// If a cached navigation object already exists and has same `isFirstRouteInParent`, reuse it
|
|
// This method could return different result if the index of the route changes somehow
|
|
acc[route.key] = previous;
|
|
} else {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const { emit, ...rest } = navigation;
|
|
|
|
const dispatch = (
|
|
action: NavigationAction | ((state: State) => State)
|
|
) =>
|
|
navigation.dispatch(
|
|
typeof action === 'object' && action != null
|
|
? { source: route.key, ...action }
|
|
: action
|
|
);
|
|
|
|
const helpers = Object.keys(actions).reduce(
|
|
(acc, name) => {
|
|
// @ts-ignore
|
|
acc[name] = (...args: any) => dispatch(actions[name](...args));
|
|
return acc;
|
|
},
|
|
{} as { [key: string]: () => void }
|
|
);
|
|
|
|
acc[route.key] = {
|
|
...rest,
|
|
...helpers,
|
|
...emitter.create(route.key),
|
|
dispatch,
|
|
setOptions: (options: object) =>
|
|
setOptions(o => ({
|
|
...o,
|
|
[route.key]: { ...o[route.key], ...options },
|
|
})),
|
|
isFocused: () => {
|
|
const state = getState();
|
|
|
|
if (index !== state.index) {
|
|
return false;
|
|
}
|
|
|
|
// If the current screen is focused, we also need to check if parent navigtor is focused
|
|
// This makes sure that we return the focus state in the whole tree, not just this navigator
|
|
return navigation ? navigation.isFocused() : true;
|
|
},
|
|
isFirstRouteInParent: () => isFirst,
|
|
};
|
|
}
|
|
|
|
return acc;
|
|
},
|
|
{}
|
|
);
|
|
|
|
return cache.current;
|
|
}
|