@react-navigation/core
Version:
Core utilities for building navigators
84 lines (82 loc) • 3.29 kB
JavaScript
import { nanoid } from 'nanoid/non-secure';
import * as React from 'react';
import useLatestCallback from 'use-latest-callback';
import { NavigationHelpersContext } from "./NavigationHelpersContext.js";
import { NavigationRouteContext } from "./NavigationRouteContext.js";
import { PreventRemoveContext } from "./PreventRemoveContext.js";
import { jsx as _jsx } from "react/jsx-runtime";
/**
* Util function to transform map of prevented routes to a simpler object.
*/
const transformPreventedRoutes = preventedRoutesMap => {
const preventedRoutesToTransform = [...preventedRoutesMap.values()];
const preventedRoutes = preventedRoutesToTransform.reduce((acc, {
routeKey,
preventRemove
}) => {
acc[routeKey] = {
preventRemove: acc[routeKey]?.preventRemove || preventRemove
};
return acc;
}, {});
return preventedRoutes;
};
/**
* Component used for managing which routes have to be prevented from removal in native-stack.
*/
export function PreventRemoveProvider({
children
}) {
const [parentId] = React.useState(() => nanoid());
const [preventedRoutesMap, setPreventedRoutesMap] = React.useState(() => new Map());
const navigation = React.useContext(NavigationHelpersContext);
const route = React.useContext(NavigationRouteContext);
const preventRemoveContextValue = React.useContext(PreventRemoveContext);
// take `setPreventRemove` from parent context - if exist it means we're in a nested context
const setParentPrevented = preventRemoveContextValue?.setPreventRemove;
const setPreventRemove = useLatestCallback((id, routeKey, preventRemove) => {
if (preventRemove && (navigation == null || navigation?.getState().routes.every(route => route.key !== routeKey))) {
throw new Error(`Couldn't find a route with the key ${routeKey}. Is your component inside NavigationContent?`);
}
setPreventedRoutesMap(prevPrevented => {
// values haven't changed - do nothing
if (routeKey === prevPrevented.get(id)?.routeKey && preventRemove === prevPrevented.get(id)?.preventRemove) {
return prevPrevented;
}
const nextPrevented = new Map(prevPrevented);
if (preventRemove) {
nextPrevented.set(id, {
routeKey,
preventRemove
});
} else {
nextPrevented.delete(id);
}
return nextPrevented;
});
});
const isPrevented = [...preventedRoutesMap.values()].some(({
preventRemove
}) => preventRemove);
React.useEffect(() => {
if (route?.key !== undefined && setParentPrevented !== undefined) {
// when route is defined (and setParentPrevented) it means we're in a nested stack
// route.key then will be the route key of parent
setParentPrevented(parentId, route.key, isPrevented);
return () => {
setParentPrevented(parentId, route.key, false);
};
}
return;
}, [parentId, isPrevented, route?.key, setParentPrevented]);
const value = React.useMemo(() => ({
setPreventRemove,
preventedRoutes: transformPreventedRoutes(preventedRoutesMap)
}), [setPreventRemove, preventedRoutesMap]);
return /*#__PURE__*/_jsx(PreventRemoveContext.Provider, {
value: value,
children: children
});
}
//# sourceMappingURL=PreventRemoveProvider.js.map
;