one
Version:
One is a new React Framework that makes Vite serve both native and web.
241 lines (239 loc) • 8.78 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 Navigator_exports = {};
__export(Navigator_exports, {
DefaultNavigator: () => DefaultNavigator,
NamedSlot: () => NamedSlot,
Navigator: () => Navigator,
NavigatorContext: () => NavigatorContext,
QualifiedSlot: () => QualifiedSlot,
Slot: () => Slot,
clearAllSlotStates: () => clearAllSlotStates,
getScopedSlotKey: () => getScopedSlotKey,
getSlotState: () => getSlotState,
setSlotState: () => setSlotState,
useNamedSlot: () => useNamedSlot,
useNavigatorContext: () => useNavigatorContext,
useSlot: () => useSlot
});
module.exports = __toCommonJS(Navigator_exports);
var import_jsx_runtime = require("react/jsx-runtime"),
import_native = require("@react-navigation/native"),
React = __toESM(require("react"), 1),
import_react_native_safe_area_context = require("react-native-safe-area-context"),
import_withLayoutContext = require("../layouts/withLayoutContext.native.js"),
import_Route = require("../router/Route.native.js"),
import_router = require("../router/router.native.js"),
import_useScreens = require("../router/useScreens.native.js"),
import_Screen = require("./Screen.native.js"),
import_interceptRoutes = require("../router/interceptRoutes.native.js"),
SLOT_STATIC_KEY = "one-slot-static-key",
globalSlotState = /* @__PURE__ */new Map(),
slotStateListeners = /* @__PURE__ */new Set();
function getSlotState(slotName) {
return globalSlotState.get(slotName);
}
function setSlotState(slotName, state) {
state === null ? globalSlotState.delete(slotName) : globalSlotState.set(slotName, state), slotStateListeners.forEach(function (listener) {
return listener();
});
}
function clearAllSlotStates() {
globalSlotState.clear(), slotStateListeners.forEach(function (listener) {
return listener();
});
}
(0, import_interceptRoutes.registerClearSlotStates)(clearAllSlotStates);
(0, import_interceptRoutes.registerSetSlotState)(setSlotState);
function useSlotStateSubscription() {
var [, forceUpdate] = React.useReducer(function (x) {
return x + 1;
}, 0);
React.useEffect(function () {
return slotStateListeners.add(forceUpdate), function () {
slotStateListeners.delete(forceUpdate);
};
}, []);
}
var NavigatorContext = /* @__PURE__ */React.createContext(null);
process.env.NODE_ENV !== "production" && (NavigatorContext.displayName = "NavigatorContext");
function Navigator(param) {
var {
initialRouteName,
screenOptions,
children,
router
} = param,
contextKey = (0, import_Route.useContextKey)(),
{
screens,
children: otherSlot,
protectedScreens
} = (0, import_withLayoutContext.useFilterScreenChildren)(children, {
isCustomNavigator: !0,
contextKey
});
(0, import_router.registerProtectedRoutes)(contextKey, protectedScreens), React.useEffect(function () {
return (0, import_router.registerProtectedRoutes)(contextKey, protectedScreens), function () {
(0, import_router.unregisterProtectedRoutes)(contextKey);
};
}, [contextKey, protectedScreens]);
var sorted = (0, import_useScreens.useSortedScreens)(screens ?? [], {
protectedScreens
});
return sorted.length ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(QualifiedNavigator, {
initialRouteName,
screenOptions,
screens: sorted,
contextKey,
router,
children: otherSlot
}) : (console.warn(`Navigator at "${contextKey}" has no children.`), null);
}
function QualifiedNavigator(param) {
var {
initialRouteName,
screenOptions,
children,
screens,
contextKey,
router = import_native.StackRouter
} = param,
{
state,
navigation,
descriptors,
NavigationContent
} = (0, import_native.useNavigationBuilder)(router, {
// Used for getting the parent with navigation.getParent('/normalized/path')
id: contextKey,
children: screens,
screenOptions,
initialRouteName
}),
descriptorsRef = React.useRef(descriptors);
descriptorsRef.current = descriptors;
var value = React.useMemo(function () {
return {
contextKey,
state,
navigation,
descriptorsRef,
router
};
}, [contextKey, state, navigation, router]);
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(NavigatorContext.Provider, {
value,
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(NavigationContent, {
children
})
});
}
function useNavigatorContext() {
var context = React.useContext(NavigatorContext);
if (!context) throw new Error("useNavigatorContext must be used within a <Navigator />");
return context;
}
function useSlot() {
var _ref,
_descriptorsRef_current_current_key,
context = useNavigatorContext(),
{
state,
descriptorsRef
} = context,
current = state.routes.find(function (route, i) {
return state.index === i;
});
if (!current) return null;
var renderedElement = (_ref = (_descriptorsRef_current_current_key = descriptorsRef.current[current.key]) === null || _descriptorsRef_current_current_key === void 0 ? void 0 : _descriptorsRef_current_current_key.render()) !== null && _ref !== void 0 ? _ref : null;
return renderedElement !== null ? /* @__PURE__ */React.cloneElement(renderedElement, {
key: SLOT_STATIC_KEY
}) : renderedElement;
}
var Slot = /* @__PURE__ */React.memo(function (props) {
var contextKey = (0, import_Route.useContextKey)(),
context = React.useContext(NavigatorContext);
return context?.contextKey !== contextKey ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(Navigator, {
...props,
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(QualifiedSlot, {})
}) : /* @__PURE__ */(0, import_jsx_runtime.jsx)(QualifiedSlot, {});
});
function QualifiedSlot() {
return useSlot();
}
function DefaultNavigator() {
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_react_native_safe_area_context.SafeAreaView, {
style: {
flex: 1
},
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(Navigator, {
children: /* @__PURE__ */(0, import_jsx_runtime.jsx)(QualifiedSlot, {})
})
});
}
Navigator.Slot = Slot;
Navigator.useContext = useNavigatorContext;
Navigator.Screen = import_Screen.Screen;
function getScopedSlotKey(slotName, layoutContextKey) {
return layoutContextKey ? `${layoutContextKey}:${slotName}` : slotName;
}
function useNamedSlot(slotName, layoutContextKey) {
useSlotStateSubscription();
var scopedKey = getScopedSlotKey(slotName, layoutContextKey),
slotState = getSlotState(scopedKey);
if (!slotState?.activeRouteKey || !slotState.isIntercepted) return null;
if (slotState.activeRouteNode) {
var Component = (0, import_useScreens.getQualifiedRouteComponent)(slotState.activeRouteNode);
return /* @__PURE__ */(0, import_jsx_runtime.jsx)(Component, {
route: {
params: slotState.params || {}
}
}, slotState.activeRouteKey);
}
return null;
}
function NamedSlot(param) {
var {
name,
layoutContextKey,
children
} = param,
slotContent = useNamedSlot(name, layoutContextKey);
return slotContent ? /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, {
children: slotContent
}) : /* @__PURE__ */(0, import_jsx_runtime.jsx)(import_jsx_runtime.Fragment, {
children
});
}
//# sourceMappingURL=Navigator.native.js.map