UNPKG

@react-navigation/core

Version:

Core utilities for building navigators

265 lines (254 loc) 9.57 kB
"use strict"; import * as queryString from 'query-string'; import { getPatternParts } from "./getPatternParts.js"; import { getStateFromRouteParams } from "./getStateFromRouteParams.js"; import { validatePathConfig } from "./validatePathConfig.js"; const serializeParamValue = value => value === null ? null : Array.isArray(value) ? value.map(String) : String(value); const getActiveRoute = (state, configs, getRouteState) => { const route = typeof state.index === 'number' ? state.routes[state.index] : state.routes[state.routes.length - 1]; const config = configs?.[route.name]; const routeState = getRouteState(route, config); if (routeState) { return getActiveRoute(routeState, config?.screens, getRouteState); } return route; }; const cachedNormalizedConfigs = new WeakMap(); const getNormalizedConfigs = options => { if (!options?.screens) return {}; const cached = cachedNormalizedConfigs.get(options?.screens); if (cached) return cached; const normalizedConfigs = createNormalizedConfigs(options.screens); cachedNormalizedConfigs.set(options.screens, normalizedConfigs); return normalizedConfigs; }; /** * Utility to serialize a navigation state object to a path string. * * @example * ```js * getPathFromState( * { * routes: [ * { * name: 'Chat', * params: { author: 'Jane', id: 42 }, * }, * ], * }, * { * screens: { * Chat: { * path: 'chat/:author/:id', * stringify: { author: author => author.toLowerCase() } * } * } * } * ) * ``` * * @param state Navigation state to serialize. * @param options Extra options to fine-tune how to serialize the path. * @returns Path representing the state, e.g. /foo/bar?count=42. */ export function getPathFromState(state, options) { if (state == null) { throw Error(`Got '${String(state)}' for the navigation state. You must pass a valid state object.`); } if (process.env.NODE_ENV !== 'production' && options) { validatePathConfig(options); } const configs = getNormalizedConfigs(options); const cachedRouteStates = new Map(); const getRouteState = (route, config) => { if (route.state) { return route.state; } const hasScreenParams = route.params && 'screen' in route.params && typeof route.params.screen === 'string' && config?.screens?.[route.params.screen]; const hasStateParams = route.params && 'state' in route.params && config?.screens; if (!route.params || !config?.screens || !hasScreenParams && !hasStateParams) { return undefined; } if (!cachedRouteStates.has(route)) { cachedRouteStates.set(route, getStateFromRouteParams(route.params)); } return cachedRouteStates.get(route); }; const focusedRoute = getActiveRoute(state, configs, getRouteState); let path = '/'; let current = state; while (current) { let index = typeof current.index === 'number' ? current.index : 0; let route = current.routes[index]; let parts; const partValues = new Map(); let focusedParams; let currentOptions = configs; // Keep all the route names that appeared during going deeper in config in case the pattern is resolved to undefined const nestedRouteNames = []; let hasNext = true; while (route.name in currentOptions && hasNext) { const config = currentOptions[route.name]; parts = config.parts; const ownParts = config.ownParts; nestedRouteNames.push(route.name); if (route.params) { const options = config; const currentParams = Object.fromEntries(Object.entries(route.params).map(([key, value]) => { if (value === undefined) { if (options) { const optional = ownParts.find(part => part.param === key)?.optional; if (optional) { return null; } } else { return null; } } const stringify = options?.stringify?.[key]; return [key, stringify ? stringify(value) : serializeParamValue(value)]; }).filter(entry => entry != null)); const claimedParams = new Set(); for (const part of ownParts) { if (part.param && part.param in currentParams) { const value = currentParams[part.param]; if (value !== undefined) { partValues.set(part, value); claimedParams.add(part.param); } } } if (focusedRoute === route) { // If this is the focused route, keep the params for later use // We save it here since it's been stringified already focusedParams = {}; for (const key in currentParams) { const value = currentParams[key]; if (!claimedParams.has(key) && value !== undefined && value !== 'undefined') { focusedParams[key] = value; } } } } for (const part of ownParts) { if (part.param && !partValues.has(part)) { partValues.set(part, undefined); } } const routeState = getRouteState(route, config); // If there is no `screens` property or no nested state, we return pattern if (!config.screens || routeState === undefined) { hasNext = false; } else { index = typeof routeState.index === 'number' ? routeState.index : routeState.routes.length - 1; const nextRoute = routeState.routes[index]; const nestedConfig = config.screens; // if there is config for next route name, we go deeper if (nestedConfig && nextRoute.name in nestedConfig) { route = nextRoute; currentOptions = nestedConfig; } else { // If not, there is no sense in going deeper in config hasNext = false; } } } const routeState = getRouteState(route, currentOptions[route.name]); if (currentOptions[route.name] !== undefined) { path += parts?.map(part => { const { segment, param, optional } = part; // We don't know what to show for wildcard patterns // Showing the route name seems ok, though whatever we show here will be incorrect // Since the page doesn't actually exist if (segment === '*') { return route.name; } // If the path has a pattern for a param, put the param in the path if (param) { const value = partValues.get(part); if (value === undefined && optional) { // Optional params without value assigned in route.params should be ignored return ''; } // Valid characters according to // https://datatracker.ietf.org/doc/html/rfc3986#section-3.3 (see pchar definition) return Array.from(String(value)).map(char => /[^A-Za-z0-9\-._~!$&'()*+,;=:@]/g.test(char) ? encodeURIComponent(char) : char).join(''); } return encodeURIComponent(segment); }).join('/'); } else { path += encodeURIComponent(route.name); } if (!focusedParams && focusedRoute.params) { focusedParams = Object.fromEntries(Object.entries(focusedRoute.params).map(([key, value]) => [key, serializeParamValue(value)])); } if (routeState) { path += '/'; } else if (focusedParams) { for (const param in focusedParams) { if (focusedParams[param] === 'undefined') { // eslint-disable-next-line @typescript-eslint/no-dynamic-delete delete focusedParams[param]; } } const query = queryString.stringify(focusedParams, { sort: false }); if (query) { path += `?${query}`; } } current = routeState; } // Include the root path if specified if (options?.path) { path = `${options.path}/${path}`; } // Remove multiple as well as trailing slashes path = path.replace(/\/+/g, '/'); path = path.length > 1 ? path.replace(/\/$/, '') : path; // If path doesn't start with a slash, add it // This makes sure that history.pushState will update the path correctly instead of appending if (!path.startsWith('/')) { path = `/${path}`; } return path; } const createConfigItem = (config, parentParts) => { if (typeof config === 'string') { const ownParts = getPatternParts(config); if (parentParts) { return { parts: [...parentParts, ...ownParts], ownParts }; } return { parts: ownParts, ownParts }; } if (config.exact && config.path === undefined) { throw new Error("A 'path' needs to be specified when specifying 'exact: true'. If you don't want this screen in the URL, specify it as empty string, e.g. `path: ''`."); } // If an object is specified as the value (e.g. Foo: { ... }), // It can have `path` property and `screens` prop which has nested configs const ownParts = config.path ? getPatternParts(config.path) : []; const parts = config.exact !== true ? [...(parentParts || []), ...ownParts] : ownParts.length ? ownParts : undefined; const screens = config.screens ? createNormalizedConfigs(config.screens, parts) : undefined; return { parts, ownParts, stringify: config.stringify, screens }; }; const createNormalizedConfigs = (options, parts) => Object.fromEntries(Object.entries(options).map(([name, c]) => { const result = createConfigItem(c, parts); return [name, result]; })); //# sourceMappingURL=getPathFromState.js.map