one
Version:
One is a new React Framework that makes Vite serve both native and web.
51 lines (50 loc) • 2.33 kB
JavaScript
var lastVersion = 0,
context;
function useViteRoutes(routes, routerRoot, options, version) {
return version && version > lastVersion && (context = null, lastVersion = version), context || loadRoutes(routes, routerRoot, options), context;
}
function loadRoutes(paths, routerRoot, options) {
return context || (globalThis.__importMetaGlobbed = paths, context = globbedRoutesToRouteContext(paths, routerRoot, options), context);
}
function globbedRoutesToRouteContext(paths, routerRoot, options) {
var routesSync = {},
promises = {},
loadedRoutes = {},
clears = {};
Object.keys(paths).map(function (path) {
var _options_routeModes;
if (!paths[path]) {
console.error(`Error: Missing route at path ${path}`);
return;
}
var loadRouteFunction = paths[path],
pathWithoutRelative = path.replace(`/${routerRoot}/`, "./"),
originalPath = pathWithoutRelative.slice(1).replace(/\.[jt]sx?$/, "");
(options == null || (_options_routeModes = options.routeModes) === null || _options_routeModes === void 0 ? void 0 : _options_routeModes[originalPath]) === "spa" ? (console.info(`Spa mode: ${originalPath}`), loadedRoutes[pathWithoutRelative] = function () {
return null;
}) : routesSync[pathWithoutRelative] = loadRouteFunction;
});
var moduleKeys = Object.keys(routesSync);
function resolve(id) {
if (clearTimeout(clears[id]), loadedRoutes[id]) return loadedRoutes[id];
if (typeof routesSync[id] != "function") return routesSync[id];
throw promises[id] || (promises[id] = routesSync[id]().then(function (val) {
return loadedRoutes[id] = val, delete promises[id], clears[id] = setTimeout(function () {
delete loadedRoutes[id];
}, 500), val;
}).catch(function (err) {
console.error("Error loading route", id, err, new Error().stack), loadedRoutes[id] = {
default: function () {
return null;
}
}, delete promises[id];
}), process.env.NODE_ENV === "development" && (promises[id].stack = new Error().stack)), promises[id];
}
return resolve.keys = function () {
return moduleKeys;
}, resolve.id = "", resolve.resolve = function (id) {
return id;
}, resolve;
}
export { globbedRoutesToRouteContext, loadRoutes, useViteRoutes };
//# sourceMappingURL=useViteRoutes.native.js.map