one
Version:
One is a new React Framework that makes Vite serve both native and web.
99 lines (98 loc) • 5.57 kB
JavaScript
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: !0 });
}, __copyProps = (to, from, except, desc) => {
if (from && typeof from == "object" || typeof from == "function")
for (let key of __getOwnPropNames(from))
!__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
// If the importer is in node compatibility mode or this is not an ESM
// file that has been converted to a CommonJS file using a Babel-
// compatible transform (i.e. "__esModule" has not been set), then set
// "default" to the CommonJS "module.exports" for node compatibility.
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
mod
)), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
var NavigationContainer_exports = {};
__export(NavigationContainer_exports, {
NavigationContainer: () => NavigationContainer
});
module.exports = __toCommonJS(NavigationContainer_exports);
var import_core = require("@react-navigation/core"), React = __toESM(require("react"), 1), import_react_native = require("react-native-web"), import_use_latest_callback = __toESM(require("use-latest-callback"), 1), import_native = require("@react-navigation/native"), import_useBackButton = require("./useBackButton"), import_useDocumentTitle = require("./useDocumentTitle"), import_useLinking = require("./useLinking"), import_useThenable = require("./useThenable"), import_jsx_runtime = require("react/jsx-runtime");
globalThis.REACT_NAVIGATION_DEVTOOLS = /* @__PURE__ */ new WeakMap();
function NavigationContainerInner({
direction = import_react_native.I18nManager.getConstants().isRTL ? "rtl" : "ltr",
theme = import_native.DefaultTheme,
linking,
fallback = null,
documentTitle,
onReady,
onStateChange,
...rest
}, ref) {
const isLinkingEnabled = linking ? linking.enabled !== !1 : !1;
linking?.config && (0, import_core.validatePathConfig)(linking.config);
const refContainer = React.useRef(null);
(0, import_useBackButton.useBackButton)(refContainer), (0, import_useDocumentTitle.useDocumentTitle)(refContainer, documentTitle);
const [lastUnhandledLink, setLastUnhandledLink] = React.useState(), { getInitialState } = (0, import_useLinking.useLinking)(
refContainer,
{
enabled: isLinkingEnabled,
prefixes: [],
...linking
},
setLastUnhandledLink
), linkingContext = React.useMemo(() => ({ options: linking }), [linking]), unhandledLinkingContext = React.useMemo(
() => ({ lastUnhandledLink, setLastUnhandledLink }),
[lastUnhandledLink, setLastUnhandledLink]
), onReadyForLinkingHandling = (0, import_use_latest_callback.default)(() => {
const path = refContainer.current?.getCurrentRoute()?.path;
setLastUnhandledLink((previousLastUnhandledLink) => {
if (previousLastUnhandledLink !== path)
return previousLastUnhandledLink;
}), onReady?.();
}), onStateChangeForLinkingHandling = (0, import_use_latest_callback.default)(
(state) => {
const path = refContainer.current?.getCurrentRoute()?.path;
setLastUnhandledLink((previousLastUnhandledLink) => {
if (previousLastUnhandledLink !== path)
return previousLastUnhandledLink;
}), onStateChange?.(state);
}
);
React.useEffect(() => {
refContainer.current && REACT_NAVIGATION_DEVTOOLS.set(refContainer.current, {
get linking() {
return {
...linking,
enabled: isLinkingEnabled,
prefixes: linking?.prefixes ?? [],
getStateFromPath: linking?.getStateFromPath ?? import_core.getStateFromPath,
getPathFromState: linking?.getPathFromState ?? import_core.getPathFromState,
getActionFromState: linking?.getActionFromState ?? import_core.getActionFromState
};
}
});
});
const [isResolved, initialState] = (0, import_useThenable.useThenable)(getInitialState);
return React.useImperativeHandle(ref, () => refContainer.current), rest.initialState != null || !isLinkingEnabled || isResolved ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_native.LocaleDirContext.Provider, { value: direction, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_native.UNSTABLE_UnhandledLinkingContext.Provider, { value: unhandledLinkingContext, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_native.LinkingContext.Provider, { value: linkingContext, children: /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
import_core.BaseNavigationContainer,
{
...rest,
theme,
onReady: onReadyForLinkingHandling,
onStateChange: onStateChangeForLinkingHandling,
initialState: rest.initialState == null ? initialState : rest.initialState,
ref: refContainer
}
) }) }) }) : /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_core.ThemeProvider, { value: theme, children: fallback });
}
const NavigationContainer = React.forwardRef(NavigationContainerInner);
//# sourceMappingURL=NavigationContainer.js.map