Files
leaudit-platform-frontend/public/build/_shared/chunk-RG2SZ2V3.js
T

10290 lines
352 KiB
JavaScript

import {
createHotContext
} from "/build/_shared/chunk-73ZPIOGA.js";
import {
require_react_dom
} from "/build/_shared/chunk-U4FRFQSK.js";
import {
require_react
} from "/build/_shared/chunk-7M6SC7J5.js";
import {
__commonJS,
__esm,
__export,
__toCommonJS,
__toESM
} from "/build/_shared/chunk-PNG5AS42.js";
// node_modules/@remix-run/router/dist/router.js
var router_exports = {};
__export(router_exports, {
AbortedDeferredError: () => AbortedDeferredError,
Action: () => Action,
IDLE_BLOCKER: () => IDLE_BLOCKER,
IDLE_FETCHER: () => IDLE_FETCHER,
IDLE_NAVIGATION: () => IDLE_NAVIGATION,
UNSAFE_DEFERRED_SYMBOL: () => UNSAFE_DEFERRED_SYMBOL,
UNSAFE_DeferredData: () => DeferredData,
UNSAFE_ErrorResponseImpl: () => ErrorResponseImpl,
UNSAFE_convertRouteMatchToUiMatch: () => convertRouteMatchToUiMatch,
UNSAFE_convertRoutesToDataRoutes: () => convertRoutesToDataRoutes,
UNSAFE_decodePath: () => decodePath,
UNSAFE_getResolveToMatches: () => getResolveToMatches,
UNSAFE_invariant: () => invariant,
UNSAFE_warning: () => warning,
createBrowserHistory: () => createBrowserHistory,
createHashHistory: () => createHashHistory,
createMemoryHistory: () => createMemoryHistory,
createPath: () => createPath,
createRouter: () => createRouter,
createStaticHandler: () => createStaticHandler,
data: () => data,
defer: () => defer,
generatePath: () => generatePath,
getStaticContextFromError: () => getStaticContextFromError,
getToPathname: () => getToPathname,
isDataWithResponseInit: () => isDataWithResponseInit,
isDeferredData: () => isDeferredData,
isRouteErrorResponse: () => isRouteErrorResponse,
joinPaths: () => joinPaths,
json: () => json,
matchPath: () => matchPath,
matchRoutes: () => matchRoutes,
normalizePathname: () => normalizePathname,
parsePath: () => parsePath,
redirect: () => redirect,
redirectDocument: () => redirectDocument,
replace: () => replace,
resolvePath: () => resolvePath,
resolveTo: () => resolveTo,
stripBasename: () => stripBasename
});
function _extends() {
_extends = Object.assign ? Object.assign.bind() : function(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends.apply(this, arguments);
}
function createMemoryHistory(options) {
if (options === void 0) {
options = {};
}
let {
initialEntries = ["/"],
initialIndex,
v5Compat = false
} = options;
let entries;
entries = initialEntries.map((entry, index2) => createMemoryLocation(entry, typeof entry === "string" ? null : entry.state, index2 === 0 ? "default" : void 0));
let index = clampIndex(initialIndex == null ? entries.length - 1 : initialIndex);
let action = Action.Pop;
let listener = null;
function clampIndex(n) {
return Math.min(Math.max(n, 0), entries.length - 1);
}
function getCurrentLocation() {
return entries[index];
}
function createMemoryLocation(to, state, key) {
if (state === void 0) {
state = null;
}
let location = createLocation(entries ? getCurrentLocation().pathname : "/", to, state, key);
warning(location.pathname.charAt(0) === "/", "relative pathnames are not supported in memory history: " + JSON.stringify(to));
return location;
}
function createHref(to) {
return typeof to === "string" ? to : createPath(to);
}
let history = {
get index() {
return index;
},
get action() {
return action;
},
get location() {
return getCurrentLocation();
},
createHref,
createURL(to) {
return new URL(createHref(to), "http://localhost");
},
encodeLocation(to) {
let path = typeof to === "string" ? parsePath(to) : to;
return {
pathname: path.pathname || "",
search: path.search || "",
hash: path.hash || ""
};
},
push(to, state) {
action = Action.Push;
let nextLocation = createMemoryLocation(to, state);
index += 1;
entries.splice(index, entries.length, nextLocation);
if (v5Compat && listener) {
listener({
action,
location: nextLocation,
delta: 1
});
}
},
replace(to, state) {
action = Action.Replace;
let nextLocation = createMemoryLocation(to, state);
entries[index] = nextLocation;
if (v5Compat && listener) {
listener({
action,
location: nextLocation,
delta: 0
});
}
},
go(delta) {
action = Action.Pop;
let nextIndex = clampIndex(index + delta);
let nextLocation = entries[nextIndex];
index = nextIndex;
if (listener) {
listener({
action,
location: nextLocation,
delta
});
}
},
listen(fn) {
listener = fn;
return () => {
listener = null;
};
}
};
return history;
}
function createBrowserHistory(options) {
if (options === void 0) {
options = {};
}
function createBrowserLocation(window2, globalHistory) {
let {
pathname,
search,
hash
} = window2.location;
return createLocation(
"",
{
pathname,
search,
hash
},
// state defaults to `null` because `window.history.state` does
globalHistory.state && globalHistory.state.usr || null,
globalHistory.state && globalHistory.state.key || "default"
);
}
function createBrowserHref(window2, to) {
return typeof to === "string" ? to : createPath(to);
}
return getUrlBasedHistory(createBrowserLocation, createBrowserHref, null, options);
}
function createHashHistory(options) {
if (options === void 0) {
options = {};
}
function createHashLocation(window2, globalHistory) {
let {
pathname = "/",
search = "",
hash = ""
} = parsePath(window2.location.hash.substr(1));
if (!pathname.startsWith("/") && !pathname.startsWith(".")) {
pathname = "/" + pathname;
}
return createLocation(
"",
{
pathname,
search,
hash
},
// state defaults to `null` because `window.history.state` does
globalHistory.state && globalHistory.state.usr || null,
globalHistory.state && globalHistory.state.key || "default"
);
}
function createHashHref(window2, to) {
let base = window2.document.querySelector("base");
let href = "";
if (base && base.getAttribute("href")) {
let url = window2.location.href;
let hashIndex = url.indexOf("#");
href = hashIndex === -1 ? url : url.slice(0, hashIndex);
}
return href + "#" + (typeof to === "string" ? to : createPath(to));
}
function validateHashLocation(location, to) {
warning(location.pathname.charAt(0) === "/", "relative pathnames are not supported in hash history.push(" + JSON.stringify(to) + ")");
}
return getUrlBasedHistory(createHashLocation, createHashHref, validateHashLocation, options);
}
function invariant(value, message) {
if (value === false || value === null || typeof value === "undefined") {
throw new Error(message);
}
}
function warning(cond, message) {
if (!cond) {
if (typeof console !== "undefined")
console.warn(message);
try {
throw new Error(message);
} catch (e) {
}
}
}
function createKey() {
return Math.random().toString(36).substr(2, 8);
}
function getHistoryState(location, index) {
return {
usr: location.state,
key: location.key,
idx: index
};
}
function createLocation(current, to, state, key) {
if (state === void 0) {
state = null;
}
let location = _extends({
pathname: typeof current === "string" ? current : current.pathname,
search: "",
hash: ""
}, typeof to === "string" ? parsePath(to) : to, {
state,
// TODO: This could be cleaned up. push/replace should probably just take
// full Locations now and avoid the need to run through this flow at all
// But that's a pretty big refactor to the current test suite so going to
// keep as is for the time being and just let any incoming keys take precedence
key: to && to.key || key || createKey()
});
return location;
}
function createPath(_ref) {
let {
pathname = "/",
search = "",
hash = ""
} = _ref;
if (search && search !== "?")
pathname += search.charAt(0) === "?" ? search : "?" + search;
if (hash && hash !== "#")
pathname += hash.charAt(0) === "#" ? hash : "#" + hash;
return pathname;
}
function parsePath(path) {
let parsedPath = {};
if (path) {
let hashIndex = path.indexOf("#");
if (hashIndex >= 0) {
parsedPath.hash = path.substr(hashIndex);
path = path.substr(0, hashIndex);
}
let searchIndex = path.indexOf("?");
if (searchIndex >= 0) {
parsedPath.search = path.substr(searchIndex);
path = path.substr(0, searchIndex);
}
if (path) {
parsedPath.pathname = path;
}
}
return parsedPath;
}
function getUrlBasedHistory(getLocation, createHref, validateLocation, options) {
if (options === void 0) {
options = {};
}
let {
window: window2 = document.defaultView,
v5Compat = false
} = options;
let globalHistory = window2.history;
let action = Action.Pop;
let listener = null;
let index = getIndex();
if (index == null) {
index = 0;
globalHistory.replaceState(_extends({}, globalHistory.state, {
idx: index
}), "");
}
function getIndex() {
let state = globalHistory.state || {
idx: null
};
return state.idx;
}
function handlePop() {
action = Action.Pop;
let nextIndex = getIndex();
let delta = nextIndex == null ? null : nextIndex - index;
index = nextIndex;
if (listener) {
listener({
action,
location: history.location,
delta
});
}
}
function push(to, state) {
action = Action.Push;
let location = createLocation(history.location, to, state);
if (validateLocation)
validateLocation(location, to);
index = getIndex() + 1;
let historyState = getHistoryState(location, index);
let url = history.createHref(location);
try {
globalHistory.pushState(historyState, "", url);
} catch (error) {
if (error instanceof DOMException && error.name === "DataCloneError") {
throw error;
}
window2.location.assign(url);
}
if (v5Compat && listener) {
listener({
action,
location: history.location,
delta: 1
});
}
}
function replace3(to, state) {
action = Action.Replace;
let location = createLocation(history.location, to, state);
if (validateLocation)
validateLocation(location, to);
index = getIndex();
let historyState = getHistoryState(location, index);
let url = history.createHref(location);
globalHistory.replaceState(historyState, "", url);
if (v5Compat && listener) {
listener({
action,
location: history.location,
delta: 0
});
}
}
function createURL(to) {
let base = window2.location.origin !== "null" ? window2.location.origin : window2.location.href;
let href = typeof to === "string" ? to : createPath(to);
href = href.replace(/ $/, "%20");
invariant(base, "No window.location.(origin|href) available to create URL for href: " + href);
return new URL(href, base);
}
let history = {
get action() {
return action;
},
get location() {
return getLocation(window2, globalHistory);
},
listen(fn) {
if (listener) {
throw new Error("A history only accepts one active listener");
}
window2.addEventListener(PopStateEventType, handlePop);
listener = fn;
return () => {
window2.removeEventListener(PopStateEventType, handlePop);
listener = null;
};
},
createHref(to) {
return createHref(window2, to);
},
createURL,
encodeLocation(to) {
let url = createURL(to);
return {
pathname: url.pathname,
search: url.search,
hash: url.hash
};
},
push,
replace: replace3,
go(n) {
return globalHistory.go(n);
}
};
return history;
}
function isIndexRoute(route) {
return route.index === true;
}
function convertRoutesToDataRoutes(routes, mapRouteProperties2, parentPath, manifest) {
if (parentPath === void 0) {
parentPath = [];
}
if (manifest === void 0) {
manifest = {};
}
return routes.map((route, index) => {
let treePath = [...parentPath, String(index)];
let id = typeof route.id === "string" ? route.id : treePath.join("-");
invariant(route.index !== true || !route.children, "Cannot specify children on an index route");
invariant(!manifest[id], 'Found a route id collision on id "' + id + `". Route id's must be globally unique within Data Router usages`);
if (isIndexRoute(route)) {
let indexRoute = _extends({}, route, mapRouteProperties2(route), {
id
});
manifest[id] = indexRoute;
return indexRoute;
} else {
let pathOrLayoutRoute = _extends({}, route, mapRouteProperties2(route), {
id,
children: void 0
});
manifest[id] = pathOrLayoutRoute;
if (route.children) {
pathOrLayoutRoute.children = convertRoutesToDataRoutes(route.children, mapRouteProperties2, treePath, manifest);
}
return pathOrLayoutRoute;
}
});
}
function matchRoutes(routes, locationArg, basename) {
if (basename === void 0) {
basename = "/";
}
return matchRoutesImpl(routes, locationArg, basename, false);
}
function matchRoutesImpl(routes, locationArg, basename, allowPartial) {
let location = typeof locationArg === "string" ? parsePath(locationArg) : locationArg;
let pathname = stripBasename(location.pathname || "/", basename);
if (pathname == null) {
return null;
}
let branches = flattenRoutes(routes);
rankRouteBranches(branches);
let matches = null;
for (let i = 0; matches == null && i < branches.length; ++i) {
let decoded = decodePath(pathname);
matches = matchRouteBranch(branches[i], decoded, allowPartial);
}
return matches;
}
function convertRouteMatchToUiMatch(match, loaderData) {
let {
route,
pathname,
params
} = match;
return {
id: route.id,
pathname,
params,
data: loaderData[route.id],
handle: route.handle
};
}
function flattenRoutes(routes, branches, parentsMeta, parentPath) {
if (branches === void 0) {
branches = [];
}
if (parentsMeta === void 0) {
parentsMeta = [];
}
if (parentPath === void 0) {
parentPath = "";
}
let flattenRoute = (route, index, relativePath) => {
let meta = {
relativePath: relativePath === void 0 ? route.path || "" : relativePath,
caseSensitive: route.caseSensitive === true,
childrenIndex: index,
route
};
if (meta.relativePath.startsWith("/")) {
invariant(meta.relativePath.startsWith(parentPath), 'Absolute route path "' + meta.relativePath + '" nested under path ' + ('"' + parentPath + '" is not valid. An absolute child route path ') + "must start with the combined path of all its parent routes.");
meta.relativePath = meta.relativePath.slice(parentPath.length);
}
let path = joinPaths([parentPath, meta.relativePath]);
let routesMeta = parentsMeta.concat(meta);
if (route.children && route.children.length > 0) {
invariant(
// Our types know better, but runtime JS may not!
// @ts-expect-error
route.index !== true,
"Index routes must not have child routes. Please remove " + ('all child routes from route path "' + path + '".')
);
flattenRoutes(route.children, branches, routesMeta, path);
}
if (route.path == null && !route.index) {
return;
}
branches.push({
path,
score: computeScore(path, route.index),
routesMeta
});
};
routes.forEach((route, index) => {
var _route$path;
if (route.path === "" || !((_route$path = route.path) != null && _route$path.includes("?"))) {
flattenRoute(route, index);
} else {
for (let exploded of explodeOptionalSegments(route.path)) {
flattenRoute(route, index, exploded);
}
}
});
return branches;
}
function explodeOptionalSegments(path) {
let segments = path.split("/");
if (segments.length === 0)
return [];
let [first, ...rest] = segments;
let isOptional = first.endsWith("?");
let required = first.replace(/\?$/, "");
if (rest.length === 0) {
return isOptional ? [required, ""] : [required];
}
let restExploded = explodeOptionalSegments(rest.join("/"));
let result = [];
result.push(...restExploded.map((subpath) => subpath === "" ? required : [required, subpath].join("/")));
if (isOptional) {
result.push(...restExploded);
}
return result.map((exploded) => path.startsWith("/") && exploded === "" ? "/" : exploded);
}
function rankRouteBranches(branches) {
branches.sort((a, b) => a.score !== b.score ? b.score - a.score : compareIndexes(a.routesMeta.map((meta) => meta.childrenIndex), b.routesMeta.map((meta) => meta.childrenIndex)));
}
function computeScore(path, index) {
let segments = path.split("/");
let initialScore = segments.length;
if (segments.some(isSplat)) {
initialScore += splatPenalty;
}
if (index) {
initialScore += indexRouteValue;
}
return segments.filter((s) => !isSplat(s)).reduce((score, segment) => score + (paramRe.test(segment) ? dynamicSegmentValue : segment === "" ? emptySegmentValue : staticSegmentValue), initialScore);
}
function compareIndexes(a, b) {
let siblings = a.length === b.length && a.slice(0, -1).every((n, i) => n === b[i]);
return siblings ? (
// If two routes are siblings, we should try to match the earlier sibling
// first. This allows people to have fine-grained control over the matching
// behavior by simply putting routes with identical paths in the order they
// want them tried.
a[a.length - 1] - b[b.length - 1]
) : (
// Otherwise, it doesn't really make sense to rank non-siblings by index,
// so they sort equally.
0
);
}
function matchRouteBranch(branch, pathname, allowPartial) {
if (allowPartial === void 0) {
allowPartial = false;
}
let {
routesMeta
} = branch;
let matchedParams = {};
let matchedPathname = "/";
let matches = [];
for (let i = 0; i < routesMeta.length; ++i) {
let meta = routesMeta[i];
let end = i === routesMeta.length - 1;
let remainingPathname = matchedPathname === "/" ? pathname : pathname.slice(matchedPathname.length) || "/";
let match = matchPath({
path: meta.relativePath,
caseSensitive: meta.caseSensitive,
end
}, remainingPathname);
let route = meta.route;
if (!match && end && allowPartial && !routesMeta[routesMeta.length - 1].route.index) {
match = matchPath({
path: meta.relativePath,
caseSensitive: meta.caseSensitive,
end: false
}, remainingPathname);
}
if (!match) {
return null;
}
Object.assign(matchedParams, match.params);
matches.push({
// TODO: Can this as be avoided?
params: matchedParams,
pathname: joinPaths([matchedPathname, match.pathname]),
pathnameBase: normalizePathname(joinPaths([matchedPathname, match.pathnameBase])),
route
});
if (match.pathnameBase !== "/") {
matchedPathname = joinPaths([matchedPathname, match.pathnameBase]);
}
}
return matches;
}
function generatePath(originalPath, params) {
if (params === void 0) {
params = {};
}
let path = originalPath;
if (path.endsWith("*") && path !== "*" && !path.endsWith("/*")) {
warning(false, 'Route path "' + path + '" will be treated as if it were ' + ('"' + path.replace(/\*$/, "/*") + '" because the `*` character must ') + "always follow a `/` in the pattern. To get rid of this warning, " + ('please change the route path to "' + path.replace(/\*$/, "/*") + '".'));
path = path.replace(/\*$/, "/*");
}
const prefix = path.startsWith("/") ? "/" : "";
const stringify = (p) => p == null ? "" : typeof p === "string" ? p : String(p);
const segments = path.split(/\/+/).map((segment, index, array) => {
const isLastSegment = index === array.length - 1;
if (isLastSegment && segment === "*") {
const star = "*";
return stringify(params[star]);
}
const keyMatch = segment.match(/^:([\w-]+)(\??)$/);
if (keyMatch) {
const [, key, optional] = keyMatch;
let param = params[key];
invariant(optional === "?" || param != null, 'Missing ":' + key + '" param');
return stringify(param);
}
return segment.replace(/\?$/g, "");
}).filter((segment) => !!segment);
return prefix + segments.join("/");
}
function matchPath(pattern, pathname) {
if (typeof pattern === "string") {
pattern = {
path: pattern,
caseSensitive: false,
end: true
};
}
let [matcher, compiledParams] = compilePath(pattern.path, pattern.caseSensitive, pattern.end);
let match = pathname.match(matcher);
if (!match)
return null;
let matchedPathname = match[0];
let pathnameBase = matchedPathname.replace(/(.)\/+$/, "$1");
let captureGroups = match.slice(1);
let params = compiledParams.reduce((memo2, _ref, index) => {
let {
paramName,
isOptional
} = _ref;
if (paramName === "*") {
let splatValue = captureGroups[index] || "";
pathnameBase = matchedPathname.slice(0, matchedPathname.length - splatValue.length).replace(/(.)\/+$/, "$1");
}
const value = captureGroups[index];
if (isOptional && !value) {
memo2[paramName] = void 0;
} else {
memo2[paramName] = (value || "").replace(/%2F/g, "/");
}
return memo2;
}, {});
return {
params,
pathname: matchedPathname,
pathnameBase,
pattern
};
}
function compilePath(path, caseSensitive, end) {
if (caseSensitive === void 0) {
caseSensitive = false;
}
if (end === void 0) {
end = true;
}
warning(path === "*" || !path.endsWith("*") || path.endsWith("/*"), 'Route path "' + path + '" will be treated as if it were ' + ('"' + path.replace(/\*$/, "/*") + '" because the `*` character must ') + "always follow a `/` in the pattern. To get rid of this warning, " + ('please change the route path to "' + path.replace(/\*$/, "/*") + '".'));
let params = [];
let regexpSource = "^" + path.replace(/\/*\*?$/, "").replace(/^\/*/, "/").replace(/[\\.*+^${}|()[\]]/g, "\\$&").replace(/\/:([\w-]+)(\?)?/g, (_, paramName, isOptional) => {
params.push({
paramName,
isOptional: isOptional != null
});
return isOptional ? "/?([^\\/]+)?" : "/([^\\/]+)";
});
if (path.endsWith("*")) {
params.push({
paramName: "*"
});
regexpSource += path === "*" || path === "/*" ? "(.*)$" : "(?:\\/(.+)|\\/*)$";
} else if (end) {
regexpSource += "\\/*$";
} else if (path !== "" && path !== "/") {
regexpSource += "(?:(?=\\/|$))";
} else
;
let matcher = new RegExp(regexpSource, caseSensitive ? void 0 : "i");
return [matcher, params];
}
function decodePath(value) {
try {
return value.split("/").map((v) => decodeURIComponent(v).replace(/\//g, "%2F")).join("/");
} catch (error) {
warning(false, 'The URL path "' + value + '" could not be decoded because it is is a malformed URL segment. This is probably due to a bad percent ' + ("encoding (" + error + ")."));
return value;
}
}
function stripBasename(pathname, basename) {
if (basename === "/")
return pathname;
if (!pathname.toLowerCase().startsWith(basename.toLowerCase())) {
return null;
}
let startIndex = basename.endsWith("/") ? basename.length - 1 : basename.length;
let nextChar = pathname.charAt(startIndex);
if (nextChar && nextChar !== "/") {
return null;
}
return pathname.slice(startIndex) || "/";
}
function resolvePath(to, fromPathname) {
if (fromPathname === void 0) {
fromPathname = "/";
}
let {
pathname: toPathname,
search = "",
hash = ""
} = typeof to === "string" ? parsePath(to) : to;
let pathname = toPathname ? toPathname.startsWith("/") ? toPathname : resolvePathname(toPathname, fromPathname) : fromPathname;
return {
pathname,
search: normalizeSearch(search),
hash: normalizeHash(hash)
};
}
function resolvePathname(relativePath, fromPathname) {
let segments = fromPathname.replace(/\/+$/, "").split("/");
let relativeSegments = relativePath.split("/");
relativeSegments.forEach((segment) => {
if (segment === "..") {
if (segments.length > 1)
segments.pop();
} else if (segment !== ".") {
segments.push(segment);
}
});
return segments.length > 1 ? segments.join("/") : "/";
}
function getInvalidPathError(char, field, dest, path) {
return "Cannot include a '" + char + "' character in a manually specified " + ("`to." + field + "` field [" + JSON.stringify(path) + "]. Please separate it out to the ") + ("`to." + dest + "` field. Alternatively you may provide the full path as ") + 'a string in <Link to="..."> and the router will parse it for you.';
}
function getPathContributingMatches(matches) {
return matches.filter((match, index) => index === 0 || match.route.path && match.route.path.length > 0);
}
function getResolveToMatches(matches, v7_relativeSplatPath) {
let pathMatches = getPathContributingMatches(matches);
if (v7_relativeSplatPath) {
return pathMatches.map((match, idx) => idx === pathMatches.length - 1 ? match.pathname : match.pathnameBase);
}
return pathMatches.map((match) => match.pathnameBase);
}
function resolveTo(toArg, routePathnames, locationPathname, isPathRelative) {
if (isPathRelative === void 0) {
isPathRelative = false;
}
let to;
if (typeof toArg === "string") {
to = parsePath(toArg);
} else {
to = _extends({}, toArg);
invariant(!to.pathname || !to.pathname.includes("?"), getInvalidPathError("?", "pathname", "search", to));
invariant(!to.pathname || !to.pathname.includes("#"), getInvalidPathError("#", "pathname", "hash", to));
invariant(!to.search || !to.search.includes("#"), getInvalidPathError("#", "search", "hash", to));
}
let isEmptyPath = toArg === "" || to.pathname === "";
let toPathname = isEmptyPath ? "/" : to.pathname;
let from;
if (toPathname == null) {
from = locationPathname;
} else {
let routePathnameIndex = routePathnames.length - 1;
if (!isPathRelative && toPathname.startsWith("..")) {
let toSegments = toPathname.split("/");
while (toSegments[0] === "..") {
toSegments.shift();
routePathnameIndex -= 1;
}
to.pathname = toSegments.join("/");
}
from = routePathnameIndex >= 0 ? routePathnames[routePathnameIndex] : "/";
}
let path = resolvePath(to, from);
let hasExplicitTrailingSlash = toPathname && toPathname !== "/" && toPathname.endsWith("/");
let hasCurrentTrailingSlash = (isEmptyPath || toPathname === ".") && locationPathname.endsWith("/");
if (!path.pathname.endsWith("/") && (hasExplicitTrailingSlash || hasCurrentTrailingSlash)) {
path.pathname += "/";
}
return path;
}
function getToPathname(to) {
return to === "" || to.pathname === "" ? "/" : typeof to === "string" ? parsePath(to).pathname : to.pathname;
}
function data(data3, init) {
return new DataWithResponseInit(data3, typeof init === "number" ? {
status: init
} : init);
}
function isTrackedPromise(value) {
return value instanceof Promise && value._tracked === true;
}
function unwrapTrackedPromise(value) {
if (!isTrackedPromise(value)) {
return value;
}
if (value._error) {
throw value._error;
}
return value._data;
}
function isRouteErrorResponse(error) {
return error != null && typeof error.status === "number" && typeof error.statusText === "string" && typeof error.internal === "boolean" && "data" in error;
}
function createRouter(init) {
const routerWindow = init.window ? init.window : typeof window !== "undefined" ? window : void 0;
const isBrowser2 = typeof routerWindow !== "undefined" && typeof routerWindow.document !== "undefined" && typeof routerWindow.document.createElement !== "undefined";
const isServer = !isBrowser2;
invariant(init.routes.length > 0, "You must provide a non-empty routes array to createRouter");
let mapRouteProperties2;
if (init.mapRouteProperties) {
mapRouteProperties2 = init.mapRouteProperties;
} else if (init.detectErrorBoundary) {
let detectErrorBoundary = init.detectErrorBoundary;
mapRouteProperties2 = (route) => ({
hasErrorBoundary: detectErrorBoundary(route)
});
} else {
mapRouteProperties2 = defaultMapRouteProperties;
}
let manifest = {};
let dataRoutes = convertRoutesToDataRoutes(init.routes, mapRouteProperties2, void 0, manifest);
let inFlightDataRoutes;
let basename = init.basename || "/";
let dataStrategyImpl = init.dataStrategy || defaultDataStrategy;
let patchRoutesOnNavigationImpl = init.patchRoutesOnNavigation;
let future = _extends({
v7_fetcherPersist: false,
v7_normalizeFormMethod: false,
v7_partialHydration: false,
v7_prependBasename: false,
v7_relativeSplatPath: false,
v7_skipActionErrorRevalidation: false
}, init.future);
let unlistenHistory = null;
let subscribers = /* @__PURE__ */ new Set();
let savedScrollPositions2 = null;
let getScrollRestorationKey = null;
let getScrollPosition = null;
let initialScrollRestored = init.hydrationData != null;
let initialMatches = matchRoutes(dataRoutes, init.history.location, basename);
let initialMatchesIsFOW = false;
let initialErrors = null;
if (initialMatches == null && !patchRoutesOnNavigationImpl) {
let error = getInternalRouterError(404, {
pathname: init.history.location.pathname
});
let {
matches,
route
} = getShortCircuitMatches(dataRoutes);
initialMatches = matches;
initialErrors = {
[route.id]: error
};
}
if (initialMatches && !init.hydrationData) {
let fogOfWar = checkFogOfWar(initialMatches, dataRoutes, init.history.location.pathname);
if (fogOfWar.active) {
initialMatches = null;
}
}
let initialized;
if (!initialMatches) {
initialized = false;
initialMatches = [];
if (future.v7_partialHydration) {
let fogOfWar = checkFogOfWar(null, dataRoutes, init.history.location.pathname);
if (fogOfWar.active && fogOfWar.matches) {
initialMatchesIsFOW = true;
initialMatches = fogOfWar.matches;
}
}
} else if (initialMatches.some((m) => m.route.lazy)) {
initialized = false;
} else if (!initialMatches.some((m) => m.route.loader)) {
initialized = true;
} else if (future.v7_partialHydration) {
let loaderData = init.hydrationData ? init.hydrationData.loaderData : null;
let errors = init.hydrationData ? init.hydrationData.errors : null;
if (errors) {
let idx = initialMatches.findIndex((m) => errors[m.route.id] !== void 0);
initialized = initialMatches.slice(0, idx + 1).every((m) => !shouldLoadRouteOnHydration(m.route, loaderData, errors));
} else {
initialized = initialMatches.every((m) => !shouldLoadRouteOnHydration(m.route, loaderData, errors));
}
} else {
initialized = init.hydrationData != null;
}
let router2;
let state = {
historyAction: init.history.action,
location: init.history.location,
matches: initialMatches,
initialized,
navigation: IDLE_NAVIGATION,
// Don't restore on initial updateState() if we were SSR'd
restoreScrollPosition: init.hydrationData != null ? false : null,
preventScrollReset: false,
revalidation: "idle",
loaderData: init.hydrationData && init.hydrationData.loaderData || {},
actionData: init.hydrationData && init.hydrationData.actionData || null,
errors: init.hydrationData && init.hydrationData.errors || initialErrors,
fetchers: /* @__PURE__ */ new Map(),
blockers: /* @__PURE__ */ new Map()
};
let pendingAction = Action.Pop;
let pendingPreventScrollReset = false;
let pendingNavigationController;
let pendingViewTransitionEnabled = false;
let appliedViewTransitions = /* @__PURE__ */ new Map();
let removePageHideEventListener = null;
let isUninterruptedRevalidation = false;
let isRevalidationRequired = false;
let cancelledDeferredRoutes = [];
let cancelledFetcherLoads = /* @__PURE__ */ new Set();
let fetchControllers = /* @__PURE__ */ new Map();
let incrementingLoadId = 0;
let pendingNavigationLoadId = -1;
let fetchReloadIds = /* @__PURE__ */ new Map();
let fetchRedirectIds = /* @__PURE__ */ new Set();
let fetchLoadMatches = /* @__PURE__ */ new Map();
let activeFetchers = /* @__PURE__ */ new Map();
let deletedFetchers = /* @__PURE__ */ new Set();
let activeDeferreds = /* @__PURE__ */ new Map();
let blockerFunctions = /* @__PURE__ */ new Map();
let unblockBlockerHistoryUpdate = void 0;
function initialize() {
unlistenHistory = init.history.listen((_ref) => {
let {
action: historyAction,
location,
delta
} = _ref;
if (unblockBlockerHistoryUpdate) {
unblockBlockerHistoryUpdate();
unblockBlockerHistoryUpdate = void 0;
return;
}
warning(blockerFunctions.size === 0 || delta != null, "You are trying to use a blocker on a POP navigation to a location that was not created by @remix-run/router. This will fail silently in production. This can happen if you are navigating outside the router via `window.history.pushState`/`window.location.hash` instead of using router navigation APIs. This can also happen if you are using createHashRouter and the user manually changes the URL.");
let blockerKey = shouldBlockNavigation({
currentLocation: state.location,
nextLocation: location,
historyAction
});
if (blockerKey && delta != null) {
let nextHistoryUpdatePromise = new Promise((resolve) => {
unblockBlockerHistoryUpdate = resolve;
});
init.history.go(delta * -1);
updateBlocker(blockerKey, {
state: "blocked",
location,
proceed() {
updateBlocker(blockerKey, {
state: "proceeding",
proceed: void 0,
reset: void 0,
location
});
nextHistoryUpdatePromise.then(() => init.history.go(delta));
},
reset() {
let blockers = new Map(state.blockers);
blockers.set(blockerKey, IDLE_BLOCKER);
updateState({
blockers
});
}
});
return;
}
return startNavigation(historyAction, location);
});
if (isBrowser2) {
restoreAppliedTransitions(routerWindow, appliedViewTransitions);
let _saveAppliedTransitions = () => persistAppliedTransitions(routerWindow, appliedViewTransitions);
routerWindow.addEventListener("pagehide", _saveAppliedTransitions);
removePageHideEventListener = () => routerWindow.removeEventListener("pagehide", _saveAppliedTransitions);
}
if (!state.initialized) {
startNavigation(Action.Pop, state.location, {
initialHydration: true
});
}
return router2;
}
function dispose() {
if (unlistenHistory) {
unlistenHistory();
}
if (removePageHideEventListener) {
removePageHideEventListener();
}
subscribers.clear();
pendingNavigationController && pendingNavigationController.abort();
state.fetchers.forEach((_, key) => deleteFetcher(key));
state.blockers.forEach((_, key) => deleteBlocker(key));
}
function subscribe(fn) {
subscribers.add(fn);
return () => subscribers.delete(fn);
}
function updateState(newState, opts) {
if (opts === void 0) {
opts = {};
}
state = _extends({}, state, newState);
let completedFetchers = [];
let deletedFetchersKeys = [];
if (future.v7_fetcherPersist) {
state.fetchers.forEach((fetcher, key) => {
if (fetcher.state === "idle") {
if (deletedFetchers.has(key)) {
deletedFetchersKeys.push(key);
} else {
completedFetchers.push(key);
}
}
});
}
deletedFetchers.forEach((key) => {
if (!state.fetchers.has(key) && !fetchControllers.has(key)) {
deletedFetchersKeys.push(key);
}
});
[...subscribers].forEach((subscriber) => subscriber(state, {
deletedFetchers: deletedFetchersKeys,
viewTransitionOpts: opts.viewTransitionOpts,
flushSync: opts.flushSync === true
}));
if (future.v7_fetcherPersist) {
completedFetchers.forEach((key) => state.fetchers.delete(key));
deletedFetchersKeys.forEach((key) => deleteFetcher(key));
} else {
deletedFetchersKeys.forEach((key) => deletedFetchers.delete(key));
}
}
function completeNavigation(location, newState, _temp) {
var _location$state, _location$state2;
let {
flushSync
} = _temp === void 0 ? {} : _temp;
let isActionReload = state.actionData != null && state.navigation.formMethod != null && isMutationMethod(state.navigation.formMethod) && state.navigation.state === "loading" && ((_location$state = location.state) == null ? void 0 : _location$state._isRedirect) !== true;
let actionData;
if (newState.actionData) {
if (Object.keys(newState.actionData).length > 0) {
actionData = newState.actionData;
} else {
actionData = null;
}
} else if (isActionReload) {
actionData = state.actionData;
} else {
actionData = null;
}
let loaderData = newState.loaderData ? mergeLoaderData(state.loaderData, newState.loaderData, newState.matches || [], newState.errors) : state.loaderData;
let blockers = state.blockers;
if (blockers.size > 0) {
blockers = new Map(blockers);
blockers.forEach((_, k) => blockers.set(k, IDLE_BLOCKER));
}
let preventScrollReset = pendingPreventScrollReset === true || state.navigation.formMethod != null && isMutationMethod(state.navigation.formMethod) && ((_location$state2 = location.state) == null ? void 0 : _location$state2._isRedirect) !== true;
if (inFlightDataRoutes) {
dataRoutes = inFlightDataRoutes;
inFlightDataRoutes = void 0;
}
if (isUninterruptedRevalidation)
;
else if (pendingAction === Action.Pop)
;
else if (pendingAction === Action.Push) {
init.history.push(location, location.state);
} else if (pendingAction === Action.Replace) {
init.history.replace(location, location.state);
}
let viewTransitionOpts;
if (pendingAction === Action.Pop) {
let priorPaths = appliedViewTransitions.get(state.location.pathname);
if (priorPaths && priorPaths.has(location.pathname)) {
viewTransitionOpts = {
currentLocation: state.location,
nextLocation: location
};
} else if (appliedViewTransitions.has(location.pathname)) {
viewTransitionOpts = {
currentLocation: location,
nextLocation: state.location
};
}
} else if (pendingViewTransitionEnabled) {
let toPaths = appliedViewTransitions.get(state.location.pathname);
if (toPaths) {
toPaths.add(location.pathname);
} else {
toPaths = /* @__PURE__ */ new Set([location.pathname]);
appliedViewTransitions.set(state.location.pathname, toPaths);
}
viewTransitionOpts = {
currentLocation: state.location,
nextLocation: location
};
}
updateState(_extends({}, newState, {
actionData,
loaderData,
historyAction: pendingAction,
location,
initialized: true,
navigation: IDLE_NAVIGATION,
revalidation: "idle",
restoreScrollPosition: getSavedScrollPosition(location, newState.matches || state.matches),
preventScrollReset,
blockers
}), {
viewTransitionOpts,
flushSync: flushSync === true
});
pendingAction = Action.Pop;
pendingPreventScrollReset = false;
pendingViewTransitionEnabled = false;
isUninterruptedRevalidation = false;
isRevalidationRequired = false;
cancelledDeferredRoutes = [];
}
async function navigate(to, opts) {
if (typeof to === "number") {
init.history.go(to);
return;
}
let normalizedPath = normalizeTo(state.location, state.matches, basename, future.v7_prependBasename, to, future.v7_relativeSplatPath, opts == null ? void 0 : opts.fromRouteId, opts == null ? void 0 : opts.relative);
let {
path,
submission,
error
} = normalizeNavigateOptions(future.v7_normalizeFormMethod, false, normalizedPath, opts);
let currentLocation = state.location;
let nextLocation = createLocation(state.location, path, opts && opts.state);
nextLocation = _extends({}, nextLocation, init.history.encodeLocation(nextLocation));
let userReplace = opts && opts.replace != null ? opts.replace : void 0;
let historyAction = Action.Push;
if (userReplace === true) {
historyAction = Action.Replace;
} else if (userReplace === false)
;
else if (submission != null && isMutationMethod(submission.formMethod) && submission.formAction === state.location.pathname + state.location.search) {
historyAction = Action.Replace;
}
let preventScrollReset = opts && "preventScrollReset" in opts ? opts.preventScrollReset === true : void 0;
let flushSync = (opts && opts.flushSync) === true;
let blockerKey = shouldBlockNavigation({
currentLocation,
nextLocation,
historyAction
});
if (blockerKey) {
updateBlocker(blockerKey, {
state: "blocked",
location: nextLocation,
proceed() {
updateBlocker(blockerKey, {
state: "proceeding",
proceed: void 0,
reset: void 0,
location: nextLocation
});
navigate(to, opts);
},
reset() {
let blockers = new Map(state.blockers);
blockers.set(blockerKey, IDLE_BLOCKER);
updateState({
blockers
});
}
});
return;
}
return await startNavigation(historyAction, nextLocation, {
submission,
// Send through the formData serialization error if we have one so we can
// render at the right error boundary after we match routes
pendingError: error,
preventScrollReset,
replace: opts && opts.replace,
enableViewTransition: opts && opts.viewTransition,
flushSync
});
}
function revalidate() {
interruptActiveLoads();
updateState({
revalidation: "loading"
});
if (state.navigation.state === "submitting") {
return;
}
if (state.navigation.state === "idle") {
startNavigation(state.historyAction, state.location, {
startUninterruptedRevalidation: true
});
return;
}
startNavigation(pendingAction || state.historyAction, state.navigation.location, {
overrideNavigation: state.navigation,
// Proxy through any rending view transition
enableViewTransition: pendingViewTransitionEnabled === true
});
}
async function startNavigation(historyAction, location, opts) {
pendingNavigationController && pendingNavigationController.abort();
pendingNavigationController = null;
pendingAction = historyAction;
isUninterruptedRevalidation = (opts && opts.startUninterruptedRevalidation) === true;
saveScrollPosition(state.location, state.matches);
pendingPreventScrollReset = (opts && opts.preventScrollReset) === true;
pendingViewTransitionEnabled = (opts && opts.enableViewTransition) === true;
let routesToUse = inFlightDataRoutes || dataRoutes;
let loadingNavigation = opts && opts.overrideNavigation;
let matches = opts != null && opts.initialHydration && state.matches && state.matches.length > 0 && !initialMatchesIsFOW ? (
// `matchRoutes()` has already been called if we're in here via `router.initialize()`
state.matches
) : matchRoutes(routesToUse, location, basename);
let flushSync = (opts && opts.flushSync) === true;
if (matches && state.initialized && !isRevalidationRequired && isHashChangeOnly(state.location, location) && !(opts && opts.submission && isMutationMethod(opts.submission.formMethod))) {
completeNavigation(location, {
matches
}, {
flushSync
});
return;
}
let fogOfWar = checkFogOfWar(matches, routesToUse, location.pathname);
if (fogOfWar.active && fogOfWar.matches) {
matches = fogOfWar.matches;
}
if (!matches) {
let {
error,
notFoundMatches,
route
} = handleNavigational404(location.pathname);
completeNavigation(location, {
matches: notFoundMatches,
loaderData: {},
errors: {
[route.id]: error
}
}, {
flushSync
});
return;
}
pendingNavigationController = new AbortController();
let request = createClientSideRequest(init.history, location, pendingNavigationController.signal, opts && opts.submission);
let pendingActionResult;
if (opts && opts.pendingError) {
pendingActionResult = [findNearestBoundary(matches).route.id, {
type: ResultType.error,
error: opts.pendingError
}];
} else if (opts && opts.submission && isMutationMethod(opts.submission.formMethod)) {
let actionResult = await handleAction(request, location, opts.submission, matches, fogOfWar.active, {
replace: opts.replace,
flushSync
});
if (actionResult.shortCircuited) {
return;
}
if (actionResult.pendingActionResult) {
let [routeId, result] = actionResult.pendingActionResult;
if (isErrorResult(result) && isRouteErrorResponse(result.error) && result.error.status === 404) {
pendingNavigationController = null;
completeNavigation(location, {
matches: actionResult.matches,
loaderData: {},
errors: {
[routeId]: result.error
}
});
return;
}
}
matches = actionResult.matches || matches;
pendingActionResult = actionResult.pendingActionResult;
loadingNavigation = getLoadingNavigation(location, opts.submission);
flushSync = false;
fogOfWar.active = false;
request = createClientSideRequest(init.history, request.url, request.signal);
}
let {
shortCircuited,
matches: updatedMatches,
loaderData,
errors
} = await handleLoaders(request, location, matches, fogOfWar.active, loadingNavigation, opts && opts.submission, opts && opts.fetcherSubmission, opts && opts.replace, opts && opts.initialHydration === true, flushSync, pendingActionResult);
if (shortCircuited) {
return;
}
pendingNavigationController = null;
completeNavigation(location, _extends({
matches: updatedMatches || matches
}, getActionDataForCommit(pendingActionResult), {
loaderData,
errors
}));
}
async function handleAction(request, location, submission, matches, isFogOfWar, opts) {
if (opts === void 0) {
opts = {};
}
interruptActiveLoads();
let navigation = getSubmittingNavigation(location, submission);
updateState({
navigation
}, {
flushSync: opts.flushSync === true
});
if (isFogOfWar) {
let discoverResult = await discoverRoutes(matches, location.pathname, request.signal);
if (discoverResult.type === "aborted") {
return {
shortCircuited: true
};
} else if (discoverResult.type === "error") {
let boundaryId = findNearestBoundary(discoverResult.partialMatches).route.id;
return {
matches: discoverResult.partialMatches,
pendingActionResult: [boundaryId, {
type: ResultType.error,
error: discoverResult.error
}]
};
} else if (!discoverResult.matches) {
let {
notFoundMatches,
error,
route
} = handleNavigational404(location.pathname);
return {
matches: notFoundMatches,
pendingActionResult: [route.id, {
type: ResultType.error,
error
}]
};
} else {
matches = discoverResult.matches;
}
}
let result;
let actionMatch = getTargetMatch(matches, location);
if (!actionMatch.route.action && !actionMatch.route.lazy) {
result = {
type: ResultType.error,
error: getInternalRouterError(405, {
method: request.method,
pathname: location.pathname,
routeId: actionMatch.route.id
})
};
} else {
let results = await callDataStrategy("action", state, request, [actionMatch], matches, null);
result = results[actionMatch.route.id];
if (request.signal.aborted) {
return {
shortCircuited: true
};
}
}
if (isRedirectResult(result)) {
let replace3;
if (opts && opts.replace != null) {
replace3 = opts.replace;
} else {
let location2 = normalizeRedirectLocation(result.response.headers.get("Location"), new URL(request.url), basename);
replace3 = location2 === state.location.pathname + state.location.search;
}
await startRedirectNavigation(request, result, true, {
submission,
replace: replace3
});
return {
shortCircuited: true
};
}
if (isDeferredResult(result)) {
throw getInternalRouterError(400, {
type: "defer-action"
});
}
if (isErrorResult(result)) {
let boundaryMatch = findNearestBoundary(matches, actionMatch.route.id);
if ((opts && opts.replace) !== true) {
pendingAction = Action.Push;
}
return {
matches,
pendingActionResult: [boundaryMatch.route.id, result]
};
}
return {
matches,
pendingActionResult: [actionMatch.route.id, result]
};
}
async function handleLoaders(request, location, matches, isFogOfWar, overrideNavigation, submission, fetcherSubmission, replace3, initialHydration, flushSync, pendingActionResult) {
let loadingNavigation = overrideNavigation || getLoadingNavigation(location, submission);
let activeSubmission = submission || fetcherSubmission || getSubmissionFromNavigation(loadingNavigation);
let shouldUpdateNavigationState = !isUninterruptedRevalidation && (!future.v7_partialHydration || !initialHydration);
if (isFogOfWar) {
if (shouldUpdateNavigationState) {
let actionData = getUpdatedActionData(pendingActionResult);
updateState(_extends({
navigation: loadingNavigation
}, actionData !== void 0 ? {
actionData
} : {}), {
flushSync
});
}
let discoverResult = await discoverRoutes(matches, location.pathname, request.signal);
if (discoverResult.type === "aborted") {
return {
shortCircuited: true
};
} else if (discoverResult.type === "error") {
let boundaryId = findNearestBoundary(discoverResult.partialMatches).route.id;
return {
matches: discoverResult.partialMatches,
loaderData: {},
errors: {
[boundaryId]: discoverResult.error
}
};
} else if (!discoverResult.matches) {
let {
error,
notFoundMatches,
route
} = handleNavigational404(location.pathname);
return {
matches: notFoundMatches,
loaderData: {},
errors: {
[route.id]: error
}
};
} else {
matches = discoverResult.matches;
}
}
let routesToUse = inFlightDataRoutes || dataRoutes;
let [matchesToLoad, revalidatingFetchers] = getMatchesToLoad(init.history, state, matches, activeSubmission, location, future.v7_partialHydration && initialHydration === true, future.v7_skipActionErrorRevalidation, isRevalidationRequired, cancelledDeferredRoutes, cancelledFetcherLoads, deletedFetchers, fetchLoadMatches, fetchRedirectIds, routesToUse, basename, pendingActionResult);
cancelActiveDeferreds((routeId) => !(matches && matches.some((m) => m.route.id === routeId)) || matchesToLoad && matchesToLoad.some((m) => m.route.id === routeId));
pendingNavigationLoadId = ++incrementingLoadId;
if (matchesToLoad.length === 0 && revalidatingFetchers.length === 0) {
let updatedFetchers2 = markFetchRedirectsDone();
completeNavigation(location, _extends({
matches,
loaderData: {},
// Commit pending error if we're short circuiting
errors: pendingActionResult && isErrorResult(pendingActionResult[1]) ? {
[pendingActionResult[0]]: pendingActionResult[1].error
} : null
}, getActionDataForCommit(pendingActionResult), updatedFetchers2 ? {
fetchers: new Map(state.fetchers)
} : {}), {
flushSync
});
return {
shortCircuited: true
};
}
if (shouldUpdateNavigationState) {
let updates = {};
if (!isFogOfWar) {
updates.navigation = loadingNavigation;
let actionData = getUpdatedActionData(pendingActionResult);
if (actionData !== void 0) {
updates.actionData = actionData;
}
}
if (revalidatingFetchers.length > 0) {
updates.fetchers = getUpdatedRevalidatingFetchers(revalidatingFetchers);
}
updateState(updates, {
flushSync
});
}
revalidatingFetchers.forEach((rf) => {
abortFetcher(rf.key);
if (rf.controller) {
fetchControllers.set(rf.key, rf.controller);
}
});
let abortPendingFetchRevalidations = () => revalidatingFetchers.forEach((f) => abortFetcher(f.key));
if (pendingNavigationController) {
pendingNavigationController.signal.addEventListener("abort", abortPendingFetchRevalidations);
}
let {
loaderResults,
fetcherResults
} = await callLoadersAndMaybeResolveData(state, matches, matchesToLoad, revalidatingFetchers, request);
if (request.signal.aborted) {
return {
shortCircuited: true
};
}
if (pendingNavigationController) {
pendingNavigationController.signal.removeEventListener("abort", abortPendingFetchRevalidations);
}
revalidatingFetchers.forEach((rf) => fetchControllers.delete(rf.key));
let redirect4 = findRedirect(loaderResults);
if (redirect4) {
await startRedirectNavigation(request, redirect4.result, true, {
replace: replace3
});
return {
shortCircuited: true
};
}
redirect4 = findRedirect(fetcherResults);
if (redirect4) {
fetchRedirectIds.add(redirect4.key);
await startRedirectNavigation(request, redirect4.result, true, {
replace: replace3
});
return {
shortCircuited: true
};
}
let {
loaderData,
errors
} = processLoaderData(state, matches, loaderResults, pendingActionResult, revalidatingFetchers, fetcherResults, activeDeferreds);
activeDeferreds.forEach((deferredData, routeId) => {
deferredData.subscribe((aborted) => {
if (aborted || deferredData.done) {
activeDeferreds.delete(routeId);
}
});
});
if (future.v7_partialHydration && initialHydration && state.errors) {
errors = _extends({}, state.errors, errors);
}
let updatedFetchers = markFetchRedirectsDone();
let didAbortFetchLoads = abortStaleFetchLoads(pendingNavigationLoadId);
let shouldUpdateFetchers = updatedFetchers || didAbortFetchLoads || revalidatingFetchers.length > 0;
return _extends({
matches,
loaderData,
errors
}, shouldUpdateFetchers ? {
fetchers: new Map(state.fetchers)
} : {});
}
function getUpdatedActionData(pendingActionResult) {
if (pendingActionResult && !isErrorResult(pendingActionResult[1])) {
return {
[pendingActionResult[0]]: pendingActionResult[1].data
};
} else if (state.actionData) {
if (Object.keys(state.actionData).length === 0) {
return null;
} else {
return state.actionData;
}
}
}
function getUpdatedRevalidatingFetchers(revalidatingFetchers) {
revalidatingFetchers.forEach((rf) => {
let fetcher = state.fetchers.get(rf.key);
let revalidatingFetcher = getLoadingFetcher(void 0, fetcher ? fetcher.data : void 0);
state.fetchers.set(rf.key, revalidatingFetcher);
});
return new Map(state.fetchers);
}
function fetch2(key, routeId, href, opts) {
if (isServer) {
throw new Error("router.fetch() was called during the server render, but it shouldn't be. You are likely calling a useFetcher() method in the body of your component. Try moving it to a useEffect or a callback.");
}
abortFetcher(key);
let flushSync = (opts && opts.flushSync) === true;
let routesToUse = inFlightDataRoutes || dataRoutes;
let normalizedPath = normalizeTo(state.location, state.matches, basename, future.v7_prependBasename, href, future.v7_relativeSplatPath, routeId, opts == null ? void 0 : opts.relative);
let matches = matchRoutes(routesToUse, normalizedPath, basename);
let fogOfWar = checkFogOfWar(matches, routesToUse, normalizedPath);
if (fogOfWar.active && fogOfWar.matches) {
matches = fogOfWar.matches;
}
if (!matches) {
setFetcherError(key, routeId, getInternalRouterError(404, {
pathname: normalizedPath
}), {
flushSync
});
return;
}
let {
path,
submission,
error
} = normalizeNavigateOptions(future.v7_normalizeFormMethod, true, normalizedPath, opts);
if (error) {
setFetcherError(key, routeId, error, {
flushSync
});
return;
}
let match = getTargetMatch(matches, path);
let preventScrollReset = (opts && opts.preventScrollReset) === true;
if (submission && isMutationMethod(submission.formMethod)) {
handleFetcherAction(key, routeId, path, match, matches, fogOfWar.active, flushSync, preventScrollReset, submission);
return;
}
fetchLoadMatches.set(key, {
routeId,
path
});
handleFetcherLoader(key, routeId, path, match, matches, fogOfWar.active, flushSync, preventScrollReset, submission);
}
async function handleFetcherAction(key, routeId, path, match, requestMatches, isFogOfWar, flushSync, preventScrollReset, submission) {
interruptActiveLoads();
fetchLoadMatches.delete(key);
function detectAndHandle405Error(m) {
if (!m.route.action && !m.route.lazy) {
let error = getInternalRouterError(405, {
method: submission.formMethod,
pathname: path,
routeId
});
setFetcherError(key, routeId, error, {
flushSync
});
return true;
}
return false;
}
if (!isFogOfWar && detectAndHandle405Error(match)) {
return;
}
let existingFetcher = state.fetchers.get(key);
updateFetcherState(key, getSubmittingFetcher(submission, existingFetcher), {
flushSync
});
let abortController = new AbortController();
let fetchRequest = createClientSideRequest(init.history, path, abortController.signal, submission);
if (isFogOfWar) {
let discoverResult = await discoverRoutes(requestMatches, new URL(fetchRequest.url).pathname, fetchRequest.signal, key);
if (discoverResult.type === "aborted") {
return;
} else if (discoverResult.type === "error") {
setFetcherError(key, routeId, discoverResult.error, {
flushSync
});
return;
} else if (!discoverResult.matches) {
setFetcherError(key, routeId, getInternalRouterError(404, {
pathname: path
}), {
flushSync
});
return;
} else {
requestMatches = discoverResult.matches;
match = getTargetMatch(requestMatches, path);
if (detectAndHandle405Error(match)) {
return;
}
}
}
fetchControllers.set(key, abortController);
let originatingLoadId = incrementingLoadId;
let actionResults = await callDataStrategy("action", state, fetchRequest, [match], requestMatches, key);
let actionResult = actionResults[match.route.id];
if (fetchRequest.signal.aborted) {
if (fetchControllers.get(key) === abortController) {
fetchControllers.delete(key);
}
return;
}
if (future.v7_fetcherPersist && deletedFetchers.has(key)) {
if (isRedirectResult(actionResult) || isErrorResult(actionResult)) {
updateFetcherState(key, getDoneFetcher(void 0));
return;
}
} else {
if (isRedirectResult(actionResult)) {
fetchControllers.delete(key);
if (pendingNavigationLoadId > originatingLoadId) {
updateFetcherState(key, getDoneFetcher(void 0));
return;
} else {
fetchRedirectIds.add(key);
updateFetcherState(key, getLoadingFetcher(submission));
return startRedirectNavigation(fetchRequest, actionResult, false, {
fetcherSubmission: submission,
preventScrollReset
});
}
}
if (isErrorResult(actionResult)) {
setFetcherError(key, routeId, actionResult.error);
return;
}
}
if (isDeferredResult(actionResult)) {
throw getInternalRouterError(400, {
type: "defer-action"
});
}
let nextLocation = state.navigation.location || state.location;
let revalidationRequest = createClientSideRequest(init.history, nextLocation, abortController.signal);
let routesToUse = inFlightDataRoutes || dataRoutes;
let matches = state.navigation.state !== "idle" ? matchRoutes(routesToUse, state.navigation.location, basename) : state.matches;
invariant(matches, "Didn't find any matches after fetcher action");
let loadId = ++incrementingLoadId;
fetchReloadIds.set(key, loadId);
let loadFetcher = getLoadingFetcher(submission, actionResult.data);
state.fetchers.set(key, loadFetcher);
let [matchesToLoad, revalidatingFetchers] = getMatchesToLoad(init.history, state, matches, submission, nextLocation, false, future.v7_skipActionErrorRevalidation, isRevalidationRequired, cancelledDeferredRoutes, cancelledFetcherLoads, deletedFetchers, fetchLoadMatches, fetchRedirectIds, routesToUse, basename, [match.route.id, actionResult]);
revalidatingFetchers.filter((rf) => rf.key !== key).forEach((rf) => {
let staleKey = rf.key;
let existingFetcher2 = state.fetchers.get(staleKey);
let revalidatingFetcher = getLoadingFetcher(void 0, existingFetcher2 ? existingFetcher2.data : void 0);
state.fetchers.set(staleKey, revalidatingFetcher);
abortFetcher(staleKey);
if (rf.controller) {
fetchControllers.set(staleKey, rf.controller);
}
});
updateState({
fetchers: new Map(state.fetchers)
});
let abortPendingFetchRevalidations = () => revalidatingFetchers.forEach((rf) => abortFetcher(rf.key));
abortController.signal.addEventListener("abort", abortPendingFetchRevalidations);
let {
loaderResults,
fetcherResults
} = await callLoadersAndMaybeResolveData(state, matches, matchesToLoad, revalidatingFetchers, revalidationRequest);
if (abortController.signal.aborted) {
return;
}
abortController.signal.removeEventListener("abort", abortPendingFetchRevalidations);
fetchReloadIds.delete(key);
fetchControllers.delete(key);
revalidatingFetchers.forEach((r) => fetchControllers.delete(r.key));
let redirect4 = findRedirect(loaderResults);
if (redirect4) {
return startRedirectNavigation(revalidationRequest, redirect4.result, false, {
preventScrollReset
});
}
redirect4 = findRedirect(fetcherResults);
if (redirect4) {
fetchRedirectIds.add(redirect4.key);
return startRedirectNavigation(revalidationRequest, redirect4.result, false, {
preventScrollReset
});
}
let {
loaderData,
errors
} = processLoaderData(state, matches, loaderResults, void 0, revalidatingFetchers, fetcherResults, activeDeferreds);
if (state.fetchers.has(key)) {
let doneFetcher = getDoneFetcher(actionResult.data);
state.fetchers.set(key, doneFetcher);
}
abortStaleFetchLoads(loadId);
if (state.navigation.state === "loading" && loadId > pendingNavigationLoadId) {
invariant(pendingAction, "Expected pending action");
pendingNavigationController && pendingNavigationController.abort();
completeNavigation(state.navigation.location, {
matches,
loaderData,
errors,
fetchers: new Map(state.fetchers)
});
} else {
updateState({
errors,
loaderData: mergeLoaderData(state.loaderData, loaderData, matches, errors),
fetchers: new Map(state.fetchers)
});
isRevalidationRequired = false;
}
}
async function handleFetcherLoader(key, routeId, path, match, matches, isFogOfWar, flushSync, preventScrollReset, submission) {
let existingFetcher = state.fetchers.get(key);
updateFetcherState(key, getLoadingFetcher(submission, existingFetcher ? existingFetcher.data : void 0), {
flushSync
});
let abortController = new AbortController();
let fetchRequest = createClientSideRequest(init.history, path, abortController.signal);
if (isFogOfWar) {
let discoverResult = await discoverRoutes(matches, new URL(fetchRequest.url).pathname, fetchRequest.signal, key);
if (discoverResult.type === "aborted") {
return;
} else if (discoverResult.type === "error") {
setFetcherError(key, routeId, discoverResult.error, {
flushSync
});
return;
} else if (!discoverResult.matches) {
setFetcherError(key, routeId, getInternalRouterError(404, {
pathname: path
}), {
flushSync
});
return;
} else {
matches = discoverResult.matches;
match = getTargetMatch(matches, path);
}
}
fetchControllers.set(key, abortController);
let originatingLoadId = incrementingLoadId;
let results = await callDataStrategy("loader", state, fetchRequest, [match], matches, key);
let result = results[match.route.id];
if (isDeferredResult(result)) {
result = await resolveDeferredData(result, fetchRequest.signal, true) || result;
}
if (fetchControllers.get(key) === abortController) {
fetchControllers.delete(key);
}
if (fetchRequest.signal.aborted) {
return;
}
if (deletedFetchers.has(key)) {
updateFetcherState(key, getDoneFetcher(void 0));
return;
}
if (isRedirectResult(result)) {
if (pendingNavigationLoadId > originatingLoadId) {
updateFetcherState(key, getDoneFetcher(void 0));
return;
} else {
fetchRedirectIds.add(key);
await startRedirectNavigation(fetchRequest, result, false, {
preventScrollReset
});
return;
}
}
if (isErrorResult(result)) {
setFetcherError(key, routeId, result.error);
return;
}
invariant(!isDeferredResult(result), "Unhandled fetcher deferred data");
updateFetcherState(key, getDoneFetcher(result.data));
}
async function startRedirectNavigation(request, redirect4, isNavigation, _temp2) {
let {
submission,
fetcherSubmission,
preventScrollReset,
replace: replace3
} = _temp2 === void 0 ? {} : _temp2;
if (redirect4.response.headers.has("X-Remix-Revalidate")) {
isRevalidationRequired = true;
}
let location = redirect4.response.headers.get("Location");
invariant(location, "Expected a Location header on the redirect Response");
location = normalizeRedirectLocation(location, new URL(request.url), basename);
let redirectLocation = createLocation(state.location, location, {
_isRedirect: true
});
if (isBrowser2) {
let isDocumentReload = false;
if (redirect4.response.headers.has("X-Remix-Reload-Document")) {
isDocumentReload = true;
} else if (ABSOLUTE_URL_REGEX.test(location)) {
const url = init.history.createURL(location);
isDocumentReload = // Hard reload if it's an absolute URL to a new origin
url.origin !== routerWindow.location.origin || // Hard reload if it's an absolute URL that does not match our basename
stripBasename(url.pathname, basename) == null;
}
if (isDocumentReload) {
if (replace3) {
routerWindow.location.replace(location);
} else {
routerWindow.location.assign(location);
}
return;
}
}
pendingNavigationController = null;
let redirectHistoryAction = replace3 === true || redirect4.response.headers.has("X-Remix-Replace") ? Action.Replace : Action.Push;
let {
formMethod,
formAction,
formEncType
} = state.navigation;
if (!submission && !fetcherSubmission && formMethod && formAction && formEncType) {
submission = getSubmissionFromNavigation(state.navigation);
}
let activeSubmission = submission || fetcherSubmission;
if (redirectPreserveMethodStatusCodes.has(redirect4.response.status) && activeSubmission && isMutationMethod(activeSubmission.formMethod)) {
await startNavigation(redirectHistoryAction, redirectLocation, {
submission: _extends({}, activeSubmission, {
formAction: location
}),
// Preserve these flags across redirects
preventScrollReset: preventScrollReset || pendingPreventScrollReset,
enableViewTransition: isNavigation ? pendingViewTransitionEnabled : void 0
});
} else {
let overrideNavigation = getLoadingNavigation(redirectLocation, submission);
await startNavigation(redirectHistoryAction, redirectLocation, {
overrideNavigation,
// Send fetcher submissions through for shouldRevalidate
fetcherSubmission,
// Preserve these flags across redirects
preventScrollReset: preventScrollReset || pendingPreventScrollReset,
enableViewTransition: isNavigation ? pendingViewTransitionEnabled : void 0
});
}
}
async function callDataStrategy(type, state2, request, matchesToLoad, matches, fetcherKey) {
let results;
let dataResults = {};
try {
results = await callDataStrategyImpl(dataStrategyImpl, type, state2, request, matchesToLoad, matches, fetcherKey, manifest, mapRouteProperties2);
} catch (e) {
matchesToLoad.forEach((m) => {
dataResults[m.route.id] = {
type: ResultType.error,
error: e
};
});
return dataResults;
}
for (let [routeId, result] of Object.entries(results)) {
if (isRedirectDataStrategyResultResult(result)) {
let response = result.result;
dataResults[routeId] = {
type: ResultType.redirect,
response: normalizeRelativeRoutingRedirectResponse(response, request, routeId, matches, basename, future.v7_relativeSplatPath)
};
} else {
dataResults[routeId] = await convertDataStrategyResultToDataResult(result);
}
}
return dataResults;
}
async function callLoadersAndMaybeResolveData(state2, matches, matchesToLoad, fetchersToLoad, request) {
let currentMatches = state2.matches;
let loaderResultsPromise = callDataStrategy("loader", state2, request, matchesToLoad, matches, null);
let fetcherResultsPromise = Promise.all(fetchersToLoad.map(async (f) => {
if (f.matches && f.match && f.controller) {
let results = await callDataStrategy("loader", state2, createClientSideRequest(init.history, f.path, f.controller.signal), [f.match], f.matches, f.key);
let result = results[f.match.route.id];
return {
[f.key]: result
};
} else {
return Promise.resolve({
[f.key]: {
type: ResultType.error,
error: getInternalRouterError(404, {
pathname: f.path
})
}
});
}
}));
let loaderResults = await loaderResultsPromise;
let fetcherResults = (await fetcherResultsPromise).reduce((acc, r) => Object.assign(acc, r), {});
await Promise.all([resolveNavigationDeferredResults(matches, loaderResults, request.signal, currentMatches, state2.loaderData), resolveFetcherDeferredResults(matches, fetcherResults, fetchersToLoad)]);
return {
loaderResults,
fetcherResults
};
}
function interruptActiveLoads() {
isRevalidationRequired = true;
cancelledDeferredRoutes.push(...cancelActiveDeferreds());
fetchLoadMatches.forEach((_, key) => {
if (fetchControllers.has(key)) {
cancelledFetcherLoads.add(key);
}
abortFetcher(key);
});
}
function updateFetcherState(key, fetcher, opts) {
if (opts === void 0) {
opts = {};
}
state.fetchers.set(key, fetcher);
updateState({
fetchers: new Map(state.fetchers)
}, {
flushSync: (opts && opts.flushSync) === true
});
}
function setFetcherError(key, routeId, error, opts) {
if (opts === void 0) {
opts = {};
}
let boundaryMatch = findNearestBoundary(state.matches, routeId);
deleteFetcher(key);
updateState({
errors: {
[boundaryMatch.route.id]: error
},
fetchers: new Map(state.fetchers)
}, {
flushSync: (opts && opts.flushSync) === true
});
}
function getFetcher(key) {
activeFetchers.set(key, (activeFetchers.get(key) || 0) + 1);
if (deletedFetchers.has(key)) {
deletedFetchers.delete(key);
}
return state.fetchers.get(key) || IDLE_FETCHER;
}
function deleteFetcher(key) {
let fetcher = state.fetchers.get(key);
if (fetchControllers.has(key) && !(fetcher && fetcher.state === "loading" && fetchReloadIds.has(key))) {
abortFetcher(key);
}
fetchLoadMatches.delete(key);
fetchReloadIds.delete(key);
fetchRedirectIds.delete(key);
if (future.v7_fetcherPersist) {
deletedFetchers.delete(key);
}
cancelledFetcherLoads.delete(key);
state.fetchers.delete(key);
}
function deleteFetcherAndUpdateState(key) {
let count = (activeFetchers.get(key) || 0) - 1;
if (count <= 0) {
activeFetchers.delete(key);
deletedFetchers.add(key);
if (!future.v7_fetcherPersist) {
deleteFetcher(key);
}
} else {
activeFetchers.set(key, count);
}
updateState({
fetchers: new Map(state.fetchers)
});
}
function abortFetcher(key) {
let controller = fetchControllers.get(key);
if (controller) {
controller.abort();
fetchControllers.delete(key);
}
}
function markFetchersDone(keys) {
for (let key of keys) {
let fetcher = getFetcher(key);
let doneFetcher = getDoneFetcher(fetcher.data);
state.fetchers.set(key, doneFetcher);
}
}
function markFetchRedirectsDone() {
let doneKeys = [];
let updatedFetchers = false;
for (let key of fetchRedirectIds) {
let fetcher = state.fetchers.get(key);
invariant(fetcher, "Expected fetcher: " + key);
if (fetcher.state === "loading") {
fetchRedirectIds.delete(key);
doneKeys.push(key);
updatedFetchers = true;
}
}
markFetchersDone(doneKeys);
return updatedFetchers;
}
function abortStaleFetchLoads(landedId) {
let yeetedKeys = [];
for (let [key, id] of fetchReloadIds) {
if (id < landedId) {
let fetcher = state.fetchers.get(key);
invariant(fetcher, "Expected fetcher: " + key);
if (fetcher.state === "loading") {
abortFetcher(key);
fetchReloadIds.delete(key);
yeetedKeys.push(key);
}
}
}
markFetchersDone(yeetedKeys);
return yeetedKeys.length > 0;
}
function getBlocker(key, fn) {
let blocker = state.blockers.get(key) || IDLE_BLOCKER;
if (blockerFunctions.get(key) !== fn) {
blockerFunctions.set(key, fn);
}
return blocker;
}
function deleteBlocker(key) {
state.blockers.delete(key);
blockerFunctions.delete(key);
}
function updateBlocker(key, newBlocker) {
let blocker = state.blockers.get(key) || IDLE_BLOCKER;
invariant(blocker.state === "unblocked" && newBlocker.state === "blocked" || blocker.state === "blocked" && newBlocker.state === "blocked" || blocker.state === "blocked" && newBlocker.state === "proceeding" || blocker.state === "blocked" && newBlocker.state === "unblocked" || blocker.state === "proceeding" && newBlocker.state === "unblocked", "Invalid blocker state transition: " + blocker.state + " -> " + newBlocker.state);
let blockers = new Map(state.blockers);
blockers.set(key, newBlocker);
updateState({
blockers
});
}
function shouldBlockNavigation(_ref2) {
let {
currentLocation,
nextLocation,
historyAction
} = _ref2;
if (blockerFunctions.size === 0) {
return;
}
if (blockerFunctions.size > 1) {
warning(false, "A router only supports one blocker at a time");
}
let entries = Array.from(blockerFunctions.entries());
let [blockerKey, blockerFunction] = entries[entries.length - 1];
let blocker = state.blockers.get(blockerKey);
if (blocker && blocker.state === "proceeding") {
return;
}
if (blockerFunction({
currentLocation,
nextLocation,
historyAction
})) {
return blockerKey;
}
}
function handleNavigational404(pathname) {
let error = getInternalRouterError(404, {
pathname
});
let routesToUse = inFlightDataRoutes || dataRoutes;
let {
matches,
route
} = getShortCircuitMatches(routesToUse);
cancelActiveDeferreds();
return {
notFoundMatches: matches,
route,
error
};
}
function cancelActiveDeferreds(predicate) {
let cancelledRouteIds = [];
activeDeferreds.forEach((dfd, routeId) => {
if (!predicate || predicate(routeId)) {
dfd.cancel();
cancelledRouteIds.push(routeId);
activeDeferreds.delete(routeId);
}
});
return cancelledRouteIds;
}
function enableScrollRestoration(positions, getPosition, getKey) {
savedScrollPositions2 = positions;
getScrollPosition = getPosition;
getScrollRestorationKey = getKey || null;
if (!initialScrollRestored && state.navigation === IDLE_NAVIGATION) {
initialScrollRestored = true;
let y = getSavedScrollPosition(state.location, state.matches);
if (y != null) {
updateState({
restoreScrollPosition: y
});
}
}
return () => {
savedScrollPositions2 = null;
getScrollPosition = null;
getScrollRestorationKey = null;
};
}
function getScrollKey(location, matches) {
if (getScrollRestorationKey) {
let key = getScrollRestorationKey(location, matches.map((m) => convertRouteMatchToUiMatch(m, state.loaderData)));
return key || location.key;
}
return location.key;
}
function saveScrollPosition(location, matches) {
if (savedScrollPositions2 && getScrollPosition) {
let key = getScrollKey(location, matches);
savedScrollPositions2[key] = getScrollPosition();
}
}
function getSavedScrollPosition(location, matches) {
if (savedScrollPositions2) {
let key = getScrollKey(location, matches);
let y = savedScrollPositions2[key];
if (typeof y === "number") {
return y;
}
}
return null;
}
function checkFogOfWar(matches, routesToUse, pathname) {
if (patchRoutesOnNavigationImpl) {
if (!matches) {
let fogMatches = matchRoutesImpl(routesToUse, pathname, basename, true);
return {
active: true,
matches: fogMatches || []
};
} else {
if (Object.keys(matches[0].params).length > 0) {
let partialMatches = matchRoutesImpl(routesToUse, pathname, basename, true);
return {
active: true,
matches: partialMatches
};
}
}
}
return {
active: false,
matches: null
};
}
async function discoverRoutes(matches, pathname, signal, fetcherKey) {
if (!patchRoutesOnNavigationImpl) {
return {
type: "success",
matches
};
}
let partialMatches = matches;
while (true) {
let isNonHMR = inFlightDataRoutes == null;
let routesToUse = inFlightDataRoutes || dataRoutes;
let localManifest = manifest;
try {
await patchRoutesOnNavigationImpl({
signal,
path: pathname,
matches: partialMatches,
fetcherKey,
patch: (routeId, children) => {
if (signal.aborted)
return;
patchRoutesImpl(routeId, children, routesToUse, localManifest, mapRouteProperties2);
}
});
} catch (e) {
return {
type: "error",
error: e,
partialMatches
};
} finally {
if (isNonHMR && !signal.aborted) {
dataRoutes = [...dataRoutes];
}
}
if (signal.aborted) {
return {
type: "aborted"
};
}
let newMatches = matchRoutes(routesToUse, pathname, basename);
if (newMatches) {
return {
type: "success",
matches: newMatches
};
}
let newPartialMatches = matchRoutesImpl(routesToUse, pathname, basename, true);
if (!newPartialMatches || partialMatches.length === newPartialMatches.length && partialMatches.every((m, i) => m.route.id === newPartialMatches[i].route.id)) {
return {
type: "success",
matches: null
};
}
partialMatches = newPartialMatches;
}
}
function _internalSetRoutes(newRoutes) {
manifest = {};
inFlightDataRoutes = convertRoutesToDataRoutes(newRoutes, mapRouteProperties2, void 0, manifest);
}
function patchRoutes(routeId, children) {
let isNonHMR = inFlightDataRoutes == null;
let routesToUse = inFlightDataRoutes || dataRoutes;
patchRoutesImpl(routeId, children, routesToUse, manifest, mapRouteProperties2);
if (isNonHMR) {
dataRoutes = [...dataRoutes];
updateState({});
}
}
router2 = {
get basename() {
return basename;
},
get future() {
return future;
},
get state() {
return state;
},
get routes() {
return dataRoutes;
},
get window() {
return routerWindow;
},
initialize,
subscribe,
enableScrollRestoration,
navigate,
fetch: fetch2,
revalidate,
// Passthrough to history-aware createHref used by useHref so we get proper
// hash-aware URLs in DOM paths
createHref: (to) => init.history.createHref(to),
encodeLocation: (to) => init.history.encodeLocation(to),
getFetcher,
deleteFetcher: deleteFetcherAndUpdateState,
dispose,
getBlocker,
deleteBlocker,
patchRoutes,
_internalFetchControllers: fetchControllers,
_internalActiveDeferreds: activeDeferreds,
// TODO: Remove setRoutes, it's temporary to avoid dealing with
// updating the tree while validating the update algorithm.
_internalSetRoutes
};
return router2;
}
function createStaticHandler(routes, opts) {
invariant(routes.length > 0, "You must provide a non-empty routes array to createStaticHandler");
let manifest = {};
let basename = (opts ? opts.basename : null) || "/";
let mapRouteProperties2;
if (opts != null && opts.mapRouteProperties) {
mapRouteProperties2 = opts.mapRouteProperties;
} else if (opts != null && opts.detectErrorBoundary) {
let detectErrorBoundary = opts.detectErrorBoundary;
mapRouteProperties2 = (route) => ({
hasErrorBoundary: detectErrorBoundary(route)
});
} else {
mapRouteProperties2 = defaultMapRouteProperties;
}
let future = _extends({
v7_relativeSplatPath: false,
v7_throwAbortReason: false
}, opts ? opts.future : null);
let dataRoutes = convertRoutesToDataRoutes(routes, mapRouteProperties2, void 0, manifest);
async function query(request, _temp3) {
let {
requestContext,
skipLoaderErrorBubbling,
dataStrategy
} = _temp3 === void 0 ? {} : _temp3;
let url = new URL(request.url);
let method = request.method;
let location = createLocation("", createPath(url), null, "default");
let matches = matchRoutes(dataRoutes, location, basename);
if (!isValidMethod(method) && method !== "HEAD") {
let error = getInternalRouterError(405, {
method
});
let {
matches: methodNotAllowedMatches,
route
} = getShortCircuitMatches(dataRoutes);
return {
basename,
location,
matches: methodNotAllowedMatches,
loaderData: {},
actionData: null,
errors: {
[route.id]: error
},
statusCode: error.status,
loaderHeaders: {},
actionHeaders: {},
activeDeferreds: null
};
} else if (!matches) {
let error = getInternalRouterError(404, {
pathname: location.pathname
});
let {
matches: notFoundMatches,
route
} = getShortCircuitMatches(dataRoutes);
return {
basename,
location,
matches: notFoundMatches,
loaderData: {},
actionData: null,
errors: {
[route.id]: error
},
statusCode: error.status,
loaderHeaders: {},
actionHeaders: {},
activeDeferreds: null
};
}
let result = await queryImpl(request, location, matches, requestContext, dataStrategy || null, skipLoaderErrorBubbling === true, null);
if (isResponse(result)) {
return result;
}
return _extends({
location,
basename
}, result);
}
async function queryRoute(request, _temp4) {
let {
routeId,
requestContext,
dataStrategy
} = _temp4 === void 0 ? {} : _temp4;
let url = new URL(request.url);
let method = request.method;
let location = createLocation("", createPath(url), null, "default");
let matches = matchRoutes(dataRoutes, location, basename);
if (!isValidMethod(method) && method !== "HEAD" && method !== "OPTIONS") {
throw getInternalRouterError(405, {
method
});
} else if (!matches) {
throw getInternalRouterError(404, {
pathname: location.pathname
});
}
let match = routeId ? matches.find((m) => m.route.id === routeId) : getTargetMatch(matches, location);
if (routeId && !match) {
throw getInternalRouterError(403, {
pathname: location.pathname,
routeId
});
} else if (!match) {
throw getInternalRouterError(404, {
pathname: location.pathname
});
}
let result = await queryImpl(request, location, matches, requestContext, dataStrategy || null, false, match);
if (isResponse(result)) {
return result;
}
let error = result.errors ? Object.values(result.errors)[0] : void 0;
if (error !== void 0) {
throw error;
}
if (result.actionData) {
return Object.values(result.actionData)[0];
}
if (result.loaderData) {
var _result$activeDeferre;
let data3 = Object.values(result.loaderData)[0];
if ((_result$activeDeferre = result.activeDeferreds) != null && _result$activeDeferre[match.route.id]) {
data3[UNSAFE_DEFERRED_SYMBOL] = result.activeDeferreds[match.route.id];
}
return data3;
}
return void 0;
}
async function queryImpl(request, location, matches, requestContext, dataStrategy, skipLoaderErrorBubbling, routeMatch) {
invariant(request.signal, "query()/queryRoute() requests must contain an AbortController signal");
try {
if (isMutationMethod(request.method.toLowerCase())) {
let result2 = await submit(request, matches, routeMatch || getTargetMatch(matches, location), requestContext, dataStrategy, skipLoaderErrorBubbling, routeMatch != null);
return result2;
}
let result = await loadRouteData(request, matches, requestContext, dataStrategy, skipLoaderErrorBubbling, routeMatch);
return isResponse(result) ? result : _extends({}, result, {
actionData: null,
actionHeaders: {}
});
} catch (e) {
if (isDataStrategyResult(e) && isResponse(e.result)) {
if (e.type === ResultType.error) {
throw e.result;
}
return e.result;
}
if (isRedirectResponse(e)) {
return e;
}
throw e;
}
}
async function submit(request, matches, actionMatch, requestContext, dataStrategy, skipLoaderErrorBubbling, isRouteRequest) {
let result;
if (!actionMatch.route.action && !actionMatch.route.lazy) {
let error = getInternalRouterError(405, {
method: request.method,
pathname: new URL(request.url).pathname,
routeId: actionMatch.route.id
});
if (isRouteRequest) {
throw error;
}
result = {
type: ResultType.error,
error
};
} else {
let results = await callDataStrategy("action", request, [actionMatch], matches, isRouteRequest, requestContext, dataStrategy);
result = results[actionMatch.route.id];
if (request.signal.aborted) {
throwStaticHandlerAbortedError(request, isRouteRequest, future);
}
}
if (isRedirectResult(result)) {
throw new Response(null, {
status: result.response.status,
headers: {
Location: result.response.headers.get("Location")
}
});
}
if (isDeferredResult(result)) {
let error = getInternalRouterError(400, {
type: "defer-action"
});
if (isRouteRequest) {
throw error;
}
result = {
type: ResultType.error,
error
};
}
if (isRouteRequest) {
if (isErrorResult(result)) {
throw result.error;
}
return {
matches: [actionMatch],
loaderData: {},
actionData: {
[actionMatch.route.id]: result.data
},
errors: null,
// Note: statusCode + headers are unused here since queryRoute will
// return the raw Response or value
statusCode: 200,
loaderHeaders: {},
actionHeaders: {},
activeDeferreds: null
};
}
let loaderRequest = new Request(request.url, {
headers: request.headers,
redirect: request.redirect,
signal: request.signal
});
if (isErrorResult(result)) {
let boundaryMatch = skipLoaderErrorBubbling ? actionMatch : findNearestBoundary(matches, actionMatch.route.id);
let context2 = await loadRouteData(loaderRequest, matches, requestContext, dataStrategy, skipLoaderErrorBubbling, null, [boundaryMatch.route.id, result]);
return _extends({}, context2, {
statusCode: isRouteErrorResponse(result.error) ? result.error.status : result.statusCode != null ? result.statusCode : 500,
actionData: null,
actionHeaders: _extends({}, result.headers ? {
[actionMatch.route.id]: result.headers
} : {})
});
}
let context = await loadRouteData(loaderRequest, matches, requestContext, dataStrategy, skipLoaderErrorBubbling, null);
return _extends({}, context, {
actionData: {
[actionMatch.route.id]: result.data
}
}, result.statusCode ? {
statusCode: result.statusCode
} : {}, {
actionHeaders: result.headers ? {
[actionMatch.route.id]: result.headers
} : {}
});
}
async function loadRouteData(request, matches, requestContext, dataStrategy, skipLoaderErrorBubbling, routeMatch, pendingActionResult) {
let isRouteRequest = routeMatch != null;
if (isRouteRequest && !(routeMatch != null && routeMatch.route.loader) && !(routeMatch != null && routeMatch.route.lazy)) {
throw getInternalRouterError(400, {
method: request.method,
pathname: new URL(request.url).pathname,
routeId: routeMatch == null ? void 0 : routeMatch.route.id
});
}
let requestMatches = routeMatch ? [routeMatch] : pendingActionResult && isErrorResult(pendingActionResult[1]) ? getLoaderMatchesUntilBoundary(matches, pendingActionResult[0]) : matches;
let matchesToLoad = requestMatches.filter((m) => m.route.loader || m.route.lazy);
if (matchesToLoad.length === 0) {
return {
matches,
// Add a null for all matched routes for proper revalidation on the client
loaderData: matches.reduce((acc, m) => Object.assign(acc, {
[m.route.id]: null
}), {}),
errors: pendingActionResult && isErrorResult(pendingActionResult[1]) ? {
[pendingActionResult[0]]: pendingActionResult[1].error
} : null,
statusCode: 200,
loaderHeaders: {},
activeDeferreds: null
};
}
let results = await callDataStrategy("loader", request, matchesToLoad, matches, isRouteRequest, requestContext, dataStrategy);
if (request.signal.aborted) {
throwStaticHandlerAbortedError(request, isRouteRequest, future);
}
let activeDeferreds = /* @__PURE__ */ new Map();
let context = processRouteLoaderData(matches, results, pendingActionResult, activeDeferreds, skipLoaderErrorBubbling);
let executedLoaders = new Set(matchesToLoad.map((match) => match.route.id));
matches.forEach((match) => {
if (!executedLoaders.has(match.route.id)) {
context.loaderData[match.route.id] = null;
}
});
return _extends({}, context, {
matches,
activeDeferreds: activeDeferreds.size > 0 ? Object.fromEntries(activeDeferreds.entries()) : null
});
}
async function callDataStrategy(type, request, matchesToLoad, matches, isRouteRequest, requestContext, dataStrategy) {
let results = await callDataStrategyImpl(dataStrategy || defaultDataStrategy, type, null, request, matchesToLoad, matches, null, manifest, mapRouteProperties2, requestContext);
let dataResults = {};
await Promise.all(matches.map(async (match) => {
if (!(match.route.id in results)) {
return;
}
let result = results[match.route.id];
if (isRedirectDataStrategyResultResult(result)) {
let response = result.result;
throw normalizeRelativeRoutingRedirectResponse(response, request, match.route.id, matches, basename, future.v7_relativeSplatPath);
}
if (isResponse(result.result) && isRouteRequest) {
throw result;
}
dataResults[match.route.id] = await convertDataStrategyResultToDataResult(result);
}));
return dataResults;
}
return {
dataRoutes,
query,
queryRoute
};
}
function getStaticContextFromError(routes, context, error) {
let newContext = _extends({}, context, {
statusCode: isRouteErrorResponse(error) ? error.status : 500,
errors: {
[context._deepestRenderedBoundaryId || routes[0].id]: error
}
});
return newContext;
}
function throwStaticHandlerAbortedError(request, isRouteRequest, future) {
if (future.v7_throwAbortReason && request.signal.reason !== void 0) {
throw request.signal.reason;
}
let method = isRouteRequest ? "queryRoute" : "query";
throw new Error(method + "() call aborted: " + request.method + " " + request.url);
}
function isSubmissionNavigation(opts) {
return opts != null && ("formData" in opts && opts.formData != null || "body" in opts && opts.body !== void 0);
}
function normalizeTo(location, matches, basename, prependBasename, to, v7_relativeSplatPath, fromRouteId, relative) {
let contextualMatches;
let activeRouteMatch;
if (fromRouteId) {
contextualMatches = [];
for (let match of matches) {
contextualMatches.push(match);
if (match.route.id === fromRouteId) {
activeRouteMatch = match;
break;
}
}
} else {
contextualMatches = matches;
activeRouteMatch = matches[matches.length - 1];
}
let path = resolveTo(to ? to : ".", getResolveToMatches(contextualMatches, v7_relativeSplatPath), stripBasename(location.pathname, basename) || location.pathname, relative === "path");
if (to == null) {
path.search = location.search;
path.hash = location.hash;
}
if ((to == null || to === "" || to === ".") && activeRouteMatch) {
let nakedIndex = hasNakedIndexQuery(path.search);
if (activeRouteMatch.route.index && !nakedIndex) {
path.search = path.search ? path.search.replace(/^\?/, "?index&") : "?index";
} else if (!activeRouteMatch.route.index && nakedIndex) {
let params = new URLSearchParams(path.search);
let indexValues = params.getAll("index");
params.delete("index");
indexValues.filter((v) => v).forEach((v) => params.append("index", v));
let qs = params.toString();
path.search = qs ? "?" + qs : "";
}
}
if (prependBasename && basename !== "/") {
path.pathname = path.pathname === "/" ? basename : joinPaths([basename, path.pathname]);
}
return createPath(path);
}
function normalizeNavigateOptions(normalizeFormMethod, isFetcher, path, opts) {
if (!opts || !isSubmissionNavigation(opts)) {
return {
path
};
}
if (opts.formMethod && !isValidMethod(opts.formMethod)) {
return {
path,
error: getInternalRouterError(405, {
method: opts.formMethod
})
};
}
let getInvalidBodyError = () => ({
path,
error: getInternalRouterError(400, {
type: "invalid-body"
})
});
let rawFormMethod = opts.formMethod || "get";
let formMethod = normalizeFormMethod ? rawFormMethod.toUpperCase() : rawFormMethod.toLowerCase();
let formAction = stripHashFromPath(path);
if (opts.body !== void 0) {
if (opts.formEncType === "text/plain") {
if (!isMutationMethod(formMethod)) {
return getInvalidBodyError();
}
let text = typeof opts.body === "string" ? opts.body : opts.body instanceof FormData || opts.body instanceof URLSearchParams ? (
// https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#plain-text-form-data
Array.from(opts.body.entries()).reduce((acc, _ref3) => {
let [name, value] = _ref3;
return "" + acc + name + "=" + value + "\n";
}, "")
) : String(opts.body);
return {
path,
submission: {
formMethod,
formAction,
formEncType: opts.formEncType,
formData: void 0,
json: void 0,
text
}
};
} else if (opts.formEncType === "application/json") {
if (!isMutationMethod(formMethod)) {
return getInvalidBodyError();
}
try {
let json4 = typeof opts.body === "string" ? JSON.parse(opts.body) : opts.body;
return {
path,
submission: {
formMethod,
formAction,
formEncType: opts.formEncType,
formData: void 0,
json: json4,
text: void 0
}
};
} catch (e) {
return getInvalidBodyError();
}
}
}
invariant(typeof FormData === "function", "FormData is not available in this environment");
let searchParams;
let formData;
if (opts.formData) {
searchParams = convertFormDataToSearchParams(opts.formData);
formData = opts.formData;
} else if (opts.body instanceof FormData) {
searchParams = convertFormDataToSearchParams(opts.body);
formData = opts.body;
} else if (opts.body instanceof URLSearchParams) {
searchParams = opts.body;
formData = convertSearchParamsToFormData(searchParams);
} else if (opts.body == null) {
searchParams = new URLSearchParams();
formData = new FormData();
} else {
try {
searchParams = new URLSearchParams(opts.body);
formData = convertSearchParamsToFormData(searchParams);
} catch (e) {
return getInvalidBodyError();
}
}
let submission = {
formMethod,
formAction,
formEncType: opts && opts.formEncType || "application/x-www-form-urlencoded",
formData,
json: void 0,
text: void 0
};
if (isMutationMethod(submission.formMethod)) {
return {
path,
submission
};
}
let parsedPath = parsePath(path);
if (isFetcher && parsedPath.search && hasNakedIndexQuery(parsedPath.search)) {
searchParams.append("index", "");
}
parsedPath.search = "?" + searchParams;
return {
path: createPath(parsedPath),
submission
};
}
function getLoaderMatchesUntilBoundary(matches, boundaryId, includeBoundary) {
if (includeBoundary === void 0) {
includeBoundary = false;
}
let index = matches.findIndex((m) => m.route.id === boundaryId);
if (index >= 0) {
return matches.slice(0, includeBoundary ? index + 1 : index);
}
return matches;
}
function getMatchesToLoad(history, state, matches, submission, location, initialHydration, skipActionErrorRevalidation, isRevalidationRequired, cancelledDeferredRoutes, cancelledFetcherLoads, deletedFetchers, fetchLoadMatches, fetchRedirectIds, routesToUse, basename, pendingActionResult) {
let actionResult = pendingActionResult ? isErrorResult(pendingActionResult[1]) ? pendingActionResult[1].error : pendingActionResult[1].data : void 0;
let currentUrl = history.createURL(state.location);
let nextUrl = history.createURL(location);
let boundaryMatches = matches;
if (initialHydration && state.errors) {
boundaryMatches = getLoaderMatchesUntilBoundary(matches, Object.keys(state.errors)[0], true);
} else if (pendingActionResult && isErrorResult(pendingActionResult[1])) {
boundaryMatches = getLoaderMatchesUntilBoundary(matches, pendingActionResult[0]);
}
let actionStatus = pendingActionResult ? pendingActionResult[1].statusCode : void 0;
let shouldSkipRevalidation = skipActionErrorRevalidation && actionStatus && actionStatus >= 400;
let navigationMatches = boundaryMatches.filter((match, index) => {
let {
route
} = match;
if (route.lazy) {
return true;
}
if (route.loader == null) {
return false;
}
if (initialHydration) {
return shouldLoadRouteOnHydration(route, state.loaderData, state.errors);
}
if (isNewLoader(state.loaderData, state.matches[index], match) || cancelledDeferredRoutes.some((id) => id === match.route.id)) {
return true;
}
let currentRouteMatch = state.matches[index];
let nextRouteMatch = match;
return shouldRevalidateLoader(match, _extends({
currentUrl,
currentParams: currentRouteMatch.params,
nextUrl,
nextParams: nextRouteMatch.params
}, submission, {
actionResult,
actionStatus,
defaultShouldRevalidate: shouldSkipRevalidation ? false : (
// Forced revalidation due to submission, useRevalidator, or X-Remix-Revalidate
isRevalidationRequired || currentUrl.pathname + currentUrl.search === nextUrl.pathname + nextUrl.search || // Search params affect all loaders
currentUrl.search !== nextUrl.search || isNewRouteInstance(currentRouteMatch, nextRouteMatch)
)
}));
});
let revalidatingFetchers = [];
fetchLoadMatches.forEach((f, key) => {
if (initialHydration || !matches.some((m) => m.route.id === f.routeId) || deletedFetchers.has(key)) {
return;
}
let fetcherMatches = matchRoutes(routesToUse, f.path, basename);
if (!fetcherMatches) {
revalidatingFetchers.push({
key,
routeId: f.routeId,
path: f.path,
matches: null,
match: null,
controller: null
});
return;
}
let fetcher = state.fetchers.get(key);
let fetcherMatch = getTargetMatch(fetcherMatches, f.path);
let shouldRevalidate = false;
if (fetchRedirectIds.has(key)) {
shouldRevalidate = false;
} else if (cancelledFetcherLoads.has(key)) {
cancelledFetcherLoads.delete(key);
shouldRevalidate = true;
} else if (fetcher && fetcher.state !== "idle" && fetcher.data === void 0) {
shouldRevalidate = isRevalidationRequired;
} else {
shouldRevalidate = shouldRevalidateLoader(fetcherMatch, _extends({
currentUrl,
currentParams: state.matches[state.matches.length - 1].params,
nextUrl,
nextParams: matches[matches.length - 1].params
}, submission, {
actionResult,
actionStatus,
defaultShouldRevalidate: shouldSkipRevalidation ? false : isRevalidationRequired
}));
}
if (shouldRevalidate) {
revalidatingFetchers.push({
key,
routeId: f.routeId,
path: f.path,
matches: fetcherMatches,
match: fetcherMatch,
controller: new AbortController()
});
}
});
return [navigationMatches, revalidatingFetchers];
}
function shouldLoadRouteOnHydration(route, loaderData, errors) {
if (route.lazy) {
return true;
}
if (!route.loader) {
return false;
}
let hasData = loaderData != null && loaderData[route.id] !== void 0;
let hasError = errors != null && errors[route.id] !== void 0;
if (!hasData && hasError) {
return false;
}
if (typeof route.loader === "function" && route.loader.hydrate === true) {
return true;
}
return !hasData && !hasError;
}
function isNewLoader(currentLoaderData, currentMatch, match) {
let isNew = (
// [a] -> [a, b]
!currentMatch || // [a, b] -> [a, c]
match.route.id !== currentMatch.route.id
);
let isMissingData = currentLoaderData[match.route.id] === void 0;
return isNew || isMissingData;
}
function isNewRouteInstance(currentMatch, match) {
let currentPath = currentMatch.route.path;
return (
// param change for this match, /users/123 -> /users/456
currentMatch.pathname !== match.pathname || // splat param changed, which is not present in match.path
// e.g. /files/images/avatar.jpg -> files/finances.xls
currentPath != null && currentPath.endsWith("*") && currentMatch.params["*"] !== match.params["*"]
);
}
function shouldRevalidateLoader(loaderMatch, arg) {
if (loaderMatch.route.shouldRevalidate) {
let routeChoice = loaderMatch.route.shouldRevalidate(arg);
if (typeof routeChoice === "boolean") {
return routeChoice;
}
}
return arg.defaultShouldRevalidate;
}
function patchRoutesImpl(routeId, children, routesToUse, manifest, mapRouteProperties2) {
var _childrenToPatch;
let childrenToPatch;
if (routeId) {
let route = manifest[routeId];
invariant(route, "No route found to patch children into: routeId = " + routeId);
if (!route.children) {
route.children = [];
}
childrenToPatch = route.children;
} else {
childrenToPatch = routesToUse;
}
let uniqueChildren = children.filter((newRoute) => !childrenToPatch.some((existingRoute) => isSameRoute(newRoute, existingRoute)));
let newRoutes = convertRoutesToDataRoutes(uniqueChildren, mapRouteProperties2, [routeId || "_", "patch", String(((_childrenToPatch = childrenToPatch) == null ? void 0 : _childrenToPatch.length) || "0")], manifest);
childrenToPatch.push(...newRoutes);
}
function isSameRoute(newRoute, existingRoute) {
if ("id" in newRoute && "id" in existingRoute && newRoute.id === existingRoute.id) {
return true;
}
if (!(newRoute.index === existingRoute.index && newRoute.path === existingRoute.path && newRoute.caseSensitive === existingRoute.caseSensitive)) {
return false;
}
if ((!newRoute.children || newRoute.children.length === 0) && (!existingRoute.children || existingRoute.children.length === 0)) {
return true;
}
return newRoute.children.every((aChild, i) => {
var _existingRoute$childr;
return (_existingRoute$childr = existingRoute.children) == null ? void 0 : _existingRoute$childr.some((bChild) => isSameRoute(aChild, bChild));
});
}
async function loadLazyRouteModule(route, mapRouteProperties2, manifest) {
if (!route.lazy) {
return;
}
let lazyRoute = await route.lazy();
if (!route.lazy) {
return;
}
let routeToUpdate = manifest[route.id];
invariant(routeToUpdate, "No route found in manifest");
let routeUpdates = {};
for (let lazyRouteProperty in lazyRoute) {
let staticRouteValue = routeToUpdate[lazyRouteProperty];
let isPropertyStaticallyDefined = staticRouteValue !== void 0 && // This property isn't static since it should always be updated based
// on the route updates
lazyRouteProperty !== "hasErrorBoundary";
warning(!isPropertyStaticallyDefined, 'Route "' + routeToUpdate.id + '" has a static property "' + lazyRouteProperty + '" defined but its lazy function is also returning a value for this property. ' + ('The lazy route property "' + lazyRouteProperty + '" will be ignored.'));
if (!isPropertyStaticallyDefined && !immutableRouteKeys.has(lazyRouteProperty)) {
routeUpdates[lazyRouteProperty] = lazyRoute[lazyRouteProperty];
}
}
Object.assign(routeToUpdate, routeUpdates);
Object.assign(routeToUpdate, _extends({}, mapRouteProperties2(routeToUpdate), {
lazy: void 0
}));
}
async function defaultDataStrategy(_ref4) {
let {
matches
} = _ref4;
let matchesToLoad = matches.filter((m) => m.shouldLoad);
let results = await Promise.all(matchesToLoad.map((m) => m.resolve()));
return results.reduce((acc, result, i) => Object.assign(acc, {
[matchesToLoad[i].route.id]: result
}), {});
}
async function callDataStrategyImpl(dataStrategyImpl, type, state, request, matchesToLoad, matches, fetcherKey, manifest, mapRouteProperties2, requestContext) {
let loadRouteDefinitionsPromises = matches.map((m) => m.route.lazy ? loadLazyRouteModule(m.route, mapRouteProperties2, manifest) : void 0);
let dsMatches = matches.map((match, i) => {
let loadRoutePromise = loadRouteDefinitionsPromises[i];
let shouldLoad = matchesToLoad.some((m) => m.route.id === match.route.id);
let resolve = async (handlerOverride) => {
if (handlerOverride && request.method === "GET" && (match.route.lazy || match.route.loader)) {
shouldLoad = true;
}
return shouldLoad ? callLoaderOrAction(type, request, match, loadRoutePromise, handlerOverride, requestContext) : Promise.resolve({
type: ResultType.data,
result: void 0
});
};
return _extends({}, match, {
shouldLoad,
resolve
});
});
let results = await dataStrategyImpl({
matches: dsMatches,
request,
params: matches[0].params,
fetcherKey,
context: requestContext
});
try {
await Promise.all(loadRouteDefinitionsPromises);
} catch (e) {
}
return results;
}
async function callLoaderOrAction(type, request, match, loadRoutePromise, handlerOverride, staticContext) {
let result;
let onReject;
let runHandler = (handler) => {
let reject;
let abortPromise = new Promise((_, r) => reject = r);
onReject = () => reject();
request.signal.addEventListener("abort", onReject);
let actualHandler = (ctx) => {
if (typeof handler !== "function") {
return Promise.reject(new Error("You cannot call the handler for a route which defines a boolean " + ('"' + type + '" [routeId: ' + match.route.id + "]")));
}
return handler({
request,
params: match.params,
context: staticContext
}, ...ctx !== void 0 ? [ctx] : []);
};
let handlerPromise = (async () => {
try {
let val = await (handlerOverride ? handlerOverride((ctx) => actualHandler(ctx)) : actualHandler());
return {
type: "data",
result: val
};
} catch (e) {
return {
type: "error",
result: e
};
}
})();
return Promise.race([handlerPromise, abortPromise]);
};
try {
let handler = match.route[type];
if (loadRoutePromise) {
if (handler) {
let handlerError;
let [value] = await Promise.all([
// If the handler throws, don't let it immediately bubble out,
// since we need to let the lazy() execution finish so we know if this
// route has a boundary that can handle the error
runHandler(handler).catch((e) => {
handlerError = e;
}),
loadRoutePromise
]);
if (handlerError !== void 0) {
throw handlerError;
}
result = value;
} else {
await loadRoutePromise;
handler = match.route[type];
if (handler) {
result = await runHandler(handler);
} else if (type === "action") {
let url = new URL(request.url);
let pathname = url.pathname + url.search;
throw getInternalRouterError(405, {
method: request.method,
pathname,
routeId: match.route.id
});
} else {
return {
type: ResultType.data,
result: void 0
};
}
}
} else if (!handler) {
let url = new URL(request.url);
let pathname = url.pathname + url.search;
throw getInternalRouterError(404, {
pathname
});
} else {
result = await runHandler(handler);
}
invariant(result.result !== void 0, "You defined " + (type === "action" ? "an action" : "a loader") + " for route " + ('"' + match.route.id + "\" but didn't return anything from your `" + type + "` ") + "function. Please return a value or `null`.");
} catch (e) {
return {
type: ResultType.error,
result: e
};
} finally {
if (onReject) {
request.signal.removeEventListener("abort", onReject);
}
}
return result;
}
async function convertDataStrategyResultToDataResult(dataStrategyResult) {
let {
result,
type
} = dataStrategyResult;
if (isResponse(result)) {
let data3;
try {
let contentType = result.headers.get("Content-Type");
if (contentType && /\bapplication\/json\b/.test(contentType)) {
if (result.body == null) {
data3 = null;
} else {
data3 = await result.json();
}
} else {
data3 = await result.text();
}
} catch (e) {
return {
type: ResultType.error,
error: e
};
}
if (type === ResultType.error) {
return {
type: ResultType.error,
error: new ErrorResponseImpl(result.status, result.statusText, data3),
statusCode: result.status,
headers: result.headers
};
}
return {
type: ResultType.data,
data: data3,
statusCode: result.status,
headers: result.headers
};
}
if (type === ResultType.error) {
if (isDataWithResponseInit(result)) {
var _result$init3, _result$init4;
if (result.data instanceof Error) {
var _result$init, _result$init2;
return {
type: ResultType.error,
error: result.data,
statusCode: (_result$init = result.init) == null ? void 0 : _result$init.status,
headers: (_result$init2 = result.init) != null && _result$init2.headers ? new Headers(result.init.headers) : void 0
};
}
return {
type: ResultType.error,
error: new ErrorResponseImpl(((_result$init3 = result.init) == null ? void 0 : _result$init3.status) || 500, void 0, result.data),
statusCode: isRouteErrorResponse(result) ? result.status : void 0,
headers: (_result$init4 = result.init) != null && _result$init4.headers ? new Headers(result.init.headers) : void 0
};
}
return {
type: ResultType.error,
error: result,
statusCode: isRouteErrorResponse(result) ? result.status : void 0
};
}
if (isDeferredData(result)) {
var _result$init5, _result$init6;
return {
type: ResultType.deferred,
deferredData: result,
statusCode: (_result$init5 = result.init) == null ? void 0 : _result$init5.status,
headers: ((_result$init6 = result.init) == null ? void 0 : _result$init6.headers) && new Headers(result.init.headers)
};
}
if (isDataWithResponseInit(result)) {
var _result$init7, _result$init8;
return {
type: ResultType.data,
data: result.data,
statusCode: (_result$init7 = result.init) == null ? void 0 : _result$init7.status,
headers: (_result$init8 = result.init) != null && _result$init8.headers ? new Headers(result.init.headers) : void 0
};
}
return {
type: ResultType.data,
data: result
};
}
function normalizeRelativeRoutingRedirectResponse(response, request, routeId, matches, basename, v7_relativeSplatPath) {
let location = response.headers.get("Location");
invariant(location, "Redirects returned/thrown from loaders/actions must have a Location header");
if (!ABSOLUTE_URL_REGEX.test(location)) {
let trimmedMatches = matches.slice(0, matches.findIndex((m) => m.route.id === routeId) + 1);
location = normalizeTo(new URL(request.url), trimmedMatches, basename, true, location, v7_relativeSplatPath);
response.headers.set("Location", location);
}
return response;
}
function normalizeRedirectLocation(location, currentUrl, basename) {
if (ABSOLUTE_URL_REGEX.test(location)) {
let normalizedLocation = location;
let url = normalizedLocation.startsWith("//") ? new URL(currentUrl.protocol + normalizedLocation) : new URL(normalizedLocation);
let isSameBasename = stripBasename(url.pathname, basename) != null;
if (url.origin === currentUrl.origin && isSameBasename) {
return url.pathname + url.search + url.hash;
}
}
return location;
}
function createClientSideRequest(history, location, signal, submission) {
let url = history.createURL(stripHashFromPath(location)).toString();
let init = {
signal
};
if (submission && isMutationMethod(submission.formMethod)) {
let {
formMethod,
formEncType
} = submission;
init.method = formMethod.toUpperCase();
if (formEncType === "application/json") {
init.headers = new Headers({
"Content-Type": formEncType
});
init.body = JSON.stringify(submission.json);
} else if (formEncType === "text/plain") {
init.body = submission.text;
} else if (formEncType === "application/x-www-form-urlencoded" && submission.formData) {
init.body = convertFormDataToSearchParams(submission.formData);
} else {
init.body = submission.formData;
}
}
return new Request(url, init);
}
function convertFormDataToSearchParams(formData) {
let searchParams = new URLSearchParams();
for (let [key, value] of formData.entries()) {
searchParams.append(key, typeof value === "string" ? value : value.name);
}
return searchParams;
}
function convertSearchParamsToFormData(searchParams) {
let formData = new FormData();
for (let [key, value] of searchParams.entries()) {
formData.append(key, value);
}
return formData;
}
function processRouteLoaderData(matches, results, pendingActionResult, activeDeferreds, skipLoaderErrorBubbling) {
let loaderData = {};
let errors = null;
let statusCode;
let foundError = false;
let loaderHeaders = {};
let pendingError = pendingActionResult && isErrorResult(pendingActionResult[1]) ? pendingActionResult[1].error : void 0;
matches.forEach((match) => {
if (!(match.route.id in results)) {
return;
}
let id = match.route.id;
let result = results[id];
invariant(!isRedirectResult(result), "Cannot handle redirect results in processLoaderData");
if (isErrorResult(result)) {
let error = result.error;
if (pendingError !== void 0) {
error = pendingError;
pendingError = void 0;
}
errors = errors || {};
if (skipLoaderErrorBubbling) {
errors[id] = error;
} else {
let boundaryMatch = findNearestBoundary(matches, id);
if (errors[boundaryMatch.route.id] == null) {
errors[boundaryMatch.route.id] = error;
}
}
loaderData[id] = void 0;
if (!foundError) {
foundError = true;
statusCode = isRouteErrorResponse(result.error) ? result.error.status : 500;
}
if (result.headers) {
loaderHeaders[id] = result.headers;
}
} else {
if (isDeferredResult(result)) {
activeDeferreds.set(id, result.deferredData);
loaderData[id] = result.deferredData.data;
if (result.statusCode != null && result.statusCode !== 200 && !foundError) {
statusCode = result.statusCode;
}
if (result.headers) {
loaderHeaders[id] = result.headers;
}
} else {
loaderData[id] = result.data;
if (result.statusCode && result.statusCode !== 200 && !foundError) {
statusCode = result.statusCode;
}
if (result.headers) {
loaderHeaders[id] = result.headers;
}
}
}
});
if (pendingError !== void 0 && pendingActionResult) {
errors = {
[pendingActionResult[0]]: pendingError
};
loaderData[pendingActionResult[0]] = void 0;
}
return {
loaderData,
errors,
statusCode: statusCode || 200,
loaderHeaders
};
}
function processLoaderData(state, matches, results, pendingActionResult, revalidatingFetchers, fetcherResults, activeDeferreds) {
let {
loaderData,
errors
} = processRouteLoaderData(
matches,
results,
pendingActionResult,
activeDeferreds,
false
// This method is only called client side so we always want to bubble
);
revalidatingFetchers.forEach((rf) => {
let {
key,
match,
controller
} = rf;
let result = fetcherResults[key];
invariant(result, "Did not find corresponding fetcher result");
if (controller && controller.signal.aborted) {
return;
} else if (isErrorResult(result)) {
let boundaryMatch = findNearestBoundary(state.matches, match == null ? void 0 : match.route.id);
if (!(errors && errors[boundaryMatch.route.id])) {
errors = _extends({}, errors, {
[boundaryMatch.route.id]: result.error
});
}
state.fetchers.delete(key);
} else if (isRedirectResult(result)) {
invariant(false, "Unhandled fetcher revalidation redirect");
} else if (isDeferredResult(result)) {
invariant(false, "Unhandled fetcher deferred data");
} else {
let doneFetcher = getDoneFetcher(result.data);
state.fetchers.set(key, doneFetcher);
}
});
return {
loaderData,
errors
};
}
function mergeLoaderData(loaderData, newLoaderData, matches, errors) {
let mergedLoaderData = _extends({}, newLoaderData);
for (let match of matches) {
let id = match.route.id;
if (newLoaderData.hasOwnProperty(id)) {
if (newLoaderData[id] !== void 0) {
mergedLoaderData[id] = newLoaderData[id];
}
} else if (loaderData[id] !== void 0 && match.route.loader) {
mergedLoaderData[id] = loaderData[id];
}
if (errors && errors.hasOwnProperty(id)) {
break;
}
}
return mergedLoaderData;
}
function getActionDataForCommit(pendingActionResult) {
if (!pendingActionResult) {
return {};
}
return isErrorResult(pendingActionResult[1]) ? {
// Clear out prior actionData on errors
actionData: {}
} : {
actionData: {
[pendingActionResult[0]]: pendingActionResult[1].data
}
};
}
function findNearestBoundary(matches, routeId) {
let eligibleMatches = routeId ? matches.slice(0, matches.findIndex((m) => m.route.id === routeId) + 1) : [...matches];
return eligibleMatches.reverse().find((m) => m.route.hasErrorBoundary === true) || matches[0];
}
function getShortCircuitMatches(routes) {
let route = routes.length === 1 ? routes[0] : routes.find((r) => r.index || !r.path || r.path === "/") || {
id: "__shim-error-route__"
};
return {
matches: [{
params: {},
pathname: "",
pathnameBase: "",
route
}],
route
};
}
function getInternalRouterError(status, _temp5) {
let {
pathname,
routeId,
method,
type,
message
} = _temp5 === void 0 ? {} : _temp5;
let statusText = "Unknown Server Error";
let errorMessage = "Unknown @remix-run/router error";
if (status === 400) {
statusText = "Bad Request";
if (method && pathname && routeId) {
errorMessage = "You made a " + method + ' request to "' + pathname + '" but ' + ('did not provide a `loader` for route "' + routeId + '", ') + "so there is no way to handle the request.";
} else if (type === "defer-action") {
errorMessage = "defer() is not supported in actions";
} else if (type === "invalid-body") {
errorMessage = "Unable to encode submission body";
}
} else if (status === 403) {
statusText = "Forbidden";
errorMessage = 'Route "' + routeId + '" does not match URL "' + pathname + '"';
} else if (status === 404) {
statusText = "Not Found";
errorMessage = 'No route matches URL "' + pathname + '"';
} else if (status === 405) {
statusText = "Method Not Allowed";
if (method && pathname && routeId) {
errorMessage = "You made a " + method.toUpperCase() + ' request to "' + pathname + '" but ' + ('did not provide an `action` for route "' + routeId + '", ') + "so there is no way to handle the request.";
} else if (method) {
errorMessage = 'Invalid request method "' + method.toUpperCase() + '"';
}
}
return new ErrorResponseImpl(status || 500, statusText, new Error(errorMessage), true);
}
function findRedirect(results) {
let entries = Object.entries(results);
for (let i = entries.length - 1; i >= 0; i--) {
let [key, result] = entries[i];
if (isRedirectResult(result)) {
return {
key,
result
};
}
}
}
function stripHashFromPath(path) {
let parsedPath = typeof path === "string" ? parsePath(path) : path;
return createPath(_extends({}, parsedPath, {
hash: ""
}));
}
function isHashChangeOnly(a, b) {
if (a.pathname !== b.pathname || a.search !== b.search) {
return false;
}
if (a.hash === "") {
return b.hash !== "";
} else if (a.hash === b.hash) {
return true;
} else if (b.hash !== "") {
return true;
}
return false;
}
function isDataStrategyResult(result) {
return result != null && typeof result === "object" && "type" in result && "result" in result && (result.type === ResultType.data || result.type === ResultType.error);
}
function isRedirectDataStrategyResultResult(result) {
return isResponse(result.result) && redirectStatusCodes.has(result.result.status);
}
function isDeferredResult(result) {
return result.type === ResultType.deferred;
}
function isErrorResult(result) {
return result.type === ResultType.error;
}
function isRedirectResult(result) {
return (result && result.type) === ResultType.redirect;
}
function isDataWithResponseInit(value) {
return typeof value === "object" && value != null && "type" in value && "data" in value && "init" in value && value.type === "DataWithResponseInit";
}
function isDeferredData(value) {
let deferred = value;
return deferred && typeof deferred === "object" && typeof deferred.data === "object" && typeof deferred.subscribe === "function" && typeof deferred.cancel === "function" && typeof deferred.resolveData === "function";
}
function isResponse(value) {
return value != null && typeof value.status === "number" && typeof value.statusText === "string" && typeof value.headers === "object" && typeof value.body !== "undefined";
}
function isRedirectResponse(result) {
if (!isResponse(result)) {
return false;
}
let status = result.status;
let location = result.headers.get("Location");
return status >= 300 && status <= 399 && location != null;
}
function isValidMethod(method) {
return validRequestMethods.has(method.toLowerCase());
}
function isMutationMethod(method) {
return validMutationMethods.has(method.toLowerCase());
}
async function resolveNavigationDeferredResults(matches, results, signal, currentMatches, currentLoaderData) {
let entries = Object.entries(results);
for (let index = 0; index < entries.length; index++) {
let [routeId, result] = entries[index];
let match = matches.find((m) => (m == null ? void 0 : m.route.id) === routeId);
if (!match) {
continue;
}
let currentMatch = currentMatches.find((m) => m.route.id === match.route.id);
let isRevalidatingLoader = currentMatch != null && !isNewRouteInstance(currentMatch, match) && (currentLoaderData && currentLoaderData[match.route.id]) !== void 0;
if (isDeferredResult(result) && isRevalidatingLoader) {
await resolveDeferredData(result, signal, false).then((result2) => {
if (result2) {
results[routeId] = result2;
}
});
}
}
}
async function resolveFetcherDeferredResults(matches, results, revalidatingFetchers) {
for (let index = 0; index < revalidatingFetchers.length; index++) {
let {
key,
routeId,
controller
} = revalidatingFetchers[index];
let result = results[key];
let match = matches.find((m) => (m == null ? void 0 : m.route.id) === routeId);
if (!match) {
continue;
}
if (isDeferredResult(result)) {
invariant(controller, "Expected an AbortController for revalidating fetcher deferred result");
await resolveDeferredData(result, controller.signal, true).then((result2) => {
if (result2) {
results[key] = result2;
}
});
}
}
}
async function resolveDeferredData(result, signal, unwrap) {
if (unwrap === void 0) {
unwrap = false;
}
let aborted = await result.deferredData.resolveData(signal);
if (aborted) {
return;
}
if (unwrap) {
try {
return {
type: ResultType.data,
data: result.deferredData.unwrappedData
};
} catch (e) {
return {
type: ResultType.error,
error: e
};
}
}
return {
type: ResultType.data,
data: result.deferredData.data
};
}
function hasNakedIndexQuery(search) {
return new URLSearchParams(search).getAll("index").some((v) => v === "");
}
function getTargetMatch(matches, location) {
let search = typeof location === "string" ? parsePath(location).search : location.search;
if (matches[matches.length - 1].route.index && hasNakedIndexQuery(search || "")) {
return matches[matches.length - 1];
}
let pathMatches = getPathContributingMatches(matches);
return pathMatches[pathMatches.length - 1];
}
function getSubmissionFromNavigation(navigation) {
let {
formMethod,
formAction,
formEncType,
text,
formData,
json: json4
} = navigation;
if (!formMethod || !formAction || !formEncType) {
return;
}
if (text != null) {
return {
formMethod,
formAction,
formEncType,
formData: void 0,
json: void 0,
text
};
} else if (formData != null) {
return {
formMethod,
formAction,
formEncType,
formData,
json: void 0,
text: void 0
};
} else if (json4 !== void 0) {
return {
formMethod,
formAction,
formEncType,
formData: void 0,
json: json4,
text: void 0
};
}
}
function getLoadingNavigation(location, submission) {
if (submission) {
let navigation = {
state: "loading",
location,
formMethod: submission.formMethod,
formAction: submission.formAction,
formEncType: submission.formEncType,
formData: submission.formData,
json: submission.json,
text: submission.text
};
return navigation;
} else {
let navigation = {
state: "loading",
location,
formMethod: void 0,
formAction: void 0,
formEncType: void 0,
formData: void 0,
json: void 0,
text: void 0
};
return navigation;
}
}
function getSubmittingNavigation(location, submission) {
let navigation = {
state: "submitting",
location,
formMethod: submission.formMethod,
formAction: submission.formAction,
formEncType: submission.formEncType,
formData: submission.formData,
json: submission.json,
text: submission.text
};
return navigation;
}
function getLoadingFetcher(submission, data3) {
if (submission) {
let fetcher = {
state: "loading",
formMethod: submission.formMethod,
formAction: submission.formAction,
formEncType: submission.formEncType,
formData: submission.formData,
json: submission.json,
text: submission.text,
data: data3
};
return fetcher;
} else {
let fetcher = {
state: "loading",
formMethod: void 0,
formAction: void 0,
formEncType: void 0,
formData: void 0,
json: void 0,
text: void 0,
data: data3
};
return fetcher;
}
}
function getSubmittingFetcher(submission, existingFetcher) {
let fetcher = {
state: "submitting",
formMethod: submission.formMethod,
formAction: submission.formAction,
formEncType: submission.formEncType,
formData: submission.formData,
json: submission.json,
text: submission.text,
data: existingFetcher ? existingFetcher.data : void 0
};
return fetcher;
}
function getDoneFetcher(data3) {
let fetcher = {
state: "idle",
formMethod: void 0,
formAction: void 0,
formEncType: void 0,
formData: void 0,
json: void 0,
text: void 0,
data: data3
};
return fetcher;
}
function restoreAppliedTransitions(_window, transitions) {
try {
let sessionPositions = _window.sessionStorage.getItem(TRANSITIONS_STORAGE_KEY);
if (sessionPositions) {
let json4 = JSON.parse(sessionPositions);
for (let [k, v] of Object.entries(json4 || {})) {
if (v && Array.isArray(v)) {
transitions.set(k, new Set(v || []));
}
}
}
} catch (e) {
}
}
function persistAppliedTransitions(_window, transitions) {
if (transitions.size > 0) {
let json4 = {};
for (let [k, v] of transitions) {
json4[k] = [...v];
}
try {
_window.sessionStorage.setItem(TRANSITIONS_STORAGE_KEY, JSON.stringify(json4));
} catch (error) {
warning(false, "Failed to save applied view transitions in sessionStorage (" + error + ").");
}
}
}
var Action, PopStateEventType, ResultType, immutableRouteKeys, paramRe, dynamicSegmentValue, indexRouteValue, emptySegmentValue, staticSegmentValue, splatPenalty, isSplat, joinPaths, normalizePathname, normalizeSearch, normalizeHash, json, DataWithResponseInit, AbortedDeferredError, DeferredData, defer, redirect, redirectDocument, replace, ErrorResponseImpl, validMutationMethodsArr, validMutationMethods, validRequestMethodsArr, validRequestMethods, redirectStatusCodes, redirectPreserveMethodStatusCodes, IDLE_NAVIGATION, IDLE_FETCHER, IDLE_BLOCKER, ABSOLUTE_URL_REGEX, defaultMapRouteProperties, TRANSITIONS_STORAGE_KEY, UNSAFE_DEFERRED_SYMBOL;
var init_router = __esm({
"node_modules/@remix-run/router/dist/router.js"() {
(function(Action2) {
Action2["Pop"] = "POP";
Action2["Push"] = "PUSH";
Action2["Replace"] = "REPLACE";
})(Action || (Action = {}));
PopStateEventType = "popstate";
(function(ResultType2) {
ResultType2["data"] = "data";
ResultType2["deferred"] = "deferred";
ResultType2["redirect"] = "redirect";
ResultType2["error"] = "error";
})(ResultType || (ResultType = {}));
immutableRouteKeys = /* @__PURE__ */ new Set(["lazy", "caseSensitive", "path", "id", "index", "children"]);
paramRe = /^:[\w-]+$/;
dynamicSegmentValue = 3;
indexRouteValue = 2;
emptySegmentValue = 1;
staticSegmentValue = 10;
splatPenalty = -2;
isSplat = (s) => s === "*";
joinPaths = (paths) => paths.join("/").replace(/\/\/+/g, "/");
normalizePathname = (pathname) => pathname.replace(/\/+$/, "").replace(/^\/*/, "/");
normalizeSearch = (search) => !search || search === "?" ? "" : search.startsWith("?") ? search : "?" + search;
normalizeHash = (hash) => !hash || hash === "#" ? "" : hash.startsWith("#") ? hash : "#" + hash;
json = function json2(data3, init) {
if (init === void 0) {
init = {};
}
let responseInit = typeof init === "number" ? {
status: init
} : init;
let headers = new Headers(responseInit.headers);
if (!headers.has("Content-Type")) {
headers.set("Content-Type", "application/json; charset=utf-8");
}
return new Response(JSON.stringify(data3), _extends({}, responseInit, {
headers
}));
};
DataWithResponseInit = class {
constructor(data3, init) {
this.type = "DataWithResponseInit";
this.data = data3;
this.init = init || null;
}
};
AbortedDeferredError = class extends Error {
};
DeferredData = class {
constructor(data3, responseInit) {
this.pendingKeysSet = /* @__PURE__ */ new Set();
this.subscribers = /* @__PURE__ */ new Set();
this.deferredKeys = [];
invariant(data3 && typeof data3 === "object" && !Array.isArray(data3), "defer() only accepts plain objects");
let reject;
this.abortPromise = new Promise((_, r) => reject = r);
this.controller = new AbortController();
let onAbort = () => reject(new AbortedDeferredError("Deferred data aborted"));
this.unlistenAbortSignal = () => this.controller.signal.removeEventListener("abort", onAbort);
this.controller.signal.addEventListener("abort", onAbort);
this.data = Object.entries(data3).reduce((acc, _ref2) => {
let [key, value] = _ref2;
return Object.assign(acc, {
[key]: this.trackPromise(key, value)
});
}, {});
if (this.done) {
this.unlistenAbortSignal();
}
this.init = responseInit;
}
trackPromise(key, value) {
if (!(value instanceof Promise)) {
return value;
}
this.deferredKeys.push(key);
this.pendingKeysSet.add(key);
let promise = Promise.race([value, this.abortPromise]).then((data3) => this.onSettle(promise, key, void 0, data3), (error) => this.onSettle(promise, key, error));
promise.catch(() => {
});
Object.defineProperty(promise, "_tracked", {
get: () => true
});
return promise;
}
onSettle(promise, key, error, data3) {
if (this.controller.signal.aborted && error instanceof AbortedDeferredError) {
this.unlistenAbortSignal();
Object.defineProperty(promise, "_error", {
get: () => error
});
return Promise.reject(error);
}
this.pendingKeysSet.delete(key);
if (this.done) {
this.unlistenAbortSignal();
}
if (error === void 0 && data3 === void 0) {
let undefinedError = new Error('Deferred data for key "' + key + '" resolved/rejected with `undefined`, you must resolve/reject with a value or `null`.');
Object.defineProperty(promise, "_error", {
get: () => undefinedError
});
this.emit(false, key);
return Promise.reject(undefinedError);
}
if (data3 === void 0) {
Object.defineProperty(promise, "_error", {
get: () => error
});
this.emit(false, key);
return Promise.reject(error);
}
Object.defineProperty(promise, "_data", {
get: () => data3
});
this.emit(false, key);
return data3;
}
emit(aborted, settledKey) {
this.subscribers.forEach((subscriber) => subscriber(aborted, settledKey));
}
subscribe(fn) {
this.subscribers.add(fn);
return () => this.subscribers.delete(fn);
}
cancel() {
this.controller.abort();
this.pendingKeysSet.forEach((v, k) => this.pendingKeysSet.delete(k));
this.emit(true);
}
async resolveData(signal) {
let aborted = false;
if (!this.done) {
let onAbort = () => this.cancel();
signal.addEventListener("abort", onAbort);
aborted = await new Promise((resolve) => {
this.subscribe((aborted2) => {
signal.removeEventListener("abort", onAbort);
if (aborted2 || this.done) {
resolve(aborted2);
}
});
});
}
return aborted;
}
get done() {
return this.pendingKeysSet.size === 0;
}
get unwrappedData() {
invariant(this.data !== null && this.done, "Can only unwrap data on initialized and settled deferreds");
return Object.entries(this.data).reduce((acc, _ref3) => {
let [key, value] = _ref3;
return Object.assign(acc, {
[key]: unwrapTrackedPromise(value)
});
}, {});
}
get pendingKeys() {
return Array.from(this.pendingKeysSet);
}
};
defer = function defer2(data3, init) {
if (init === void 0) {
init = {};
}
let responseInit = typeof init === "number" ? {
status: init
} : init;
return new DeferredData(data3, responseInit);
};
redirect = function redirect2(url, init) {
if (init === void 0) {
init = 302;
}
let responseInit = init;
if (typeof responseInit === "number") {
responseInit = {
status: responseInit
};
} else if (typeof responseInit.status === "undefined") {
responseInit.status = 302;
}
let headers = new Headers(responseInit.headers);
headers.set("Location", url);
return new Response(null, _extends({}, responseInit, {
headers
}));
};
redirectDocument = (url, init) => {
let response = redirect(url, init);
response.headers.set("X-Remix-Reload-Document", "true");
return response;
};
replace = (url, init) => {
let response = redirect(url, init);
response.headers.set("X-Remix-Replace", "true");
return response;
};
ErrorResponseImpl = class {
constructor(status, statusText, data3, internal) {
if (internal === void 0) {
internal = false;
}
this.status = status;
this.statusText = statusText || "";
this.internal = internal;
if (data3 instanceof Error) {
this.data = data3.toString();
this.error = data3;
} else {
this.data = data3;
}
}
};
validMutationMethodsArr = ["post", "put", "patch", "delete"];
validMutationMethods = new Set(validMutationMethodsArr);
validRequestMethodsArr = ["get", ...validMutationMethodsArr];
validRequestMethods = new Set(validRequestMethodsArr);
redirectStatusCodes = /* @__PURE__ */ new Set([301, 302, 303, 307, 308]);
redirectPreserveMethodStatusCodes = /* @__PURE__ */ new Set([307, 308]);
IDLE_NAVIGATION = {
state: "idle",
location: void 0,
formMethod: void 0,
formAction: void 0,
formEncType: void 0,
formData: void 0,
json: void 0,
text: void 0
};
IDLE_FETCHER = {
state: "idle",
data: void 0,
formMethod: void 0,
formAction: void 0,
formEncType: void 0,
formData: void 0,
json: void 0,
text: void 0
};
IDLE_BLOCKER = {
state: "unblocked",
proceed: void 0,
reset: void 0,
location: void 0
};
ABSOLUTE_URL_REGEX = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;
defaultMapRouteProperties = (route) => ({
hasErrorBoundary: Boolean(route.hasErrorBoundary)
});
TRANSITIONS_STORAGE_KEY = "remix-router-transitions";
UNSAFE_DEFERRED_SYMBOL = Symbol("deferred");
}
});
// node_modules/react-router/dist/index.js
var dist_exports = {};
__export(dist_exports, {
AbortedDeferredError: () => AbortedDeferredError,
Await: () => Await,
MemoryRouter: () => MemoryRouter,
Navigate: () => Navigate,
NavigationType: () => Action,
Outlet: () => Outlet,
Route: () => Route,
Router: () => Router,
RouterProvider: () => RouterProvider,
Routes: () => Routes,
UNSAFE_DataRouterContext: () => DataRouterContext,
UNSAFE_DataRouterStateContext: () => DataRouterStateContext,
UNSAFE_LocationContext: () => LocationContext,
UNSAFE_NavigationContext: () => NavigationContext,
UNSAFE_RouteContext: () => RouteContext,
UNSAFE_logV6DeprecationWarnings: () => logV6DeprecationWarnings,
UNSAFE_mapRouteProperties: () => mapRouteProperties,
UNSAFE_useRouteId: () => useRouteId,
UNSAFE_useRoutesImpl: () => useRoutesImpl,
createMemoryRouter: () => createMemoryRouter,
createPath: () => createPath,
createRoutesFromChildren: () => createRoutesFromChildren,
createRoutesFromElements: () => createRoutesFromChildren,
defer: () => defer,
generatePath: () => generatePath,
isRouteErrorResponse: () => isRouteErrorResponse,
json: () => json,
matchPath: () => matchPath,
matchRoutes: () => matchRoutes,
parsePath: () => parsePath,
redirect: () => redirect,
redirectDocument: () => redirectDocument,
renderMatches: () => renderMatches,
replace: () => replace,
resolvePath: () => resolvePath,
useActionData: () => useActionData,
useAsyncError: () => useAsyncError,
useAsyncValue: () => useAsyncValue,
useBlocker: () => useBlocker,
useHref: () => useHref,
useInRouterContext: () => useInRouterContext,
useLoaderData: () => useLoaderData,
useLocation: () => useLocation,
useMatch: () => useMatch,
useMatches: () => useMatches,
useNavigate: () => useNavigate,
useNavigation: () => useNavigation,
useNavigationType: () => useNavigationType,
useOutlet: () => useOutlet,
useOutletContext: () => useOutletContext,
useParams: () => useParams,
useResolvedPath: () => useResolvedPath,
useRevalidator: () => useRevalidator,
useRouteError: () => useRouteError,
useRouteLoaderData: () => useRouteLoaderData,
useRoutes: () => useRoutes
});
function _extends2() {
_extends2 = Object.assign ? Object.assign.bind() : function(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends2.apply(this, arguments);
}
function useHref(to, _temp) {
let {
relative
} = _temp === void 0 ? {} : _temp;
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of the
// router loaded. We can help them understand how to avoid that.
"useHref() may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
let {
basename,
navigator: navigator2
} = React.useContext(NavigationContext);
let {
hash,
pathname,
search
} = useResolvedPath(to, {
relative
});
let joinedPathname = pathname;
if (basename !== "/") {
joinedPathname = pathname === "/" ? basename : joinPaths([basename, pathname]);
}
return navigator2.createHref({
pathname: joinedPathname,
search,
hash
});
}
function useInRouterContext() {
return React.useContext(LocationContext) != null;
}
function useLocation() {
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of the
// router loaded. We can help them understand how to avoid that.
"useLocation() may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
return React.useContext(LocationContext).location;
}
function useNavigationType() {
return React.useContext(LocationContext).navigationType;
}
function useMatch(pattern) {
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of the
// router loaded. We can help them understand how to avoid that.
"useMatch() may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
let {
pathname
} = useLocation();
return React.useMemo(() => matchPath(pattern, decodePath(pathname)), [pathname, pattern]);
}
function useIsomorphicLayoutEffect(cb) {
let isStatic = React.useContext(NavigationContext).static;
if (!isStatic) {
React.useLayoutEffect(cb);
}
}
function useNavigate() {
let {
isDataRoute
} = React.useContext(RouteContext);
return isDataRoute ? useNavigateStable() : useNavigateUnstable();
}
function useNavigateUnstable() {
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of the
// router loaded. We can help them understand how to avoid that.
"useNavigate() may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
let dataRouterContext = React.useContext(DataRouterContext);
let {
basename,
future,
navigator: navigator2
} = React.useContext(NavigationContext);
let {
matches
} = React.useContext(RouteContext);
let {
pathname: locationPathname
} = useLocation();
let routePathnamesJson = JSON.stringify(getResolveToMatches(matches, future.v7_relativeSplatPath));
let activeRef = React.useRef(false);
useIsomorphicLayoutEffect(() => {
activeRef.current = true;
});
let navigate = React.useCallback(function(to, options) {
if (options === void 0) {
options = {};
}
true ? warning(activeRef.current, navigateEffectWarning) : void 0;
if (!activeRef.current)
return;
if (typeof to === "number") {
navigator2.go(to);
return;
}
let path = resolveTo(to, JSON.parse(routePathnamesJson), locationPathname, options.relative === "path");
if (dataRouterContext == null && basename !== "/") {
path.pathname = path.pathname === "/" ? basename : joinPaths([basename, path.pathname]);
}
(!!options.replace ? navigator2.replace : navigator2.push)(path, options.state, options);
}, [basename, navigator2, routePathnamesJson, locationPathname, dataRouterContext]);
return navigate;
}
function useOutletContext() {
return React.useContext(OutletContext);
}
function useOutlet(context) {
let outlet = React.useContext(RouteContext).outlet;
if (outlet) {
return /* @__PURE__ */ React.createElement(OutletContext.Provider, {
value: context
}, outlet);
}
return outlet;
}
function useParams() {
let {
matches
} = React.useContext(RouteContext);
let routeMatch = matches[matches.length - 1];
return routeMatch ? routeMatch.params : {};
}
function useResolvedPath(to, _temp2) {
let {
relative
} = _temp2 === void 0 ? {} : _temp2;
let {
future
} = React.useContext(NavigationContext);
let {
matches
} = React.useContext(RouteContext);
let {
pathname: locationPathname
} = useLocation();
let routePathnamesJson = JSON.stringify(getResolveToMatches(matches, future.v7_relativeSplatPath));
return React.useMemo(() => resolveTo(to, JSON.parse(routePathnamesJson), locationPathname, relative === "path"), [to, routePathnamesJson, locationPathname, relative]);
}
function useRoutes(routes, locationArg) {
return useRoutesImpl(routes, locationArg);
}
function useRoutesImpl(routes, locationArg, dataRouterState, future) {
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of the
// router loaded. We can help them understand how to avoid that.
"useRoutes() may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
let {
navigator: navigator2,
static: isStatic
} = React.useContext(NavigationContext);
let {
matches: parentMatches
} = React.useContext(RouteContext);
let routeMatch = parentMatches[parentMatches.length - 1];
let parentParams = routeMatch ? routeMatch.params : {};
let parentPathname = routeMatch ? routeMatch.pathname : "/";
let parentPathnameBase = routeMatch ? routeMatch.pathnameBase : "/";
let parentRoute = routeMatch && routeMatch.route;
if (true) {
let parentPath = parentRoute && parentRoute.path || "";
warningOnce(parentPathname, !parentRoute || parentPath.endsWith("*"), "You rendered descendant <Routes> (or called `useRoutes()`) at " + ('"' + parentPathname + '" (under <Route path="' + parentPath + '">) but the ') + `parent route path has no trailing "*". This means if you navigate deeper, the parent won't match anymore and therefore the child routes will never render.
` + ('Please change the parent <Route path="' + parentPath + '"> to <Route ') + ('path="' + (parentPath === "/" ? "*" : parentPath + "/*") + '">.'));
}
let locationFromContext = useLocation();
let location;
if (locationArg) {
var _parsedLocationArg$pa;
let parsedLocationArg = typeof locationArg === "string" ? parsePath(locationArg) : locationArg;
!(parentPathnameBase === "/" || ((_parsedLocationArg$pa = parsedLocationArg.pathname) == null ? void 0 : _parsedLocationArg$pa.startsWith(parentPathnameBase))) ? true ? invariant(false, "When overriding the location using `<Routes location>` or `useRoutes(routes, location)`, the location pathname must begin with the portion of the URL pathname that was " + ('matched by all parent routes. The current pathname base is "' + parentPathnameBase + '" ') + ('but pathname "' + parsedLocationArg.pathname + '" was given in the `location` prop.')) : invariant(false) : void 0;
location = parsedLocationArg;
} else {
location = locationFromContext;
}
let pathname = location.pathname || "/";
let remainingPathname = pathname;
if (parentPathnameBase !== "/") {
let parentSegments = parentPathnameBase.replace(/^\//, "").split("/");
let segments = pathname.replace(/^\//, "").split("/");
remainingPathname = "/" + segments.slice(parentSegments.length).join("/");
}
let matches = !isStatic && dataRouterState && dataRouterState.matches && dataRouterState.matches.length > 0 ? dataRouterState.matches : matchRoutes(routes, {
pathname: remainingPathname
});
if (true) {
true ? warning(parentRoute || matches != null, 'No routes matched location "' + location.pathname + location.search + location.hash + '" ') : void 0;
true ? warning(matches == null || matches[matches.length - 1].route.element !== void 0 || matches[matches.length - 1].route.Component !== void 0 || matches[matches.length - 1].route.lazy !== void 0, 'Matched leaf route at location "' + location.pathname + location.search + location.hash + '" does not have an element or Component. This means it will render an <Outlet /> with a null value by default resulting in an "empty" page.') : void 0;
}
let renderedMatches = _renderMatches(matches && matches.map((match) => Object.assign({}, match, {
params: Object.assign({}, parentParams, match.params),
pathname: joinPaths([
parentPathnameBase,
// Re-encode pathnames that were decoded inside matchRoutes
navigator2.encodeLocation ? navigator2.encodeLocation(match.pathname).pathname : match.pathname
]),
pathnameBase: match.pathnameBase === "/" ? parentPathnameBase : joinPaths([
parentPathnameBase,
// Re-encode pathnames that were decoded inside matchRoutes
navigator2.encodeLocation ? navigator2.encodeLocation(match.pathnameBase).pathname : match.pathnameBase
])
})), parentMatches, dataRouterState, future);
if (locationArg && renderedMatches) {
return /* @__PURE__ */ React.createElement(LocationContext.Provider, {
value: {
location: _extends2({
pathname: "/",
search: "",
hash: "",
state: null,
key: "default"
}, location),
navigationType: Action.Pop
}
}, renderedMatches);
}
return renderedMatches;
}
function DefaultErrorComponent() {
let error = useRouteError();
let message = isRouteErrorResponse(error) ? error.status + " " + error.statusText : error instanceof Error ? error.message : JSON.stringify(error);
let stack = error instanceof Error ? error.stack : null;
let lightgrey = "rgba(200,200,200, 0.5)";
let preStyles = {
padding: "0.5rem",
backgroundColor: lightgrey
};
let codeStyles = {
padding: "2px 4px",
backgroundColor: lightgrey
};
let devInfo = null;
if (true) {
console.error("Error handled by React Router default ErrorBoundary:", error);
devInfo = /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("p", null, "\u{1F4BF} Hey developer \u{1F44B}"), /* @__PURE__ */ React.createElement("p", null, "You can provide a way better UX than this when your app throws errors by providing your own ", /* @__PURE__ */ React.createElement("code", {
style: codeStyles
}, "ErrorBoundary"), " or", " ", /* @__PURE__ */ React.createElement("code", {
style: codeStyles
}, "errorElement"), " prop on your route."));
}
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement("h2", null, "Unexpected Application Error!"), /* @__PURE__ */ React.createElement("h3", {
style: {
fontStyle: "italic"
}
}, message), stack ? /* @__PURE__ */ React.createElement("pre", {
style: preStyles
}, stack) : null, devInfo);
}
function RenderedRoute(_ref) {
let {
routeContext,
match,
children
} = _ref;
let dataRouterContext = React.useContext(DataRouterContext);
if (dataRouterContext && dataRouterContext.static && dataRouterContext.staticContext && (match.route.errorElement || match.route.ErrorBoundary)) {
dataRouterContext.staticContext._deepestRenderedBoundaryId = match.route.id;
}
return /* @__PURE__ */ React.createElement(RouteContext.Provider, {
value: routeContext
}, children);
}
function _renderMatches(matches, parentMatches, dataRouterState, future) {
var _dataRouterState;
if (parentMatches === void 0) {
parentMatches = [];
}
if (dataRouterState === void 0) {
dataRouterState = null;
}
if (future === void 0) {
future = null;
}
if (matches == null) {
var _future;
if (!dataRouterState) {
return null;
}
if (dataRouterState.errors) {
matches = dataRouterState.matches;
} else if ((_future = future) != null && _future.v7_partialHydration && parentMatches.length === 0 && !dataRouterState.initialized && dataRouterState.matches.length > 0) {
matches = dataRouterState.matches;
} else {
return null;
}
}
let renderedMatches = matches;
let errors = (_dataRouterState = dataRouterState) == null ? void 0 : _dataRouterState.errors;
if (errors != null) {
let errorIndex = renderedMatches.findIndex((m) => m.route.id && (errors == null ? void 0 : errors[m.route.id]) !== void 0);
!(errorIndex >= 0) ? true ? invariant(false, "Could not find a matching route for errors on route IDs: " + Object.keys(errors).join(",")) : invariant(false) : void 0;
renderedMatches = renderedMatches.slice(0, Math.min(renderedMatches.length, errorIndex + 1));
}
let renderFallback = false;
let fallbackIndex = -1;
if (dataRouterState && future && future.v7_partialHydration) {
for (let i = 0; i < renderedMatches.length; i++) {
let match = renderedMatches[i];
if (match.route.HydrateFallback || match.route.hydrateFallbackElement) {
fallbackIndex = i;
}
if (match.route.id) {
let {
loaderData,
errors: errors2
} = dataRouterState;
let needsToRunLoader = match.route.loader && loaderData[match.route.id] === void 0 && (!errors2 || errors2[match.route.id] === void 0);
if (match.route.lazy || needsToRunLoader) {
renderFallback = true;
if (fallbackIndex >= 0) {
renderedMatches = renderedMatches.slice(0, fallbackIndex + 1);
} else {
renderedMatches = [renderedMatches[0]];
}
break;
}
}
}
}
return renderedMatches.reduceRight((outlet, match, index) => {
let error;
let shouldRenderHydrateFallback = false;
let errorElement = null;
let hydrateFallbackElement = null;
if (dataRouterState) {
error = errors && match.route.id ? errors[match.route.id] : void 0;
errorElement = match.route.errorElement || defaultErrorElement;
if (renderFallback) {
if (fallbackIndex < 0 && index === 0) {
warningOnce("route-fallback", false, "No `HydrateFallback` element provided to render during initial hydration");
shouldRenderHydrateFallback = true;
hydrateFallbackElement = null;
} else if (fallbackIndex === index) {
shouldRenderHydrateFallback = true;
hydrateFallbackElement = match.route.hydrateFallbackElement || null;
}
}
}
let matches2 = parentMatches.concat(renderedMatches.slice(0, index + 1));
let getChildren = () => {
let children;
if (error) {
children = errorElement;
} else if (shouldRenderHydrateFallback) {
children = hydrateFallbackElement;
} else if (match.route.Component) {
children = /* @__PURE__ */ React.createElement(match.route.Component, null);
} else if (match.route.element) {
children = match.route.element;
} else {
children = outlet;
}
return /* @__PURE__ */ React.createElement(RenderedRoute, {
match,
routeContext: {
outlet,
matches: matches2,
isDataRoute: dataRouterState != null
},
children
});
};
return dataRouterState && (match.route.ErrorBoundary || match.route.errorElement || index === 0) ? /* @__PURE__ */ React.createElement(RenderErrorBoundary, {
location: dataRouterState.location,
revalidation: dataRouterState.revalidation,
component: errorElement,
error,
children: getChildren(),
routeContext: {
outlet: null,
matches: matches2,
isDataRoute: true
}
}) : getChildren();
}, null);
}
function getDataRouterConsoleError(hookName) {
return hookName + " must be used within a data router. See https://reactrouter.com/v6/routers/picking-a-router.";
}
function useDataRouterContext(hookName) {
let ctx = React.useContext(DataRouterContext);
!ctx ? true ? invariant(false, getDataRouterConsoleError(hookName)) : invariant(false) : void 0;
return ctx;
}
function useDataRouterState(hookName) {
let state = React.useContext(DataRouterStateContext);
!state ? true ? invariant(false, getDataRouterConsoleError(hookName)) : invariant(false) : void 0;
return state;
}
function useRouteContext(hookName) {
let route = React.useContext(RouteContext);
!route ? true ? invariant(false, getDataRouterConsoleError(hookName)) : invariant(false) : void 0;
return route;
}
function useCurrentRouteId(hookName) {
let route = useRouteContext(hookName);
let thisRoute = route.matches[route.matches.length - 1];
!thisRoute.route.id ? true ? invariant(false, hookName + ' can only be used on routes that contain a unique "id"') : invariant(false) : void 0;
return thisRoute.route.id;
}
function useRouteId() {
return useCurrentRouteId(DataRouterStateHook.UseRouteId);
}
function useNavigation() {
let state = useDataRouterState(DataRouterStateHook.UseNavigation);
return state.navigation;
}
function useRevalidator() {
let dataRouterContext = useDataRouterContext(DataRouterHook.UseRevalidator);
let state = useDataRouterState(DataRouterStateHook.UseRevalidator);
return React.useMemo(() => ({
revalidate: dataRouterContext.router.revalidate,
state: state.revalidation
}), [dataRouterContext.router.revalidate, state.revalidation]);
}
function useMatches() {
let {
matches,
loaderData
} = useDataRouterState(DataRouterStateHook.UseMatches);
return React.useMemo(() => matches.map((m) => convertRouteMatchToUiMatch(m, loaderData)), [matches, loaderData]);
}
function useLoaderData() {
let state = useDataRouterState(DataRouterStateHook.UseLoaderData);
let routeId = useCurrentRouteId(DataRouterStateHook.UseLoaderData);
if (state.errors && state.errors[routeId] != null) {
console.error("You cannot `useLoaderData` in an errorElement (routeId: " + routeId + ")");
return void 0;
}
return state.loaderData[routeId];
}
function useRouteLoaderData(routeId) {
let state = useDataRouterState(DataRouterStateHook.UseRouteLoaderData);
return state.loaderData[routeId];
}
function useActionData() {
let state = useDataRouterState(DataRouterStateHook.UseActionData);
let routeId = useCurrentRouteId(DataRouterStateHook.UseLoaderData);
return state.actionData ? state.actionData[routeId] : void 0;
}
function useRouteError() {
var _state$errors;
let error = React.useContext(RouteErrorContext);
let state = useDataRouterState(DataRouterStateHook.UseRouteError);
let routeId = useCurrentRouteId(DataRouterStateHook.UseRouteError);
if (error !== void 0) {
return error;
}
return (_state$errors = state.errors) == null ? void 0 : _state$errors[routeId];
}
function useAsyncValue() {
let value = React.useContext(AwaitContext);
return value == null ? void 0 : value._data;
}
function useAsyncError() {
let value = React.useContext(AwaitContext);
return value == null ? void 0 : value._error;
}
function useBlocker(shouldBlock) {
let {
router: router2,
basename
} = useDataRouterContext(DataRouterHook.UseBlocker);
let state = useDataRouterState(DataRouterStateHook.UseBlocker);
let [blockerKey, setBlockerKey] = React.useState("");
let blockerFunction = React.useCallback((arg) => {
if (typeof shouldBlock !== "function") {
return !!shouldBlock;
}
if (basename === "/") {
return shouldBlock(arg);
}
let {
currentLocation,
nextLocation,
historyAction
} = arg;
return shouldBlock({
currentLocation: _extends2({}, currentLocation, {
pathname: stripBasename(currentLocation.pathname, basename) || currentLocation.pathname
}),
nextLocation: _extends2({}, nextLocation, {
pathname: stripBasename(nextLocation.pathname, basename) || nextLocation.pathname
}),
historyAction
});
}, [basename, shouldBlock]);
React.useEffect(() => {
let key = String(++blockerId);
setBlockerKey(key);
return () => router2.deleteBlocker(key);
}, [router2]);
React.useEffect(() => {
if (blockerKey !== "") {
router2.getBlocker(blockerKey, blockerFunction);
}
}, [router2, blockerKey, blockerFunction]);
return blockerKey && state.blockers.has(blockerKey) ? state.blockers.get(blockerKey) : IDLE_BLOCKER;
}
function useNavigateStable() {
let {
router: router2
} = useDataRouterContext(DataRouterHook.UseNavigateStable);
let id = useCurrentRouteId(DataRouterStateHook.UseNavigateStable);
let activeRef = React.useRef(false);
useIsomorphicLayoutEffect(() => {
activeRef.current = true;
});
let navigate = React.useCallback(function(to, options) {
if (options === void 0) {
options = {};
}
true ? warning(activeRef.current, navigateEffectWarning) : void 0;
if (!activeRef.current)
return;
if (typeof to === "number") {
router2.navigate(to);
} else {
router2.navigate(to, _extends2({
fromRouteId: id
}, options));
}
}, [router2, id]);
return navigate;
}
function warningOnce(key, cond, message) {
if (!cond && !alreadyWarned$1[key]) {
alreadyWarned$1[key] = true;
true ? warning(false, message) : void 0;
}
}
function warnOnce(key, message) {
if (!alreadyWarned[message]) {
alreadyWarned[message] = true;
console.warn(message);
}
}
function logV6DeprecationWarnings(renderFuture, routerFuture) {
if ((renderFuture == null ? void 0 : renderFuture.v7_startTransition) === void 0) {
logDeprecation("v7_startTransition", "React Router will begin wrapping state updates in `React.startTransition` in v7", "https://reactrouter.com/v6/upgrading/future#v7_starttransition");
}
if ((renderFuture == null ? void 0 : renderFuture.v7_relativeSplatPath) === void 0 && (!routerFuture || !routerFuture.v7_relativeSplatPath)) {
logDeprecation("v7_relativeSplatPath", "Relative route resolution within Splat routes is changing in v7", "https://reactrouter.com/v6/upgrading/future#v7_relativesplatpath");
}
if (routerFuture) {
if (routerFuture.v7_fetcherPersist === void 0) {
logDeprecation("v7_fetcherPersist", "The persistence behavior of fetchers is changing in v7", "https://reactrouter.com/v6/upgrading/future#v7_fetcherpersist");
}
if (routerFuture.v7_normalizeFormMethod === void 0) {
logDeprecation("v7_normalizeFormMethod", "Casing of `formMethod` fields is being normalized to uppercase in v7", "https://reactrouter.com/v6/upgrading/future#v7_normalizeformmethod");
}
if (routerFuture.v7_partialHydration === void 0) {
logDeprecation("v7_partialHydration", "`RouterProvider` hydration behavior is changing in v7", "https://reactrouter.com/v6/upgrading/future#v7_partialhydration");
}
if (routerFuture.v7_skipActionErrorRevalidation === void 0) {
logDeprecation("v7_skipActionErrorRevalidation", "The revalidation behavior after 4xx/5xx `action` responses is changing in v7", "https://reactrouter.com/v6/upgrading/future#v7_skipactionerrorrevalidation");
}
}
}
function RouterProvider(_ref) {
let {
fallbackElement,
router: router2,
future
} = _ref;
let [state, setStateImpl] = React.useState(router2.state);
let {
v7_startTransition
} = future || {};
let setState = React.useCallback((newState) => {
if (v7_startTransition && startTransitionImpl) {
startTransitionImpl(() => setStateImpl(newState));
} else {
setStateImpl(newState);
}
}, [setStateImpl, v7_startTransition]);
React.useLayoutEffect(() => router2.subscribe(setState), [router2, setState]);
React.useEffect(() => {
true ? warning(fallbackElement == null || !router2.future.v7_partialHydration, "`<RouterProvider fallbackElement>` is deprecated when using `v7_partialHydration`, use a `HydrateFallback` component instead") : void 0;
}, []);
let navigator2 = React.useMemo(() => {
return {
createHref: router2.createHref,
encodeLocation: router2.encodeLocation,
go: (n) => router2.navigate(n),
push: (to, state2, opts) => router2.navigate(to, {
state: state2,
preventScrollReset: opts == null ? void 0 : opts.preventScrollReset
}),
replace: (to, state2, opts) => router2.navigate(to, {
replace: true,
state: state2,
preventScrollReset: opts == null ? void 0 : opts.preventScrollReset
})
};
}, [router2]);
let basename = router2.basename || "/";
let dataRouterContext = React.useMemo(() => ({
router: router2,
navigator: navigator2,
static: false,
basename
}), [router2, navigator2, basename]);
React.useEffect(() => logV6DeprecationWarnings(future, router2.future), [router2, future]);
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(DataRouterContext.Provider, {
value: dataRouterContext
}, /* @__PURE__ */ React.createElement(DataRouterStateContext.Provider, {
value: state
}, /* @__PURE__ */ React.createElement(Router, {
basename,
location: state.location,
navigationType: state.historyAction,
navigator: navigator2,
future: {
v7_relativeSplatPath: router2.future.v7_relativeSplatPath
}
}, state.initialized || router2.future.v7_partialHydration ? /* @__PURE__ */ React.createElement(DataRoutes, {
routes: router2.routes,
future: router2.future,
state
}) : fallbackElement))), null);
}
function DataRoutes(_ref2) {
let {
routes,
future,
state
} = _ref2;
return useRoutesImpl(routes, void 0, state, future);
}
function MemoryRouter(_ref3) {
let {
basename,
children,
initialEntries,
initialIndex,
future
} = _ref3;
let historyRef = React.useRef();
if (historyRef.current == null) {
historyRef.current = createMemoryHistory({
initialEntries,
initialIndex,
v5Compat: true
});
}
let history = historyRef.current;
let [state, setStateImpl] = React.useState({
action: history.action,
location: history.location
});
let {
v7_startTransition
} = future || {};
let setState = React.useCallback((newState) => {
v7_startTransition && startTransitionImpl ? startTransitionImpl(() => setStateImpl(newState)) : setStateImpl(newState);
}, [setStateImpl, v7_startTransition]);
React.useLayoutEffect(() => history.listen(setState), [history, setState]);
React.useEffect(() => logV6DeprecationWarnings(future), [future]);
return /* @__PURE__ */ React.createElement(Router, {
basename,
children,
location: state.location,
navigationType: state.action,
navigator: history,
future
});
}
function Navigate(_ref4) {
let {
to,
replace: replace3,
state,
relative
} = _ref4;
!useInRouterContext() ? true ? invariant(
false,
// TODO: This error is probably because they somehow have 2 versions of
// the router loaded. We can help them understand how to avoid that.
"<Navigate> may be used only in the context of a <Router> component."
) : invariant(false) : void 0;
let {
future,
static: isStatic
} = React.useContext(NavigationContext);
true ? warning(!isStatic, "<Navigate> must not be used on the initial render in a <StaticRouter>. This is a no-op, but you should modify your code so the <Navigate> is only ever rendered in response to some user interaction or state change.") : void 0;
let {
matches
} = React.useContext(RouteContext);
let {
pathname: locationPathname
} = useLocation();
let navigate = useNavigate();
let path = resolveTo(to, getResolveToMatches(matches, future.v7_relativeSplatPath), locationPathname, relative === "path");
let jsonPath = JSON.stringify(path);
React.useEffect(() => navigate(JSON.parse(jsonPath), {
replace: replace3,
state,
relative
}), [navigate, jsonPath, relative, replace3, state]);
return null;
}
function Outlet(props) {
return useOutlet(props.context);
}
function Route(_props) {
true ? invariant(false, "A <Route> is only ever to be used as the child of <Routes> element, never rendered directly. Please wrap your <Route> in a <Routes>.") : invariant(false);
}
function Router(_ref5) {
let {
basename: basenameProp = "/",
children = null,
location: locationProp,
navigationType = Action.Pop,
navigator: navigator2,
static: staticProp = false,
future
} = _ref5;
!!useInRouterContext() ? true ? invariant(false, "You cannot render a <Router> inside another <Router>. You should never have more than one in your app.") : invariant(false) : void 0;
let basename = basenameProp.replace(/^\/*/, "/");
let navigationContext = React.useMemo(() => ({
basename,
navigator: navigator2,
static: staticProp,
future: _extends2({
v7_relativeSplatPath: false
}, future)
}), [basename, future, navigator2, staticProp]);
if (typeof locationProp === "string") {
locationProp = parsePath(locationProp);
}
let {
pathname = "/",
search = "",
hash = "",
state = null,
key = "default"
} = locationProp;
let locationContext = React.useMemo(() => {
let trailingPathname = stripBasename(pathname, basename);
if (trailingPathname == null) {
return null;
}
return {
location: {
pathname: trailingPathname,
search,
hash,
state,
key
},
navigationType
};
}, [basename, pathname, search, hash, state, key, navigationType]);
true ? warning(locationContext != null, '<Router basename="' + basename + '"> is not able to match the URL ' + ('"' + pathname + search + hash + '" because it does not start with the ') + "basename, so the <Router> won't render anything.") : void 0;
if (locationContext == null) {
return null;
}
return /* @__PURE__ */ React.createElement(NavigationContext.Provider, {
value: navigationContext
}, /* @__PURE__ */ React.createElement(LocationContext.Provider, {
children,
value: locationContext
}));
}
function Routes(_ref6) {
let {
children,
location
} = _ref6;
return useRoutes(createRoutesFromChildren(children), location);
}
function Await(_ref7) {
let {
children,
errorElement,
resolve
} = _ref7;
return /* @__PURE__ */ React.createElement(AwaitErrorBoundary, {
resolve,
errorElement
}, /* @__PURE__ */ React.createElement(ResolveAwait, null, children));
}
function ResolveAwait(_ref8) {
let {
children
} = _ref8;
let data3 = useAsyncValue();
let toRender = typeof children === "function" ? children(data3) : children;
return /* @__PURE__ */ React.createElement(React.Fragment, null, toRender);
}
function createRoutesFromChildren(children, parentPath) {
if (parentPath === void 0) {
parentPath = [];
}
let routes = [];
React.Children.forEach(children, (element, index) => {
if (!/* @__PURE__ */ React.isValidElement(element)) {
return;
}
let treePath = [...parentPath, index];
if (element.type === React.Fragment) {
routes.push.apply(routes, createRoutesFromChildren(element.props.children, treePath));
return;
}
!(element.type === Route) ? true ? invariant(false, "[" + (typeof element.type === "string" ? element.type : element.type.name) + "] is not a <Route> component. All component children of <Routes> must be a <Route> or <React.Fragment>") : invariant(false) : void 0;
!(!element.props.index || !element.props.children) ? true ? invariant(false, "An index route cannot have child routes.") : invariant(false) : void 0;
let route = {
id: element.props.id || treePath.join("-"),
caseSensitive: element.props.caseSensitive,
element: element.props.element,
Component: element.props.Component,
index: element.props.index,
path: element.props.path,
loader: element.props.loader,
action: element.props.action,
errorElement: element.props.errorElement,
ErrorBoundary: element.props.ErrorBoundary,
hasErrorBoundary: element.props.ErrorBoundary != null || element.props.errorElement != null,
shouldRevalidate: element.props.shouldRevalidate,
handle: element.props.handle,
lazy: element.props.lazy
};
if (element.props.children) {
route.children = createRoutesFromChildren(element.props.children, treePath);
}
routes.push(route);
});
return routes;
}
function renderMatches(matches) {
return _renderMatches(matches);
}
function mapRouteProperties(route) {
let updates = {
// Note: this check also occurs in createRoutesFromChildren so update
// there if you change this -- please and thank you!
hasErrorBoundary: route.ErrorBoundary != null || route.errorElement != null
};
if (route.Component) {
if (true) {
if (route.element) {
true ? warning(false, "You should not include both `Component` and `element` on your route - `Component` will be used.") : void 0;
}
}
Object.assign(updates, {
element: /* @__PURE__ */ React.createElement(route.Component),
Component: void 0
});
}
if (route.HydrateFallback) {
if (true) {
if (route.hydrateFallbackElement) {
true ? warning(false, "You should not include both `HydrateFallback` and `hydrateFallbackElement` on your route - `HydrateFallback` will be used.") : void 0;
}
}
Object.assign(updates, {
hydrateFallbackElement: /* @__PURE__ */ React.createElement(route.HydrateFallback),
HydrateFallback: void 0
});
}
if (route.ErrorBoundary) {
if (true) {
if (route.errorElement) {
true ? warning(false, "You should not include both `ErrorBoundary` and `errorElement` on your route - `ErrorBoundary` will be used.") : void 0;
}
}
Object.assign(updates, {
errorElement: /* @__PURE__ */ React.createElement(route.ErrorBoundary),
ErrorBoundary: void 0
});
}
return updates;
}
function createMemoryRouter(routes, opts) {
return createRouter({
basename: opts == null ? void 0 : opts.basename,
future: _extends2({}, opts == null ? void 0 : opts.future, {
v7_prependBasename: true
}),
history: createMemoryHistory({
initialEntries: opts == null ? void 0 : opts.initialEntries,
initialIndex: opts == null ? void 0 : opts.initialIndex
}),
hydrationData: opts == null ? void 0 : opts.hydrationData,
routes,
mapRouteProperties,
dataStrategy: opts == null ? void 0 : opts.dataStrategy,
patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation
}).initialize();
}
var React, DataRouterContext, DataRouterStateContext, AwaitContext, NavigationContext, LocationContext, RouteContext, RouteErrorContext, navigateEffectWarning, OutletContext, defaultErrorElement, RenderErrorBoundary, DataRouterHook, DataRouterStateHook, blockerId, alreadyWarned$1, alreadyWarned, logDeprecation, START_TRANSITION, startTransitionImpl, AwaitRenderStatus, neverSettledPromise, AwaitErrorBoundary;
var init_dist = __esm({
"node_modules/react-router/dist/index.js"() {
React = __toESM(require_react());
init_router();
init_router();
DataRouterContext = /* @__PURE__ */ React.createContext(null);
if (true) {
DataRouterContext.displayName = "DataRouter";
}
DataRouterStateContext = /* @__PURE__ */ React.createContext(null);
if (true) {
DataRouterStateContext.displayName = "DataRouterState";
}
AwaitContext = /* @__PURE__ */ React.createContext(null);
if (true) {
AwaitContext.displayName = "Await";
}
NavigationContext = /* @__PURE__ */ React.createContext(null);
if (true) {
NavigationContext.displayName = "Navigation";
}
LocationContext = /* @__PURE__ */ React.createContext(null);
if (true) {
LocationContext.displayName = "Location";
}
RouteContext = /* @__PURE__ */ React.createContext({
outlet: null,
matches: [],
isDataRoute: false
});
if (true) {
RouteContext.displayName = "Route";
}
RouteErrorContext = /* @__PURE__ */ React.createContext(null);
if (true) {
RouteErrorContext.displayName = "RouteError";
}
navigateEffectWarning = "You should call navigate() in a React.useEffect(), not when your component is first rendered.";
OutletContext = /* @__PURE__ */ React.createContext(null);
defaultErrorElement = /* @__PURE__ */ React.createElement(DefaultErrorComponent, null);
RenderErrorBoundary = class extends React.Component {
constructor(props) {
super(props);
this.state = {
location: props.location,
revalidation: props.revalidation,
error: props.error
};
}
static getDerivedStateFromError(error) {
return {
error
};
}
static getDerivedStateFromProps(props, state) {
if (state.location !== props.location || state.revalidation !== "idle" && props.revalidation === "idle") {
return {
error: props.error,
location: props.location,
revalidation: props.revalidation
};
}
return {
error: props.error !== void 0 ? props.error : state.error,
location: state.location,
revalidation: props.revalidation || state.revalidation
};
}
componentDidCatch(error, errorInfo) {
console.error("React Router caught the following error during render", error, errorInfo);
}
render() {
return this.state.error !== void 0 ? /* @__PURE__ */ React.createElement(RouteContext.Provider, {
value: this.props.routeContext
}, /* @__PURE__ */ React.createElement(RouteErrorContext.Provider, {
value: this.state.error,
children: this.props.component
})) : this.props.children;
}
};
DataRouterHook = /* @__PURE__ */ function(DataRouterHook3) {
DataRouterHook3["UseBlocker"] = "useBlocker";
DataRouterHook3["UseRevalidator"] = "useRevalidator";
DataRouterHook3["UseNavigateStable"] = "useNavigate";
return DataRouterHook3;
}(DataRouterHook || {});
DataRouterStateHook = /* @__PURE__ */ function(DataRouterStateHook3) {
DataRouterStateHook3["UseBlocker"] = "useBlocker";
DataRouterStateHook3["UseLoaderData"] = "useLoaderData";
DataRouterStateHook3["UseActionData"] = "useActionData";
DataRouterStateHook3["UseRouteError"] = "useRouteError";
DataRouterStateHook3["UseNavigation"] = "useNavigation";
DataRouterStateHook3["UseRouteLoaderData"] = "useRouteLoaderData";
DataRouterStateHook3["UseMatches"] = "useMatches";
DataRouterStateHook3["UseRevalidator"] = "useRevalidator";
DataRouterStateHook3["UseNavigateStable"] = "useNavigate";
DataRouterStateHook3["UseRouteId"] = "useRouteId";
return DataRouterStateHook3;
}(DataRouterStateHook || {});
blockerId = 0;
alreadyWarned$1 = {};
alreadyWarned = {};
logDeprecation = (flag, msg, link) => warnOnce(flag, "\u26A0\uFE0F React Router Future Flag Warning: " + msg + ". " + ("You can use the `" + flag + "` future flag to opt-in early. ") + ("For more information, see " + link + "."));
START_TRANSITION = "startTransition";
startTransitionImpl = React[START_TRANSITION];
AwaitRenderStatus = /* @__PURE__ */ function(AwaitRenderStatus2) {
AwaitRenderStatus2[AwaitRenderStatus2["pending"] = 0] = "pending";
AwaitRenderStatus2[AwaitRenderStatus2["success"] = 1] = "success";
AwaitRenderStatus2[AwaitRenderStatus2["error"] = 2] = "error";
return AwaitRenderStatus2;
}(AwaitRenderStatus || {});
neverSettledPromise = new Promise(() => {
});
AwaitErrorBoundary = class extends React.Component {
constructor(props) {
super(props);
this.state = {
error: null
};
}
static getDerivedStateFromError(error) {
return {
error
};
}
componentDidCatch(error, errorInfo) {
console.error("<Await> caught the following error during render", error, errorInfo);
}
render() {
let {
children,
errorElement,
resolve
} = this.props;
let promise = null;
let status = AwaitRenderStatus.pending;
if (!(resolve instanceof Promise)) {
status = AwaitRenderStatus.success;
promise = Promise.resolve();
Object.defineProperty(promise, "_tracked", {
get: () => true
});
Object.defineProperty(promise, "_data", {
get: () => resolve
});
} else if (this.state.error) {
status = AwaitRenderStatus.error;
let renderError = this.state.error;
promise = Promise.reject().catch(() => {
});
Object.defineProperty(promise, "_tracked", {
get: () => true
});
Object.defineProperty(promise, "_error", {
get: () => renderError
});
} else if (resolve._tracked) {
promise = resolve;
status = "_error" in promise ? AwaitRenderStatus.error : "_data" in promise ? AwaitRenderStatus.success : AwaitRenderStatus.pending;
} else {
status = AwaitRenderStatus.pending;
Object.defineProperty(resolve, "_tracked", {
get: () => true
});
promise = resolve.then((data3) => Object.defineProperty(resolve, "_data", {
get: () => data3
}), (error) => Object.defineProperty(resolve, "_error", {
get: () => error
}));
}
if (status === AwaitRenderStatus.error && promise._error instanceof AbortedDeferredError) {
throw neverSettledPromise;
}
if (status === AwaitRenderStatus.error && !errorElement) {
throw promise._error;
}
if (status === AwaitRenderStatus.error) {
return /* @__PURE__ */ React.createElement(AwaitContext.Provider, {
value: promise,
children: errorElement
});
}
if (status === AwaitRenderStatus.success) {
return /* @__PURE__ */ React.createElement(AwaitContext.Provider, {
value: promise,
children
});
}
throw promise;
}
};
}
});
// node_modules/react-router-dom/dist/index.js
var dist_exports2 = {};
__export(dist_exports2, {
AbortedDeferredError: () => AbortedDeferredError,
Await: () => Await,
BrowserRouter: () => BrowserRouter,
Form: () => Form,
HashRouter: () => HashRouter,
Link: () => Link,
MemoryRouter: () => MemoryRouter,
NavLink: () => NavLink,
Navigate: () => Navigate,
NavigationType: () => Action,
Outlet: () => Outlet,
Route: () => Route,
Router: () => Router,
RouterProvider: () => RouterProvider2,
Routes: () => Routes,
ScrollRestoration: () => ScrollRestoration,
UNSAFE_DataRouterContext: () => DataRouterContext,
UNSAFE_DataRouterStateContext: () => DataRouterStateContext,
UNSAFE_ErrorResponseImpl: () => ErrorResponseImpl,
UNSAFE_FetchersContext: () => FetchersContext,
UNSAFE_LocationContext: () => LocationContext,
UNSAFE_NavigationContext: () => NavigationContext,
UNSAFE_RouteContext: () => RouteContext,
UNSAFE_ViewTransitionContext: () => ViewTransitionContext,
UNSAFE_useRouteId: () => useRouteId,
UNSAFE_useScrollRestoration: () => useScrollRestoration,
createBrowserRouter: () => createBrowserRouter,
createHashRouter: () => createHashRouter,
createMemoryRouter: () => createMemoryRouter,
createPath: () => createPath,
createRoutesFromChildren: () => createRoutesFromChildren,
createRoutesFromElements: () => createRoutesFromChildren,
createSearchParams: () => createSearchParams,
defer: () => defer,
generatePath: () => generatePath,
isRouteErrorResponse: () => isRouteErrorResponse,
json: () => json,
matchPath: () => matchPath,
matchRoutes: () => matchRoutes,
parsePath: () => parsePath,
redirect: () => redirect,
redirectDocument: () => redirectDocument,
renderMatches: () => renderMatches,
replace: () => replace,
resolvePath: () => resolvePath,
unstable_HistoryRouter: () => HistoryRouter,
unstable_usePrompt: () => usePrompt,
useActionData: () => useActionData,
useAsyncError: () => useAsyncError,
useAsyncValue: () => useAsyncValue,
useBeforeUnload: () => useBeforeUnload,
useBlocker: () => useBlocker,
useFetcher: () => useFetcher,
useFetchers: () => useFetchers,
useFormAction: () => useFormAction,
useHref: () => useHref,
useInRouterContext: () => useInRouterContext,
useLinkClickHandler: () => useLinkClickHandler,
useLoaderData: () => useLoaderData,
useLocation: () => useLocation,
useMatch: () => useMatch,
useMatches: () => useMatches,
useNavigate: () => useNavigate,
useNavigation: () => useNavigation,
useNavigationType: () => useNavigationType,
useOutlet: () => useOutlet,
useOutletContext: () => useOutletContext,
useParams: () => useParams,
useResolvedPath: () => useResolvedPath,
useRevalidator: () => useRevalidator,
useRouteError: () => useRouteError,
useRouteLoaderData: () => useRouteLoaderData,
useRoutes: () => useRoutes,
useSearchParams: () => useSearchParams,
useSubmit: () => useSubmit,
useViewTransitionState: () => useViewTransitionState
});
function _extends3() {
_extends3 = Object.assign ? Object.assign.bind() : function(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends3.apply(this, arguments);
}
function _objectWithoutPropertiesLoose(source, excluded) {
if (source == null)
return {};
var target = {};
var sourceKeys = Object.keys(source);
var key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];
if (excluded.indexOf(key) >= 0)
continue;
target[key] = source[key];
}
return target;
}
function isHtmlElement(object) {
return object != null && typeof object.tagName === "string";
}
function isButtonElement(object) {
return isHtmlElement(object) && object.tagName.toLowerCase() === "button";
}
function isFormElement(object) {
return isHtmlElement(object) && object.tagName.toLowerCase() === "form";
}
function isInputElement(object) {
return isHtmlElement(object) && object.tagName.toLowerCase() === "input";
}
function isModifiedEvent(event) {
return !!(event.metaKey || event.altKey || event.ctrlKey || event.shiftKey);
}
function shouldProcessLinkClick(event, target) {
return event.button === 0 && // Ignore everything but left clicks
(!target || target === "_self") && // Let browser handle "target=_blank" etc.
!isModifiedEvent(event);
}
function createSearchParams(init) {
if (init === void 0) {
init = "";
}
return new URLSearchParams(typeof init === "string" || Array.isArray(init) || init instanceof URLSearchParams ? init : Object.keys(init).reduce((memo2, key) => {
let value = init[key];
return memo2.concat(Array.isArray(value) ? value.map((v) => [key, v]) : [[key, value]]);
}, []));
}
function getSearchParamsForLocation(locationSearch, defaultSearchParams) {
let searchParams = createSearchParams(locationSearch);
if (defaultSearchParams) {
defaultSearchParams.forEach((_, key) => {
if (!searchParams.has(key)) {
defaultSearchParams.getAll(key).forEach((value) => {
searchParams.append(key, value);
});
}
});
}
return searchParams;
}
function isFormDataSubmitterSupported() {
if (_formDataSupportsSubmitter === null) {
try {
new FormData(
document.createElement("form"),
// @ts-expect-error if FormData supports the submitter parameter, this will throw
0
);
_formDataSupportsSubmitter = false;
} catch (e) {
_formDataSupportsSubmitter = true;
}
}
return _formDataSupportsSubmitter;
}
function getFormEncType(encType) {
if (encType != null && !supportedFormEncTypes.has(encType)) {
true ? warning(false, '"' + encType + '" is not a valid `encType` for `<Form>`/`<fetcher.Form>` ' + ('and will default to "' + defaultEncType + '"')) : void 0;
return null;
}
return encType;
}
function getFormSubmissionInfo(target, basename) {
let method;
let action;
let encType;
let formData;
let body;
if (isFormElement(target)) {
let attr = target.getAttribute("action");
action = attr ? stripBasename(attr, basename) : null;
method = target.getAttribute("method") || defaultMethod;
encType = getFormEncType(target.getAttribute("enctype")) || defaultEncType;
formData = new FormData(target);
} else if (isButtonElement(target) || isInputElement(target) && (target.type === "submit" || target.type === "image")) {
let form = target.form;
if (form == null) {
throw new Error('Cannot submit a <button> or <input type="submit"> without a <form>');
}
let attr = target.getAttribute("formaction") || form.getAttribute("action");
action = attr ? stripBasename(attr, basename) : null;
method = target.getAttribute("formmethod") || form.getAttribute("method") || defaultMethod;
encType = getFormEncType(target.getAttribute("formenctype")) || getFormEncType(form.getAttribute("enctype")) || defaultEncType;
formData = new FormData(form, target);
if (!isFormDataSubmitterSupported()) {
let {
name,
type,
value
} = target;
if (type === "image") {
let prefix = name ? name + "." : "";
formData.append(prefix + "x", "0");
formData.append(prefix + "y", "0");
} else if (name) {
formData.append(name, value);
}
}
} else if (isHtmlElement(target)) {
throw new Error('Cannot submit element that is not <form>, <button>, or <input type="submit|image">');
} else {
method = defaultMethod;
action = null;
encType = defaultEncType;
body = target;
}
if (formData && encType === "text/plain") {
body = formData;
formData = void 0;
}
return {
action,
method: method.toLowerCase(),
encType,
formData,
body
};
}
function createBrowserRouter(routes, opts) {
return createRouter({
basename: opts == null ? void 0 : opts.basename,
future: _extends3({}, opts == null ? void 0 : opts.future, {
v7_prependBasename: true
}),
history: createBrowserHistory({
window: opts == null ? void 0 : opts.window
}),
hydrationData: (opts == null ? void 0 : opts.hydrationData) || parseHydrationData(),
routes,
mapRouteProperties,
dataStrategy: opts == null ? void 0 : opts.dataStrategy,
patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
window: opts == null ? void 0 : opts.window
}).initialize();
}
function createHashRouter(routes, opts) {
return createRouter({
basename: opts == null ? void 0 : opts.basename,
future: _extends3({}, opts == null ? void 0 : opts.future, {
v7_prependBasename: true
}),
history: createHashHistory({
window: opts == null ? void 0 : opts.window
}),
hydrationData: (opts == null ? void 0 : opts.hydrationData) || parseHydrationData(),
routes,
mapRouteProperties,
dataStrategy: opts == null ? void 0 : opts.dataStrategy,
patchRoutesOnNavigation: opts == null ? void 0 : opts.patchRoutesOnNavigation,
window: opts == null ? void 0 : opts.window
}).initialize();
}
function parseHydrationData() {
var _window;
let state = (_window = window) == null ? void 0 : _window.__staticRouterHydrationData;
if (state && state.errors) {
state = _extends3({}, state, {
errors: deserializeErrors(state.errors)
});
}
return state;
}
function deserializeErrors(errors) {
if (!errors)
return null;
let entries = Object.entries(errors);
let serialized = {};
for (let [key, val] of entries) {
if (val && val.__type === "RouteErrorResponse") {
serialized[key] = new ErrorResponseImpl(val.status, val.statusText, val.data, val.internal === true);
} else if (val && val.__type === "Error") {
if (val.__subType) {
let ErrorConstructor = window[val.__subType];
if (typeof ErrorConstructor === "function") {
try {
let error = new ErrorConstructor(val.message);
error.stack = "";
serialized[key] = error;
} catch (e) {
}
}
}
if (serialized[key] == null) {
let error = new Error(val.message);
error.stack = "";
serialized[key] = error;
}
} else {
serialized[key] = val;
}
}
return serialized;
}
function startTransitionSafe(cb) {
if (startTransitionImpl2) {
startTransitionImpl2(cb);
} else {
cb();
}
}
function flushSyncSafe(cb) {
if (flushSyncImpl) {
flushSyncImpl(cb);
} else {
cb();
}
}
function RouterProvider2(_ref) {
let {
fallbackElement,
router: router2,
future
} = _ref;
let [state, setStateImpl] = React2.useState(router2.state);
let [pendingState, setPendingState] = React2.useState();
let [vtContext, setVtContext] = React2.useState({
isTransitioning: false
});
let [renderDfd, setRenderDfd] = React2.useState();
let [transition, setTransition] = React2.useState();
let [interruption, setInterruption] = React2.useState();
let fetcherData = React2.useRef(/* @__PURE__ */ new Map());
let {
v7_startTransition
} = future || {};
let optInStartTransition = React2.useCallback((cb) => {
if (v7_startTransition) {
startTransitionSafe(cb);
} else {
cb();
}
}, [v7_startTransition]);
let setState = React2.useCallback((newState, _ref2) => {
let {
deletedFetchers,
flushSync,
viewTransitionOpts
} = _ref2;
newState.fetchers.forEach((fetcher, key) => {
if (fetcher.data !== void 0) {
fetcherData.current.set(key, fetcher.data);
}
});
deletedFetchers.forEach((key) => fetcherData.current.delete(key));
let isViewTransitionUnavailable = router2.window == null || router2.window.document == null || typeof router2.window.document.startViewTransition !== "function";
if (!viewTransitionOpts || isViewTransitionUnavailable) {
if (flushSync) {
flushSyncSafe(() => setStateImpl(newState));
} else {
optInStartTransition(() => setStateImpl(newState));
}
return;
}
if (flushSync) {
flushSyncSafe(() => {
if (transition) {
renderDfd && renderDfd.resolve();
transition.skipTransition();
}
setVtContext({
isTransitioning: true,
flushSync: true,
currentLocation: viewTransitionOpts.currentLocation,
nextLocation: viewTransitionOpts.nextLocation
});
});
let t = router2.window.document.startViewTransition(() => {
flushSyncSafe(() => setStateImpl(newState));
});
t.finished.finally(() => {
flushSyncSafe(() => {
setRenderDfd(void 0);
setTransition(void 0);
setPendingState(void 0);
setVtContext({
isTransitioning: false
});
});
});
flushSyncSafe(() => setTransition(t));
return;
}
if (transition) {
renderDfd && renderDfd.resolve();
transition.skipTransition();
setInterruption({
state: newState,
currentLocation: viewTransitionOpts.currentLocation,
nextLocation: viewTransitionOpts.nextLocation
});
} else {
setPendingState(newState);
setVtContext({
isTransitioning: true,
flushSync: false,
currentLocation: viewTransitionOpts.currentLocation,
nextLocation: viewTransitionOpts.nextLocation
});
}
}, [router2.window, transition, renderDfd, fetcherData, optInStartTransition]);
React2.useLayoutEffect(() => router2.subscribe(setState), [router2, setState]);
React2.useEffect(() => {
if (vtContext.isTransitioning && !vtContext.flushSync) {
setRenderDfd(new Deferred());
}
}, [vtContext]);
React2.useEffect(() => {
if (renderDfd && pendingState && router2.window) {
let newState = pendingState;
let renderPromise = renderDfd.promise;
let transition2 = router2.window.document.startViewTransition(async () => {
optInStartTransition(() => setStateImpl(newState));
await renderPromise;
});
transition2.finished.finally(() => {
setRenderDfd(void 0);
setTransition(void 0);
setPendingState(void 0);
setVtContext({
isTransitioning: false
});
});
setTransition(transition2);
}
}, [optInStartTransition, pendingState, renderDfd, router2.window]);
React2.useEffect(() => {
if (renderDfd && pendingState && state.location.key === pendingState.location.key) {
renderDfd.resolve();
}
}, [renderDfd, transition, state.location, pendingState]);
React2.useEffect(() => {
if (!vtContext.isTransitioning && interruption) {
setPendingState(interruption.state);
setVtContext({
isTransitioning: true,
flushSync: false,
currentLocation: interruption.currentLocation,
nextLocation: interruption.nextLocation
});
setInterruption(void 0);
}
}, [vtContext.isTransitioning, interruption]);
React2.useEffect(() => {
true ? warning(fallbackElement == null || !router2.future.v7_partialHydration, "`<RouterProvider fallbackElement>` is deprecated when using `v7_partialHydration`, use a `HydrateFallback` component instead") : void 0;
}, []);
let navigator2 = React2.useMemo(() => {
return {
createHref: router2.createHref,
encodeLocation: router2.encodeLocation,
go: (n) => router2.navigate(n),
push: (to, state2, opts) => router2.navigate(to, {
state: state2,
preventScrollReset: opts == null ? void 0 : opts.preventScrollReset
}),
replace: (to, state2, opts) => router2.navigate(to, {
replace: true,
state: state2,
preventScrollReset: opts == null ? void 0 : opts.preventScrollReset
})
};
}, [router2]);
let basename = router2.basename || "/";
let dataRouterContext = React2.useMemo(() => ({
router: router2,
navigator: navigator2,
static: false,
basename
}), [router2, navigator2, basename]);
let routerFuture = React2.useMemo(() => ({
v7_relativeSplatPath: router2.future.v7_relativeSplatPath
}), [router2.future.v7_relativeSplatPath]);
React2.useEffect(() => logV6DeprecationWarnings(future, router2.future), [future, router2.future]);
return /* @__PURE__ */ React2.createElement(React2.Fragment, null, /* @__PURE__ */ React2.createElement(DataRouterContext.Provider, {
value: dataRouterContext
}, /* @__PURE__ */ React2.createElement(DataRouterStateContext.Provider, {
value: state
}, /* @__PURE__ */ React2.createElement(FetchersContext.Provider, {
value: fetcherData.current
}, /* @__PURE__ */ React2.createElement(ViewTransitionContext.Provider, {
value: vtContext
}, /* @__PURE__ */ React2.createElement(Router, {
basename,
location: state.location,
navigationType: state.historyAction,
navigator: navigator2,
future: routerFuture
}, state.initialized || router2.future.v7_partialHydration ? /* @__PURE__ */ React2.createElement(MemoizedDataRoutes, {
routes: router2.routes,
future: router2.future,
state
}) : fallbackElement))))), null);
}
function DataRoutes2(_ref3) {
let {
routes,
future,
state
} = _ref3;
return useRoutesImpl(routes, void 0, state, future);
}
function BrowserRouter(_ref4) {
let {
basename,
children,
future,
window: window2
} = _ref4;
let historyRef = React2.useRef();
if (historyRef.current == null) {
historyRef.current = createBrowserHistory({
window: window2,
v5Compat: true
});
}
let history = historyRef.current;
let [state, setStateImpl] = React2.useState({
action: history.action,
location: history.location
});
let {
v7_startTransition
} = future || {};
let setState = React2.useCallback((newState) => {
v7_startTransition && startTransitionImpl2 ? startTransitionImpl2(() => setStateImpl(newState)) : setStateImpl(newState);
}, [setStateImpl, v7_startTransition]);
React2.useLayoutEffect(() => history.listen(setState), [history, setState]);
React2.useEffect(() => logV6DeprecationWarnings(future), [future]);
return /* @__PURE__ */ React2.createElement(Router, {
basename,
children,
location: state.location,
navigationType: state.action,
navigator: history,
future
});
}
function HashRouter(_ref5) {
let {
basename,
children,
future,
window: window2
} = _ref5;
let historyRef = React2.useRef();
if (historyRef.current == null) {
historyRef.current = createHashHistory({
window: window2,
v5Compat: true
});
}
let history = historyRef.current;
let [state, setStateImpl] = React2.useState({
action: history.action,
location: history.location
});
let {
v7_startTransition
} = future || {};
let setState = React2.useCallback((newState) => {
v7_startTransition && startTransitionImpl2 ? startTransitionImpl2(() => setStateImpl(newState)) : setStateImpl(newState);
}, [setStateImpl, v7_startTransition]);
React2.useLayoutEffect(() => history.listen(setState), [history, setState]);
React2.useEffect(() => logV6DeprecationWarnings(future), [future]);
return /* @__PURE__ */ React2.createElement(Router, {
basename,
children,
location: state.location,
navigationType: state.action,
navigator: history,
future
});
}
function HistoryRouter(_ref6) {
let {
basename,
children,
future,
history
} = _ref6;
let [state, setStateImpl] = React2.useState({
action: history.action,
location: history.location
});
let {
v7_startTransition
} = future || {};
let setState = React2.useCallback((newState) => {
v7_startTransition && startTransitionImpl2 ? startTransitionImpl2(() => setStateImpl(newState)) : setStateImpl(newState);
}, [setStateImpl, v7_startTransition]);
React2.useLayoutEffect(() => history.listen(setState), [history, setState]);
React2.useEffect(() => logV6DeprecationWarnings(future), [future]);
return /* @__PURE__ */ React2.createElement(Router, {
basename,
children,
location: state.location,
navigationType: state.action,
navigator: history,
future
});
}
function ScrollRestoration(_ref10) {
let {
getKey,
storageKey
} = _ref10;
useScrollRestoration({
getKey,
storageKey
});
return null;
}
function getDataRouterConsoleError2(hookName) {
return hookName + " must be used within a data router. See https://reactrouter.com/v6/routers/picking-a-router.";
}
function useDataRouterContext2(hookName) {
let ctx = React2.useContext(DataRouterContext);
!ctx ? true ? invariant(false, getDataRouterConsoleError2(hookName)) : invariant(false) : void 0;
return ctx;
}
function useDataRouterState2(hookName) {
let state = React2.useContext(DataRouterStateContext);
!state ? true ? invariant(false, getDataRouterConsoleError2(hookName)) : invariant(false) : void 0;
return state;
}
function useLinkClickHandler(to, _temp) {
let {
target,
replace: replaceProp,
state,
preventScrollReset,
relative,
viewTransition
} = _temp === void 0 ? {} : _temp;
let navigate = useNavigate();
let location = useLocation();
let path = useResolvedPath(to, {
relative
});
return React2.useCallback((event) => {
if (shouldProcessLinkClick(event, target)) {
event.preventDefault();
let replace3 = replaceProp !== void 0 ? replaceProp : createPath(location) === createPath(path);
navigate(to, {
replace: replace3,
state,
preventScrollReset,
relative,
viewTransition
});
}
}, [location, navigate, path, replaceProp, state, target, to, preventScrollReset, relative, viewTransition]);
}
function useSearchParams(defaultInit) {
true ? warning(typeof URLSearchParams !== "undefined", "You cannot use the `useSearchParams` hook in a browser that does not support the URLSearchParams API. If you need to support Internet Explorer 11, we recommend you load a polyfill such as https://github.com/ungap/url-search-params.") : void 0;
let defaultSearchParamsRef = React2.useRef(createSearchParams(defaultInit));
let hasSetSearchParamsRef = React2.useRef(false);
let location = useLocation();
let searchParams = React2.useMemo(() => (
// Only merge in the defaults if we haven't yet called setSearchParams.
// Once we call that we want those to take precedence, otherwise you can't
// remove a param with setSearchParams({}) if it has an initial value
getSearchParamsForLocation(location.search, hasSetSearchParamsRef.current ? null : defaultSearchParamsRef.current)
), [location.search]);
let navigate = useNavigate();
let setSearchParams = React2.useCallback((nextInit, navigateOptions) => {
const newSearchParams = createSearchParams(typeof nextInit === "function" ? nextInit(searchParams) : nextInit);
hasSetSearchParamsRef.current = true;
navigate("?" + newSearchParams, navigateOptions);
}, [navigate, searchParams]);
return [searchParams, setSearchParams];
}
function validateClientSideSubmission() {
if (typeof document === "undefined") {
throw new Error("You are calling submit during the server render. Try calling submit within a `useEffect` or callback instead.");
}
}
function useSubmit() {
let {
router: router2
} = useDataRouterContext2(DataRouterHook2.UseSubmit);
let {
basename
} = React2.useContext(NavigationContext);
let currentRouteId = useRouteId();
return React2.useCallback(function(target, options) {
if (options === void 0) {
options = {};
}
validateClientSideSubmission();
let {
action,
method,
encType,
formData,
body
} = getFormSubmissionInfo(target, basename);
if (options.navigate === false) {
let key = options.fetcherKey || getUniqueFetcherId();
router2.fetch(key, currentRouteId, options.action || action, {
preventScrollReset: options.preventScrollReset,
formData,
body,
formMethod: options.method || method,
formEncType: options.encType || encType,
flushSync: options.flushSync
});
} else {
router2.navigate(options.action || action, {
preventScrollReset: options.preventScrollReset,
formData,
body,
formMethod: options.method || method,
formEncType: options.encType || encType,
replace: options.replace,
state: options.state,
fromRouteId: currentRouteId,
flushSync: options.flushSync,
viewTransition: options.viewTransition
});
}
}, [router2, basename, currentRouteId]);
}
function useFormAction(action, _temp2) {
let {
relative
} = _temp2 === void 0 ? {} : _temp2;
let {
basename
} = React2.useContext(NavigationContext);
let routeContext = React2.useContext(RouteContext);
!routeContext ? true ? invariant(false, "useFormAction must be used inside a RouteContext") : invariant(false) : void 0;
let [match] = routeContext.matches.slice(-1);
let path = _extends3({}, useResolvedPath(action ? action : ".", {
relative
}));
let location = useLocation();
if (action == null) {
path.search = location.search;
let params = new URLSearchParams(path.search);
let indexValues = params.getAll("index");
let hasNakedIndexParam = indexValues.some((v) => v === "");
if (hasNakedIndexParam) {
params.delete("index");
indexValues.filter((v) => v).forEach((v) => params.append("index", v));
let qs = params.toString();
path.search = qs ? "?" + qs : "";
}
}
if ((!action || action === ".") && match.route.index) {
path.search = path.search ? path.search.replace(/^\?/, "?index&") : "?index";
}
if (basename !== "/") {
path.pathname = path.pathname === "/" ? basename : joinPaths([basename, path.pathname]);
}
return createPath(path);
}
function useFetcher(_temp3) {
var _route$matches;
let {
key
} = _temp3 === void 0 ? {} : _temp3;
let {
router: router2
} = useDataRouterContext2(DataRouterHook2.UseFetcher);
let state = useDataRouterState2(DataRouterStateHook2.UseFetcher);
let fetcherData = React2.useContext(FetchersContext);
let route = React2.useContext(RouteContext);
let routeId = (_route$matches = route.matches[route.matches.length - 1]) == null ? void 0 : _route$matches.route.id;
!fetcherData ? true ? invariant(false, "useFetcher must be used inside a FetchersContext") : invariant(false) : void 0;
!route ? true ? invariant(false, "useFetcher must be used inside a RouteContext") : invariant(false) : void 0;
!(routeId != null) ? true ? invariant(false, 'useFetcher can only be used on routes that contain a unique "id"') : invariant(false) : void 0;
let defaultKey = useIdImpl ? useIdImpl() : "";
let [fetcherKey, setFetcherKey] = React2.useState(key || defaultKey);
if (key && key !== fetcherKey) {
setFetcherKey(key);
} else if (!fetcherKey) {
setFetcherKey(getUniqueFetcherId());
}
React2.useEffect(() => {
router2.getFetcher(fetcherKey);
return () => {
router2.deleteFetcher(fetcherKey);
};
}, [router2, fetcherKey]);
let load = React2.useCallback((href, opts) => {
!routeId ? true ? invariant(false, "No routeId available for fetcher.load()") : invariant(false) : void 0;
router2.fetch(fetcherKey, routeId, href, opts);
}, [fetcherKey, routeId, router2]);
let submitImpl = useSubmit();
let submit = React2.useCallback((target, opts) => {
submitImpl(target, _extends3({}, opts, {
navigate: false,
fetcherKey
}));
}, [fetcherKey, submitImpl]);
let FetcherForm = React2.useMemo(() => {
let FetcherForm2 = /* @__PURE__ */ React2.forwardRef((props, ref) => {
return /* @__PURE__ */ React2.createElement(Form, _extends3({}, props, {
navigate: false,
fetcherKey,
ref
}));
});
if (true) {
FetcherForm2.displayName = "fetcher.Form";
}
return FetcherForm2;
}, [fetcherKey]);
let fetcher = state.fetchers.get(fetcherKey) || IDLE_FETCHER;
let data3 = fetcherData.get(fetcherKey);
let fetcherWithComponents = React2.useMemo(() => _extends3({
Form: FetcherForm,
submit,
load
}, fetcher, {
data: data3
}), [FetcherForm, submit, load, fetcher, data3]);
return fetcherWithComponents;
}
function useFetchers() {
let state = useDataRouterState2(DataRouterStateHook2.UseFetchers);
return Array.from(state.fetchers.entries()).map((_ref11) => {
let [key, fetcher] = _ref11;
return _extends3({}, fetcher, {
key
});
});
}
function useScrollRestoration(_temp4) {
let {
getKey,
storageKey
} = _temp4 === void 0 ? {} : _temp4;
let {
router: router2
} = useDataRouterContext2(DataRouterHook2.UseScrollRestoration);
let {
restoreScrollPosition,
preventScrollReset
} = useDataRouterState2(DataRouterStateHook2.UseScrollRestoration);
let {
basename
} = React2.useContext(NavigationContext);
let location = useLocation();
let matches = useMatches();
let navigation = useNavigation();
React2.useEffect(() => {
window.history.scrollRestoration = "manual";
return () => {
window.history.scrollRestoration = "auto";
};
}, []);
usePageHide(React2.useCallback(() => {
if (navigation.state === "idle") {
let key = (getKey ? getKey(location, matches) : null) || location.key;
savedScrollPositions[key] = window.scrollY;
}
try {
sessionStorage.setItem(storageKey || SCROLL_RESTORATION_STORAGE_KEY, JSON.stringify(savedScrollPositions));
} catch (error) {
true ? warning(false, "Failed to save scroll positions in sessionStorage, <ScrollRestoration /> will not work properly (" + error + ").") : void 0;
}
window.history.scrollRestoration = "auto";
}, [storageKey, getKey, navigation.state, location, matches]));
if (typeof document !== "undefined") {
React2.useLayoutEffect(() => {
try {
let sessionPositions = sessionStorage.getItem(storageKey || SCROLL_RESTORATION_STORAGE_KEY);
if (sessionPositions) {
savedScrollPositions = JSON.parse(sessionPositions);
}
} catch (e) {
}
}, [storageKey]);
React2.useLayoutEffect(() => {
let getKeyWithoutBasename = getKey && basename !== "/" ? (location2, matches2) => getKey(
// Strip the basename to match useLocation()
_extends3({}, location2, {
pathname: stripBasename(location2.pathname, basename) || location2.pathname
}),
matches2
) : getKey;
let disableScrollRestoration = router2 == null ? void 0 : router2.enableScrollRestoration(savedScrollPositions, () => window.scrollY, getKeyWithoutBasename);
return () => disableScrollRestoration && disableScrollRestoration();
}, [router2, basename, getKey]);
React2.useLayoutEffect(() => {
if (restoreScrollPosition === false) {
return;
}
if (typeof restoreScrollPosition === "number") {
window.scrollTo(0, restoreScrollPosition);
return;
}
if (location.hash) {
let el = document.getElementById(decodeURIComponent(location.hash.slice(1)));
if (el) {
el.scrollIntoView();
return;
}
}
if (preventScrollReset === true) {
return;
}
window.scrollTo(0, 0);
}, [location, restoreScrollPosition, preventScrollReset]);
}
}
function useBeforeUnload(callback, options) {
let {
capture
} = options || {};
React2.useEffect(() => {
let opts = capture != null ? {
capture
} : void 0;
window.addEventListener("beforeunload", callback, opts);
return () => {
window.removeEventListener("beforeunload", callback, opts);
};
}, [callback, capture]);
}
function usePageHide(callback, options) {
let {
capture
} = options || {};
React2.useEffect(() => {
let opts = capture != null ? {
capture
} : void 0;
window.addEventListener("pagehide", callback, opts);
return () => {
window.removeEventListener("pagehide", callback, opts);
};
}, [callback, capture]);
}
function usePrompt(_ref12) {
let {
when,
message
} = _ref12;
let blocker = useBlocker(when);
React2.useEffect(() => {
if (blocker.state === "blocked") {
let proceed = window.confirm(message);
if (proceed) {
setTimeout(blocker.proceed, 0);
} else {
blocker.reset();
}
}
}, [blocker, message]);
React2.useEffect(() => {
if (blocker.state === "blocked" && !when) {
blocker.reset();
}
}, [blocker, when]);
}
function useViewTransitionState(to, opts) {
if (opts === void 0) {
opts = {};
}
let vtContext = React2.useContext(ViewTransitionContext);
!(vtContext != null) ? true ? invariant(false, "`useViewTransitionState` must be used within `react-router-dom`'s `RouterProvider`. Did you accidentally import `RouterProvider` from `react-router`?") : invariant(false) : void 0;
let {
basename
} = useDataRouterContext2(DataRouterHook2.useViewTransitionState);
let path = useResolvedPath(to, {
relative: opts.relative
});
if (!vtContext.isTransitioning) {
return false;
}
let currentPath = stripBasename(vtContext.currentLocation.pathname, basename) || vtContext.currentLocation.pathname;
let nextPath = stripBasename(vtContext.nextLocation.pathname, basename) || vtContext.nextLocation.pathname;
return matchPath(path.pathname, nextPath) != null || matchPath(path.pathname, currentPath) != null;
}
var React2, ReactDOM, defaultMethod, defaultEncType, _formDataSupportsSubmitter, supportedFormEncTypes, _excluded, _excluded2, _excluded3, REACT_ROUTER_VERSION, ViewTransitionContext, FetchersContext, START_TRANSITION2, startTransitionImpl2, FLUSH_SYNC, flushSyncImpl, USE_ID, useIdImpl, Deferred, MemoizedDataRoutes, isBrowser, ABSOLUTE_URL_REGEX2, Link, NavLink, Form, DataRouterHook2, DataRouterStateHook2, fetcherId, getUniqueFetcherId, SCROLL_RESTORATION_STORAGE_KEY, savedScrollPositions;
var init_dist2 = __esm({
"node_modules/react-router-dom/dist/index.js"() {
React2 = __toESM(require_react());
ReactDOM = __toESM(require_react_dom());
init_dist();
init_dist();
init_router();
init_router();
defaultMethod = "get";
defaultEncType = "application/x-www-form-urlencoded";
_formDataSupportsSubmitter = null;
supportedFormEncTypes = /* @__PURE__ */ new Set(["application/x-www-form-urlencoded", "multipart/form-data", "text/plain"]);
_excluded = ["onClick", "relative", "reloadDocument", "replace", "state", "target", "to", "preventScrollReset", "viewTransition"];
_excluded2 = ["aria-current", "caseSensitive", "className", "end", "style", "to", "viewTransition", "children"];
_excluded3 = ["fetcherKey", "navigate", "reloadDocument", "replace", "state", "method", "action", "onSubmit", "relative", "preventScrollReset", "viewTransition"];
REACT_ROUTER_VERSION = "6";
try {
window.__reactRouterVersion = REACT_ROUTER_VERSION;
} catch (e) {
}
ViewTransitionContext = /* @__PURE__ */ React2.createContext({
isTransitioning: false
});
if (true) {
ViewTransitionContext.displayName = "ViewTransition";
}
FetchersContext = /* @__PURE__ */ React2.createContext(/* @__PURE__ */ new Map());
if (true) {
FetchersContext.displayName = "Fetchers";
}
START_TRANSITION2 = "startTransition";
startTransitionImpl2 = React2[START_TRANSITION2];
FLUSH_SYNC = "flushSync";
flushSyncImpl = ReactDOM[FLUSH_SYNC];
USE_ID = "useId";
useIdImpl = React2[USE_ID];
Deferred = class {
constructor() {
this.status = "pending";
this.promise = new Promise((resolve, reject) => {
this.resolve = (value) => {
if (this.status === "pending") {
this.status = "resolved";
resolve(value);
}
};
this.reject = (reason) => {
if (this.status === "pending") {
this.status = "rejected";
reject(reason);
}
};
});
}
};
MemoizedDataRoutes = /* @__PURE__ */ React2.memo(DataRoutes2);
if (true) {
HistoryRouter.displayName = "unstable_HistoryRouter";
}
isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined";
ABSOLUTE_URL_REGEX2 = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;
Link = /* @__PURE__ */ React2.forwardRef(function LinkWithRef(_ref7, ref) {
let {
onClick,
relative,
reloadDocument,
replace: replace3,
state,
target,
to,
preventScrollReset,
viewTransition
} = _ref7, rest = _objectWithoutPropertiesLoose(_ref7, _excluded);
let {
basename
} = React2.useContext(NavigationContext);
let absoluteHref;
let isExternal = false;
if (typeof to === "string" && ABSOLUTE_URL_REGEX2.test(to)) {
absoluteHref = to;
if (isBrowser) {
try {
let currentUrl = new URL(window.location.href);
let targetUrl = to.startsWith("//") ? new URL(currentUrl.protocol + to) : new URL(to);
let path = stripBasename(targetUrl.pathname, basename);
if (targetUrl.origin === currentUrl.origin && path != null) {
to = path + targetUrl.search + targetUrl.hash;
} else {
isExternal = true;
}
} catch (e) {
true ? warning(false, '<Link to="' + to + '"> contains an invalid URL which will probably break when clicked - please update to a valid URL path.') : void 0;
}
}
}
let href = useHref(to, {
relative
});
let internalOnClick = useLinkClickHandler(to, {
replace: replace3,
state,
target,
preventScrollReset,
relative,
viewTransition
});
function handleClick(event) {
if (onClick)
onClick(event);
if (!event.defaultPrevented) {
internalOnClick(event);
}
}
return (
// eslint-disable-next-line jsx-a11y/anchor-has-content
/* @__PURE__ */ React2.createElement("a", _extends3({}, rest, {
href: absoluteHref || href,
onClick: isExternal || reloadDocument ? onClick : handleClick,
ref,
target
}))
);
});
if (true) {
Link.displayName = "Link";
}
NavLink = /* @__PURE__ */ React2.forwardRef(function NavLinkWithRef(_ref8, ref) {
let {
"aria-current": ariaCurrentProp = "page",
caseSensitive = false,
className: classNameProp = "",
end = false,
style: styleProp,
to,
viewTransition,
children
} = _ref8, rest = _objectWithoutPropertiesLoose(_ref8, _excluded2);
let path = useResolvedPath(to, {
relative: rest.relative
});
let location = useLocation();
let routerState = React2.useContext(DataRouterStateContext);
let {
navigator: navigator2,
basename
} = React2.useContext(NavigationContext);
let isTransitioning = routerState != null && // Conditional usage is OK here because the usage of a data router is static
// eslint-disable-next-line react-hooks/rules-of-hooks
useViewTransitionState(path) && viewTransition === true;
let toPathname = navigator2.encodeLocation ? navigator2.encodeLocation(path).pathname : path.pathname;
let locationPathname = location.pathname;
let nextLocationPathname = routerState && routerState.navigation && routerState.navigation.location ? routerState.navigation.location.pathname : null;
if (!caseSensitive) {
locationPathname = locationPathname.toLowerCase();
nextLocationPathname = nextLocationPathname ? nextLocationPathname.toLowerCase() : null;
toPathname = toPathname.toLowerCase();
}
if (nextLocationPathname && basename) {
nextLocationPathname = stripBasename(nextLocationPathname, basename) || nextLocationPathname;
}
const endSlashPosition = toPathname !== "/" && toPathname.endsWith("/") ? toPathname.length - 1 : toPathname.length;
let isActive = locationPathname === toPathname || !end && locationPathname.startsWith(toPathname) && locationPathname.charAt(endSlashPosition) === "/";
let isPending = nextLocationPathname != null && (nextLocationPathname === toPathname || !end && nextLocationPathname.startsWith(toPathname) && nextLocationPathname.charAt(toPathname.length) === "/");
let renderProps = {
isActive,
isPending,
isTransitioning
};
let ariaCurrent = isActive ? ariaCurrentProp : void 0;
let className;
if (typeof classNameProp === "function") {
className = classNameProp(renderProps);
} else {
className = [classNameProp, isActive ? "active" : null, isPending ? "pending" : null, isTransitioning ? "transitioning" : null].filter(Boolean).join(" ");
}
let style = typeof styleProp === "function" ? styleProp(renderProps) : styleProp;
return /* @__PURE__ */ React2.createElement(Link, _extends3({}, rest, {
"aria-current": ariaCurrent,
className,
ref,
style,
to,
viewTransition
}), typeof children === "function" ? children(renderProps) : children);
});
if (true) {
NavLink.displayName = "NavLink";
}
Form = /* @__PURE__ */ React2.forwardRef((_ref9, forwardedRef) => {
let {
fetcherKey,
navigate,
reloadDocument,
replace: replace3,
state,
method = defaultMethod,
action,
onSubmit,
relative,
preventScrollReset,
viewTransition
} = _ref9, props = _objectWithoutPropertiesLoose(_ref9, _excluded3);
let submit = useSubmit();
let formAction = useFormAction(action, {
relative
});
let formMethod = method.toLowerCase() === "get" ? "get" : "post";
let submitHandler = (event) => {
onSubmit && onSubmit(event);
if (event.defaultPrevented)
return;
event.preventDefault();
let submitter = event.nativeEvent.submitter;
let submitMethod = (submitter == null ? void 0 : submitter.getAttribute("formmethod")) || method;
submit(submitter || event.currentTarget, {
fetcherKey,
method: submitMethod,
navigate,
replace: replace3,
state,
relative,
preventScrollReset,
viewTransition
});
};
return /* @__PURE__ */ React2.createElement("form", _extends3({
ref: forwardedRef,
method: formMethod,
action: formAction,
onSubmit: reloadDocument ? onSubmit : submitHandler
}, props));
});
if (true) {
Form.displayName = "Form";
}
if (true) {
ScrollRestoration.displayName = "ScrollRestoration";
}
(function(DataRouterHook3) {
DataRouterHook3["UseScrollRestoration"] = "useScrollRestoration";
DataRouterHook3["UseSubmit"] = "useSubmit";
DataRouterHook3["UseSubmitFetcher"] = "useSubmitFetcher";
DataRouterHook3["UseFetcher"] = "useFetcher";
DataRouterHook3["useViewTransitionState"] = "useViewTransitionState";
})(DataRouterHook2 || (DataRouterHook2 = {}));
(function(DataRouterStateHook3) {
DataRouterStateHook3["UseFetcher"] = "useFetcher";
DataRouterStateHook3["UseFetchers"] = "useFetchers";
DataRouterStateHook3["UseScrollRestoration"] = "useScrollRestoration";
})(DataRouterStateHook2 || (DataRouterStateHook2 = {}));
fetcherId = 0;
getUniqueFetcherId = () => "__" + String(++fetcherId) + "__";
SCROLL_RESTORATION_STORAGE_KEY = "react-router-scroll-positions";
savedScrollPositions = {};
}
});
// node_modules/react-router-dom/server.js
var require_server = __commonJS({
"node_modules/react-router-dom/server.js"(exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var React12 = require_react();
var router2 = (init_router(), __toCommonJS(router_exports));
var reactRouter = (init_dist(), __toCommonJS(dist_exports));
var reactRouterDom = (init_dist2(), __toCommonJS(dist_exports2));
function _interopNamespace(e) {
if (e && e.__esModule)
return e;
var n = /* @__PURE__ */ Object.create(null);
if (e) {
Object.keys(e).forEach(function(k) {
if (k !== "default") {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function() {
return e[k];
}
});
}
});
}
n["default"] = e;
return Object.freeze(n);
}
var React__namespace = /* @__PURE__ */ _interopNamespace(React12);
function StaticRouter({
basename,
children,
location: locationProp = "/",
future
}) {
if (typeof locationProp === "string") {
locationProp = reactRouterDom.parsePath(locationProp);
}
let action = router2.Action.Pop;
let location = {
pathname: locationProp.pathname || "/",
search: locationProp.search || "",
hash: locationProp.hash || "",
state: locationProp.state != null ? locationProp.state : null,
key: locationProp.key || "default"
};
let staticNavigator = getStatelessNavigator();
return /* @__PURE__ */ React__namespace.createElement(reactRouterDom.Router, {
basename,
children,
location,
navigationType: action,
navigator: staticNavigator,
future,
static: true
});
}
function StaticRouterProvider2({
context,
router: router$1,
hydrate: hydrate2 = true,
nonce
}) {
!(router$1 && context) ? true ? router2.UNSAFE_invariant(false, "You must provide `router` and `context` to <StaticRouterProvider>") : router2.UNSAFE_invariant(false) : void 0;
let dataRouterContext = {
router: router$1,
navigator: getStatelessNavigator(),
static: true,
staticContext: context,
basename: context.basename || "/"
};
let fetchersContext = /* @__PURE__ */ new Map();
let hydrateScript = "";
if (hydrate2 !== false) {
let data3 = {
loaderData: context.loaderData,
actionData: context.actionData,
errors: serializeErrors(context.errors)
};
let json4 = htmlEscape(JSON.stringify(JSON.stringify(data3)));
hydrateScript = `window.__staticRouterHydrationData = JSON.parse(${json4});`;
}
let {
state
} = dataRouterContext.router;
return /* @__PURE__ */ React__namespace.createElement(React__namespace.Fragment, null, /* @__PURE__ */ React__namespace.createElement(reactRouterDom.UNSAFE_DataRouterContext.Provider, {
value: dataRouterContext
}, /* @__PURE__ */ React__namespace.createElement(reactRouterDom.UNSAFE_DataRouterStateContext.Provider, {
value: state
}, /* @__PURE__ */ React__namespace.createElement(reactRouterDom.UNSAFE_FetchersContext.Provider, {
value: fetchersContext
}, /* @__PURE__ */ React__namespace.createElement(reactRouterDom.UNSAFE_ViewTransitionContext.Provider, {
value: {
isTransitioning: false
}
}, /* @__PURE__ */ React__namespace.createElement(reactRouterDom.Router, {
basename: dataRouterContext.basename,
location: state.location,
navigationType: state.historyAction,
navigator: dataRouterContext.navigator,
static: dataRouterContext.static,
future: {
v7_relativeSplatPath: router$1.future.v7_relativeSplatPath
}
}, /* @__PURE__ */ React__namespace.createElement(DataRoutes3, {
routes: router$1.routes,
future: router$1.future,
state
})))))), hydrateScript ? /* @__PURE__ */ React__namespace.createElement("script", {
suppressHydrationWarning: true,
nonce,
dangerouslySetInnerHTML: {
__html: hydrateScript
}
}) : null);
}
function DataRoutes3({
routes,
future,
state
}) {
return reactRouter.UNSAFE_useRoutesImpl(routes, void 0, state, future);
}
function serializeErrors(errors) {
if (!errors)
return null;
let entries = Object.entries(errors);
let serialized = {};
for (let [key, val] of entries) {
if (router2.isRouteErrorResponse(val)) {
serialized[key] = {
...val,
__type: "RouteErrorResponse"
};
} else if (val instanceof Error) {
serialized[key] = {
message: val.message,
__type: "Error",
// If this is a subclass (i.e., ReferenceError), send up the type so we
// can re-create the same type during hydration.
...val.name !== "Error" ? {
__subType: val.name
} : {}
};
} else {
serialized[key] = val;
}
}
return serialized;
}
function getStatelessNavigator() {
return {
createHref,
encodeLocation,
push(to) {
throw new Error(`You cannot use navigator.push() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${JSON.stringify(to)})\` somewhere in your app.`);
},
replace(to) {
throw new Error(`You cannot use navigator.replace() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${JSON.stringify(to)}, { replace: true })\` somewhere in your app.`);
},
go(delta) {
throw new Error(`You cannot use navigator.go() on the server because it is a stateless environment. This error was probably triggered when you did a \`navigate(${delta})\` somewhere in your app.`);
},
back() {
throw new Error(`You cannot use navigator.back() on the server because it is a stateless environment.`);
},
forward() {
throw new Error(`You cannot use navigator.forward() on the server because it is a stateless environment.`);
}
};
}
function createStaticHandler2(routes, opts) {
return router2.createStaticHandler(routes, {
...opts,
mapRouteProperties: reactRouter.UNSAFE_mapRouteProperties
});
}
function createStaticRouter2(routes, context, opts = {}) {
let manifest = {};
let dataRoutes = router2.UNSAFE_convertRoutesToDataRoutes(routes, reactRouter.UNSAFE_mapRouteProperties, void 0, manifest);
let matches = context.matches.map((match) => {
let route = manifest[match.route.id] || match.route;
return {
...match,
route
};
});
let msg = (method) => `You cannot use router.${method}() on the server because it is a stateless environment`;
return {
get basename() {
return context.basename;
},
get future() {
return {
v7_fetcherPersist: false,
v7_normalizeFormMethod: false,
v7_partialHydration: opts.future?.v7_partialHydration === true,
v7_prependBasename: false,
v7_relativeSplatPath: opts.future?.v7_relativeSplatPath === true,
v7_skipActionErrorRevalidation: false
};
},
get state() {
return {
historyAction: router2.Action.Pop,
location: context.location,
matches,
loaderData: context.loaderData,
actionData: context.actionData,
errors: context.errors,
initialized: true,
navigation: router2.IDLE_NAVIGATION,
restoreScrollPosition: null,
preventScrollReset: false,
revalidation: "idle",
fetchers: /* @__PURE__ */ new Map(),
blockers: /* @__PURE__ */ new Map()
};
},
get routes() {
return dataRoutes;
},
get window() {
return void 0;
},
initialize() {
throw msg("initialize");
},
subscribe() {
throw msg("subscribe");
},
enableScrollRestoration() {
throw msg("enableScrollRestoration");
},
navigate() {
throw msg("navigate");
},
fetch() {
throw msg("fetch");
},
revalidate() {
throw msg("revalidate");
},
createHref,
encodeLocation,
getFetcher() {
return router2.IDLE_FETCHER;
},
deleteFetcher() {
throw msg("deleteFetcher");
},
dispose() {
throw msg("dispose");
},
getBlocker() {
return router2.IDLE_BLOCKER;
},
deleteBlocker() {
throw msg("deleteBlocker");
},
patchRoutes() {
throw msg("patchRoutes");
},
_internalFetchControllers: /* @__PURE__ */ new Map(),
_internalActiveDeferreds: /* @__PURE__ */ new Map(),
_internalSetRoutes() {
throw msg("_internalSetRoutes");
}
};
}
function createHref(to) {
return typeof to === "string" ? to : reactRouterDom.createPath(to);
}
function encodeLocation(to) {
let href = typeof to === "string" ? to : reactRouterDom.createPath(to);
href = href.replace(/ $/, "%20");
let encoded = ABSOLUTE_URL_REGEX4.test(href) ? new URL(href) : new URL(href, "http://localhost");
return {
pathname: encoded.pathname,
search: encoded.search,
hash: encoded.hash
};
}
var ABSOLUTE_URL_REGEX4 = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;
var ESCAPE_LOOKUP2 = {
"&": "\\u0026",
">": "\\u003e",
"<": "\\u003c",
"\u2028": "\\u2028",
"\u2029": "\\u2029"
};
var ESCAPE_REGEX2 = /[&><\u2028\u2029]/g;
function htmlEscape(str) {
return str.replace(ESCAPE_REGEX2, (match) => ESCAPE_LOOKUP2[match]);
}
exports.StaticRouter = StaticRouter;
exports.StaticRouterProvider = StaticRouterProvider2;
exports.createStaticHandler = createStaticHandler2;
exports.createStaticRouter = createStaticRouter2;
}
});
// node_modules/@remix-run/react/dist/esm/index.js
init_dist2();
// node_modules/@remix-run/server-runtime/dist/esm/responses.js
init_router();
var json3 = (data3, init = {}) => {
return json(data3, init);
};
var defer3 = (data3, init = {}) => {
return defer(data3, init);
};
var redirect3 = (url, init = 302) => {
return redirect(url, init);
};
var replace2 = (url, init = 302) => {
return replace(url, init);
};
var redirectDocument2 = (url, init = 302) => {
return redirectDocument(url, init);
};
// node_modules/@remix-run/server-runtime/dist/esm/single-fetch.js
init_router();
// node_modules/turbo-stream/dist/turbo-stream.mjs
var HOLE = -1;
var NAN = -2;
var NEGATIVE_INFINITY = -3;
var NEGATIVE_ZERO = -4;
var NULL = -5;
var POSITIVE_INFINITY = -6;
var UNDEFINED = -7;
var TYPE_BIGINT = "B";
var TYPE_DATE = "D";
var TYPE_ERROR = "E";
var TYPE_MAP = "M";
var TYPE_NULL_OBJECT = "N";
var TYPE_PROMISE = "P";
var TYPE_REGEXP = "R";
var TYPE_SET = "S";
var TYPE_SYMBOL = "Y";
var TYPE_URL = "U";
var TYPE_PREVIOUS_RESOLVED = "Z";
var Deferred2 = class {
promise;
resolve;
reject;
constructor() {
this.promise = new Promise((resolve, reject) => {
this.resolve = resolve;
this.reject = reject;
});
}
};
function createLineSplittingTransform() {
const decoder = new TextDecoder();
let leftover = "";
return new TransformStream({
transform(chunk, controller) {
const str = decoder.decode(chunk, { stream: true });
const parts = (leftover + str).split("\n");
leftover = parts.pop() || "";
for (const part of parts) {
controller.enqueue(part);
}
},
flush(controller) {
if (leftover) {
controller.enqueue(leftover);
}
}
});
}
var objectProtoNames = Object.getOwnPropertyNames(Object.prototype).sort().join("\0");
var globalObj = typeof window !== "undefined" ? window : typeof globalThis !== "undefined" ? globalThis : void 0;
function unflatten(parsed) {
const { hydrated, values } = this;
if (typeof parsed === "number")
return hydrate.call(this, parsed);
if (!Array.isArray(parsed) || !parsed.length)
throw new SyntaxError();
const startIndex = values.length;
for (const value of parsed) {
values.push(value);
}
hydrated.length = values.length;
return hydrate.call(this, startIndex);
}
function hydrate(index) {
const { hydrated, values, deferred, plugins } = this;
let result;
const stack = [
[
index,
(v) => {
result = v;
}
]
];
let postRun = [];
while (stack.length > 0) {
const [index2, set] = stack.pop();
switch (index2) {
case UNDEFINED:
set(void 0);
continue;
case NULL:
set(null);
continue;
case NAN:
set(NaN);
continue;
case POSITIVE_INFINITY:
set(Infinity);
continue;
case NEGATIVE_INFINITY:
set(-Infinity);
continue;
case NEGATIVE_ZERO:
set(-0);
continue;
}
if (hydrated[index2]) {
set(hydrated[index2]);
continue;
}
const value = values[index2];
if (!value || typeof value !== "object") {
hydrated[index2] = value;
set(value);
continue;
}
if (Array.isArray(value)) {
if (typeof value[0] === "string") {
const [type, b, c] = value;
switch (type) {
case TYPE_DATE:
set(hydrated[index2] = new Date(b));
continue;
case TYPE_URL:
set(hydrated[index2] = new URL(b));
continue;
case TYPE_BIGINT:
set(hydrated[index2] = BigInt(b));
continue;
case TYPE_REGEXP:
set(hydrated[index2] = new RegExp(b, c));
continue;
case TYPE_SYMBOL:
set(hydrated[index2] = Symbol.for(b));
continue;
case TYPE_SET:
const newSet = /* @__PURE__ */ new Set();
hydrated[index2] = newSet;
for (let i = 1; i < value.length; i++)
stack.push([
value[i],
(v) => {
newSet.add(v);
}
]);
set(newSet);
continue;
case TYPE_MAP:
const map = /* @__PURE__ */ new Map();
hydrated[index2] = map;
for (let i = 1; i < value.length; i += 2) {
const r = [];
stack.push([
value[i + 1],
(v) => {
r[1] = v;
}
]);
stack.push([
value[i],
(k) => {
r[0] = k;
}
]);
postRun.push(() => {
map.set(r[0], r[1]);
});
}
set(map);
continue;
case TYPE_NULL_OBJECT:
const obj = /* @__PURE__ */ Object.create(null);
hydrated[index2] = obj;
for (const key of Object.keys(b).reverse()) {
const r = [];
stack.push([
b[key],
(v) => {
r[1] = v;
}
]);
stack.push([
Number(key.slice(1)),
(k) => {
r[0] = k;
}
]);
postRun.push(() => {
obj[r[0]] = r[1];
});
}
set(obj);
continue;
case TYPE_PROMISE:
if (hydrated[b]) {
set(hydrated[index2] = hydrated[b]);
} else {
const d = new Deferred2();
deferred[b] = d;
set(hydrated[index2] = d.promise);
}
continue;
case TYPE_ERROR:
const [, message, errorType] = value;
let error = errorType && globalObj && globalObj[errorType] ? new globalObj[errorType](message) : new Error(message);
hydrated[index2] = error;
set(error);
continue;
case TYPE_PREVIOUS_RESOLVED:
set(hydrated[index2] = hydrated[b]);
continue;
default:
if (Array.isArray(plugins)) {
const r = [];
const vals = value.slice(1);
for (let i = 0; i < vals.length; i++) {
const v = vals[i];
stack.push([
v,
(v2) => {
r[i] = v2;
}
]);
}
postRun.push(() => {
for (const plugin of plugins) {
const result2 = plugin(value[0], ...r);
if (result2) {
set(hydrated[index2] = result2.value);
return;
}
}
throw new SyntaxError();
});
continue;
}
throw new SyntaxError();
}
} else {
const array = [];
hydrated[index2] = array;
for (let i = 0; i < value.length; i++) {
const n = value[i];
if (n !== HOLE) {
stack.push([
n,
(v) => {
array[i] = v;
}
]);
}
}
set(array);
continue;
}
} else {
const object = {};
hydrated[index2] = object;
for (const key of Object.keys(value).reverse()) {
const r = [];
stack.push([
value[key],
(v) => {
r[1] = v;
}
]);
stack.push([
Number(key.slice(1)),
(k) => {
r[0] = k;
}
]);
postRun.push(() => {
object[r[0]] = r[1];
});
}
set(object);
continue;
}
}
while (postRun.length > 0) {
postRun.pop()();
}
return result;
}
async function decode(readable, options) {
const { plugins } = options ?? {};
const done = new Deferred2();
const reader = readable.pipeThrough(createLineSplittingTransform()).getReader();
const decoder = {
values: [],
hydrated: [],
deferred: {},
plugins
};
const decoded = await decodeInitial.call(decoder, reader);
let donePromise = done.promise;
if (decoded.done) {
done.resolve();
} else {
donePromise = decodeDeferred.call(decoder, reader).then(done.resolve).catch((reason) => {
for (const deferred of Object.values(decoder.deferred)) {
deferred.reject(reason);
}
done.reject(reason);
});
}
return {
done: donePromise.then(() => reader.closed),
value: decoded.value
};
}
async function decodeInitial(reader) {
const read = await reader.read();
if (!read.value) {
throw new SyntaxError();
}
let line;
try {
line = JSON.parse(read.value);
} catch (reason) {
throw new SyntaxError();
}
return {
done: read.done,
value: unflatten.call(this, line)
};
}
async function decodeDeferred(reader) {
let read = await reader.read();
while (!read.done) {
if (!read.value)
continue;
const line = read.value;
switch (line[0]) {
case TYPE_PROMISE: {
const colonIndex = line.indexOf(":");
const deferredId = Number(line.slice(1, colonIndex));
const deferred = this.deferred[deferredId];
if (!deferred) {
throw new Error(`Deferred ID ${deferredId} not found in stream`);
}
const lineData = line.slice(colonIndex + 1);
let jsonLine;
try {
jsonLine = JSON.parse(lineData);
} catch (reason) {
throw new SyntaxError();
}
const value = unflatten.call(this, jsonLine);
deferred.resolve(value);
break;
}
case TYPE_ERROR: {
const colonIndex = line.indexOf(":");
const deferredId = Number(line.slice(1, colonIndex));
const deferred = this.deferred[deferredId];
if (!deferred) {
throw new Error(`Deferred ID ${deferredId} not found in stream`);
}
const lineData = line.slice(colonIndex + 1);
let jsonLine;
try {
jsonLine = JSON.parse(lineData);
} catch (reason) {
throw new SyntaxError();
}
const value = unflatten.call(this, jsonLine);
deferred.reject(value);
break;
}
default:
throw new SyntaxError();
}
read = await reader.read();
}
}
// node_modules/@remix-run/server-runtime/dist/esm/single-fetch.js
var SingleFetchRedirectSymbol = Symbol("SingleFetchRedirect");
function data2(value, init) {
return data(value, init);
}
// node_modules/@remix-run/react/dist/esm/browser.js
init_router();
var React9 = __toESM(require_react());
init_dist();
init_dist2();
// node_modules/@remix-run/react/dist/esm/_virtual/_rollupPluginBabelHelpers.js
function _extends4() {
_extends4 = Object.assign ? Object.assign.bind() : function(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends4.apply(this, arguments);
}
// node_modules/@remix-run/react/dist/esm/components.js
var React8 = __toESM(require_react());
init_dist2();
// node_modules/@remix-run/react/dist/esm/invariant.js
function invariant2(value, message) {
if (value === false || value === null || typeof value === "undefined") {
throw new Error(message);
}
}
// node_modules/@remix-run/react/dist/esm/links.js
init_dist2();
// node_modules/@remix-run/react/dist/esm/routeModules.js
async function loadRouteModule(route, routeModulesCache) {
if (route.id in routeModulesCache) {
return routeModulesCache[route.id];
}
try {
let routeModule = await import(
/* webpackIgnore: true */
route.module
);
routeModulesCache[route.id] = routeModule;
return routeModule;
} catch (error) {
console.error(`Error loading route module \`${route.module}\`, reloading page...`);
console.error(error);
if (window.__remixContext.isSpaMode && // @ts-expect-error
typeof import.meta.hot !== "undefined") {
throw error;
}
window.location.reload();
return new Promise(() => {
});
}
}
// node_modules/@remix-run/react/dist/esm/links.js
function getKeyedLinksForMatches(matches, routeModules, manifest) {
let descriptors = matches.map((match) => {
var _module$links;
let module = routeModules[match.route.id];
let route = manifest.routes[match.route.id];
return [route.css ? route.css.map((href) => ({
rel: "stylesheet",
href
})) : [], (module === null || module === void 0 ? void 0 : (_module$links = module.links) === null || _module$links === void 0 ? void 0 : _module$links.call(module)) || []];
}).flat(2);
let preloads = getCurrentPageModulePreloadHrefs(matches, manifest);
return dedupeLinkDescriptors(descriptors, preloads);
}
async function prefetchStyleLinks(route, routeModule) {
var _route$css, _routeModule$links;
if (!route.css && !routeModule.links || !isPreloadSupported())
return;
let descriptors = [((_route$css = route.css) === null || _route$css === void 0 ? void 0 : _route$css.map((href) => ({
rel: "stylesheet",
href
}))) ?? [], ((_routeModule$links = routeModule.links) === null || _routeModule$links === void 0 ? void 0 : _routeModule$links.call(routeModule)) ?? []].flat(1);
if (descriptors.length === 0)
return;
let styleLinks = [];
for (let descriptor of descriptors) {
if (!isPageLinkDescriptor(descriptor) && descriptor.rel === "stylesheet") {
styleLinks.push({
...descriptor,
rel: "preload",
as: "style"
});
}
}
let matchingLinks = styleLinks.filter((link) => (!link.media || window.matchMedia(link.media).matches) && !document.querySelector(`link[rel="stylesheet"][href="${link.href}"]`));
await Promise.all(matchingLinks.map(prefetchStyleLink));
}
async function prefetchStyleLink(descriptor) {
return new Promise((resolve) => {
let link = document.createElement("link");
Object.assign(link, descriptor);
function removeLink() {
if (document.head.contains(link)) {
document.head.removeChild(link);
}
}
link.onload = () => {
removeLink();
resolve();
};
link.onerror = () => {
removeLink();
resolve();
};
document.head.appendChild(link);
});
}
function isPageLinkDescriptor(object) {
return object != null && typeof object.page === "string";
}
function isHtmlLinkDescriptor(object) {
if (object == null) {
return false;
}
if (object.href == null) {
return object.rel === "preload" && typeof object.imageSrcSet === "string" && typeof object.imageSizes === "string";
}
return typeof object.rel === "string" && typeof object.href === "string";
}
async function getKeyedPrefetchLinks(matches, manifest, routeModules) {
let links = await Promise.all(matches.map(async (match) => {
let mod = await loadRouteModule(manifest.routes[match.route.id], routeModules);
return mod.links ? mod.links() : [];
}));
return dedupeLinkDescriptors(links.flat(1).filter(isHtmlLinkDescriptor).filter((link) => link.rel === "stylesheet" || link.rel === "preload").map((link) => link.rel === "stylesheet" ? {
...link,
rel: "prefetch",
as: "style"
} : {
...link,
rel: "prefetch"
}));
}
function getNewMatchesForLinks(page, nextMatches, currentMatches, manifest, location, future, mode) {
let path = parsePathPatch(page);
let isNew = (match, index) => {
if (!currentMatches[index])
return true;
return match.route.id !== currentMatches[index].route.id;
};
let matchPathChanged = (match, index) => {
var _currentMatches$index;
return (
// param change, /users/123 -> /users/456
currentMatches[index].pathname !== match.pathname || // splat param changed, which is not present in match.path
// e.g. /files/images/avatar.jpg -> files/finances.xls
((_currentMatches$index = currentMatches[index].route.path) === null || _currentMatches$index === void 0 ? void 0 : _currentMatches$index.endsWith("*")) && currentMatches[index].params["*"] !== match.params["*"]
);
};
let newMatches = mode === "data" && (future.v3_singleFetch || location.search !== path.search) ? (
// this is really similar to stuff in transition.ts, maybe somebody smarter
// than me (or in less of a hurry) can share some of it. You're the best.
nextMatches.filter((match, index) => {
let manifestRoute = manifest.routes[match.route.id];
if (!manifestRoute.hasLoader) {
return false;
}
if (isNew(match, index) || matchPathChanged(match, index)) {
return true;
}
let defaultShouldRevalidate = future.v3_singleFetch || location.search !== path.search;
if (match.route.shouldRevalidate) {
var _currentMatches$;
let routeChoice = match.route.shouldRevalidate({
currentUrl: new URL(location.pathname + location.search + location.hash, window.origin),
currentParams: ((_currentMatches$ = currentMatches[0]) === null || _currentMatches$ === void 0 ? void 0 : _currentMatches$.params) || {},
nextUrl: new URL(page, window.origin),
nextParams: match.params,
defaultShouldRevalidate
});
if (typeof routeChoice === "boolean") {
return routeChoice;
}
}
return defaultShouldRevalidate;
})
) : nextMatches.filter((match, index) => {
let manifestRoute = manifest.routes[match.route.id];
return (mode === "assets" || manifestRoute.hasLoader) && (isNew(match, index) || matchPathChanged(match, index));
});
return newMatches;
}
function getDataLinkHrefs(page, matches, manifest) {
let path = parsePathPatch(page);
return dedupeHrefs(matches.filter((match) => manifest.routes[match.route.id].hasLoader && !manifest.routes[match.route.id].hasClientLoader).map((match) => {
let {
pathname,
search
} = path;
let searchParams = new URLSearchParams(search);
searchParams.set("_data", match.route.id);
return `${pathname}?${searchParams}`;
}));
}
function getModuleLinkHrefs(matches, manifestPatch) {
return dedupeHrefs(matches.map((match) => {
let route = manifestPatch.routes[match.route.id];
let hrefs = [route.module];
if (route.imports) {
hrefs = hrefs.concat(route.imports);
}
return hrefs;
}).flat(1));
}
function getCurrentPageModulePreloadHrefs(matches, manifest) {
return dedupeHrefs(matches.map((match) => {
let route = manifest.routes[match.route.id];
let hrefs = [route.module];
if (route.imports) {
hrefs = hrefs.concat(route.imports);
}
return hrefs;
}).flat(1));
}
function dedupeHrefs(hrefs) {
return [...new Set(hrefs)];
}
function sortKeys(obj) {
let sorted = {};
let keys = Object.keys(obj).sort();
for (let key of keys) {
sorted[key] = obj[key];
}
return sorted;
}
function dedupeLinkDescriptors(descriptors, preloads) {
let set = /* @__PURE__ */ new Set();
let preloadsSet = new Set(preloads);
return descriptors.reduce((deduped, descriptor) => {
let alreadyModulePreload = preloads && !isPageLinkDescriptor(descriptor) && descriptor.as === "script" && descriptor.href && preloadsSet.has(descriptor.href);
if (alreadyModulePreload) {
return deduped;
}
let key = JSON.stringify(sortKeys(descriptor));
if (!set.has(key)) {
set.add(key);
deduped.push({
key,
link: descriptor
});
}
return deduped;
}, []);
}
function parsePathPatch(href) {
let path = parsePath(href);
if (path.search === void 0)
path.search = "";
return path;
}
var _isPreloadSupported;
function isPreloadSupported() {
if (_isPreloadSupported !== void 0) {
return _isPreloadSupported;
}
let el = document.createElement("link");
_isPreloadSupported = el.relList.supports("preload");
el = null;
return _isPreloadSupported;
}
// node_modules/@remix-run/react/dist/esm/markup.js
var ESCAPE_LOOKUP = {
"&": "\\u0026",
">": "\\u003e",
"<": "\\u003c",
"\u2028": "\\u2028",
"\u2029": "\\u2029"
};
var ESCAPE_REGEX = /[&><\u2028\u2029]/g;
function escapeHtml(html) {
return html.replace(ESCAPE_REGEX, (match) => ESCAPE_LOOKUP[match]);
}
function createHtml(html) {
return {
__html: html
};
}
// node_modules/@remix-run/react/dist/esm/single-fetch.js
var React3 = __toESM(require_react());
init_router();
// node_modules/@remix-run/react/dist/esm/data.js
init_router();
function isCatchResponse(response) {
return response.headers.get("X-Remix-Catch") != null;
}
function isErrorResponse(response) {
return response.headers.get("X-Remix-Error") != null;
}
function isNetworkErrorResponse(response) {
return isResponse2(response) && response.status >= 400 && response.headers.get("X-Remix-Error") == null && response.headers.get("X-Remix-Catch") == null && response.headers.get("X-Remix-Response") == null;
}
function isRedirectResponse2(response) {
return response.headers.get("X-Remix-Redirect") != null;
}
function isDeferredResponse(response) {
var _response$headers$get;
return !!((_response$headers$get = response.headers.get("Content-Type")) !== null && _response$headers$get !== void 0 && _response$headers$get.match(/text\/remix-deferred/));
}
function isResponse2(value) {
return value != null && typeof value.status === "number" && typeof value.statusText === "string" && typeof value.headers === "object" && typeof value.body !== "undefined";
}
function isDeferredData2(value) {
let deferred = value;
return deferred && typeof deferred === "object" && typeof deferred.data === "object" && typeof deferred.subscribe === "function" && typeof deferred.cancel === "function" && typeof deferred.resolveData === "function";
}
async function fetchData(request, routeId, retry = 0) {
let url = new URL(request.url);
url.searchParams.set("_data", routeId);
if (retry > 0) {
await new Promise((resolve) => setTimeout(resolve, 5 ** retry * 10));
}
let init = await createRequestInit(request);
let revalidation = window.__remixRevalidation;
let response = await fetch(url.href, init).catch((error) => {
if (typeof revalidation === "number" && revalidation === window.__remixRevalidation && (error === null || error === void 0 ? void 0 : error.name) === "TypeError" && retry < 3) {
return fetchData(request, routeId, retry + 1);
}
throw error;
});
if (isErrorResponse(response)) {
let data3 = await response.json();
let error = new Error(data3.message);
error.stack = data3.stack;
return error;
}
if (isNetworkErrorResponse(response)) {
let text = await response.text();
let error = new Error(text);
error.stack = void 0;
return error;
}
return response;
}
async function createRequestInit(request) {
let init = {
signal: request.signal
};
if (request.method !== "GET") {
init.method = request.method;
let contentType = request.headers.get("Content-Type");
if (contentType && /\bapplication\/json\b/.test(contentType)) {
init.headers = {
"Content-Type": contentType
};
init.body = JSON.stringify(await request.json());
} else if (contentType && /\btext\/plain\b/.test(contentType)) {
init.headers = {
"Content-Type": contentType
};
init.body = await request.text();
} else if (contentType && /\bapplication\/x-www-form-urlencoded\b/.test(contentType)) {
init.body = new URLSearchParams(await request.text());
} else {
init.body = await request.formData();
}
}
return init;
}
var DEFERRED_VALUE_PLACEHOLDER_PREFIX = "__deferred_promise:";
async function parseDeferredReadableStream(stream) {
if (!stream) {
throw new Error("parseDeferredReadableStream requires stream argument");
}
let deferredData;
let deferredResolvers = {};
try {
let sectionReader = readStreamSections(stream);
let initialSectionResult = await sectionReader.next();
let initialSection = initialSectionResult.value;
if (!initialSection)
throw new Error("no critical data");
let criticalData = JSON.parse(initialSection);
if (typeof criticalData === "object" && criticalData !== null) {
for (let [eventKey, value] of Object.entries(criticalData)) {
if (typeof value !== "string" || !value.startsWith(DEFERRED_VALUE_PLACEHOLDER_PREFIX)) {
continue;
}
deferredData = deferredData || {};
deferredData[eventKey] = new Promise((resolve, reject) => {
deferredResolvers[eventKey] = {
resolve: (value2) => {
resolve(value2);
delete deferredResolvers[eventKey];
},
reject: (error) => {
reject(error);
delete deferredResolvers[eventKey];
}
};
});
}
}
void (async () => {
try {
for await (let section of sectionReader) {
let [event, ...sectionDataStrings] = section.split(":");
let sectionDataString = sectionDataStrings.join(":");
let data3 = JSON.parse(sectionDataString);
if (event === "data") {
for (let [key, value] of Object.entries(data3)) {
if (deferredResolvers[key]) {
deferredResolvers[key].resolve(value);
}
}
} else if (event === "error") {
for (let [key, value] of Object.entries(data3)) {
let err = new Error(value.message);
err.stack = value.stack;
if (deferredResolvers[key]) {
deferredResolvers[key].reject(err);
}
}
}
}
for (let [key, resolver] of Object.entries(deferredResolvers)) {
resolver.reject(new AbortedDeferredError(`Deferred ${key} will never be resolved`));
}
} catch (error) {
for (let resolver of Object.values(deferredResolvers)) {
resolver.reject(error);
}
}
})();
return new DeferredData({
...criticalData,
...deferredData
});
} catch (error) {
for (let resolver of Object.values(deferredResolvers)) {
resolver.reject(error);
}
throw error;
}
}
async function* readStreamSections(stream) {
let reader = stream.getReader();
let buffer = [];
let sections = [];
let closed = false;
let encoder = new TextEncoder();
let decoder = new TextDecoder();
let readStreamSection = async () => {
if (sections.length > 0)
return sections.shift();
while (!closed && sections.length === 0) {
let chunk = await reader.read();
if (chunk.done) {
closed = true;
break;
}
buffer.push(chunk.value);
try {
let bufferedString = decoder.decode(mergeArrays(...buffer));
let splitSections = bufferedString.split("\n\n");
if (splitSections.length >= 2) {
sections.push(...splitSections.slice(0, -1));
buffer = [encoder.encode(splitSections.slice(-1).join("\n\n"))];
}
if (sections.length > 0) {
break;
}
} catch {
continue;
}
}
if (sections.length > 0) {
return sections.shift();
}
if (buffer.length > 0) {
let bufferedString = decoder.decode(mergeArrays(...buffer));
sections = bufferedString.split("\n\n").filter((s) => s);
buffer = [];
}
return sections.shift();
};
let section = await readStreamSection();
while (section) {
yield section;
section = await readStreamSection();
}
}
function mergeArrays(...arrays) {
let out = new Uint8Array(arrays.reduce((total, arr) => total + arr.length, 0));
let offset = 0;
for (let arr of arrays) {
out.set(arr, offset);
offset += arr.length;
}
return out;
}
// node_modules/@remix-run/react/dist/esm/single-fetch.js
function StreamTransfer({
context,
identifier,
reader,
textDecoder,
nonce
}) {
if (!context.renderMeta || !context.renderMeta.didRenderScripts) {
return null;
}
if (!context.renderMeta.streamCache) {
context.renderMeta.streamCache = {};
}
let {
streamCache
} = context.renderMeta;
let promise = streamCache[identifier];
if (!promise) {
promise = streamCache[identifier] = reader.read().then((result) => {
streamCache[identifier].result = {
done: result.done,
value: textDecoder.decode(result.value, {
stream: true
})
};
}).catch((e) => {
streamCache[identifier].error = e;
});
}
if (promise.error) {
throw promise.error;
}
if (promise.result === void 0) {
throw promise;
}
let {
done,
value
} = promise.result;
let scriptTag = value ? /* @__PURE__ */ React3.createElement("script", {
nonce,
dangerouslySetInnerHTML: {
__html: `window.__remixContext.streamController.enqueue(${escapeHtml(JSON.stringify(value))});`
}
}) : null;
if (done) {
return /* @__PURE__ */ React3.createElement(React3.Fragment, null, scriptTag, /* @__PURE__ */ React3.createElement("script", {
nonce,
dangerouslySetInnerHTML: {
__html: `window.__remixContext.streamController.close();`
}
}));
} else {
return /* @__PURE__ */ React3.createElement(React3.Fragment, null, scriptTag, /* @__PURE__ */ React3.createElement(React3.Suspense, null, /* @__PURE__ */ React3.createElement(StreamTransfer, {
context,
identifier: identifier + 1,
reader,
textDecoder,
nonce
})));
}
}
function getSingleFetchDataStrategy(manifest, routeModules, getRouter) {
return async ({
request,
matches,
fetcherKey
}) => {
if (request.method !== "GET") {
return singleFetchActionStrategy(request, matches);
}
if (fetcherKey) {
return singleFetchLoaderFetcherStrategy(request, matches);
}
return singleFetchLoaderNavigationStrategy(manifest, routeModules, getRouter(), request, matches);
};
}
async function singleFetchActionStrategy(request, matches) {
let actionMatch = matches.find((m) => m.shouldLoad);
invariant2(actionMatch, "No action match found");
let actionStatus = void 0;
let result = await actionMatch.resolve(async (handler) => {
let result2 = await handler(async () => {
let url = singleFetchUrl(request.url);
let init = await createRequestInit(request);
let {
data: data3,
status
} = await fetchAndDecode(url, init);
actionStatus = status;
return unwrapSingleFetchResult(data3, actionMatch.route.id);
});
return result2;
});
if (isResponse2(result.result) || isRouteErrorResponse(result.result)) {
return {
[actionMatch.route.id]: result
};
}
return {
[actionMatch.route.id]: {
type: result.type,
result: data(result.result, actionStatus)
}
};
}
async function singleFetchLoaderNavigationStrategy(manifest, routeModules, router2, request, matches) {
let routesParams = /* @__PURE__ */ new Set();
let foundOptOutRoute = false;
let routeDfds = matches.map(() => createDeferred());
let routesLoadedPromise = Promise.all(routeDfds.map((d) => d.promise));
let singleFetchDfd = createDeferred();
let url = stripIndexParam(singleFetchUrl(request.url));
let init = await createRequestInit(request);
let results = {};
let resolvePromise = Promise.all(matches.map(async (m, i) => m.resolve(async (handler) => {
routeDfds[i].resolve();
if (!m.shouldLoad) {
var _routeModules$m$route;
if (!router2.state.initialized) {
return;
}
if (m.route.id in router2.state.loaderData && manifest.routes[m.route.id] && (_routeModules$m$route = routeModules[m.route.id]) !== null && _routeModules$m$route !== void 0 && _routeModules$m$route.shouldRevalidate) {
if (manifest.routes[m.route.id].hasLoader) {
foundOptOutRoute = true;
}
return;
}
}
if (manifest.routes[m.route.id].hasClientLoader) {
if (manifest.routes[m.route.id].hasLoader) {
foundOptOutRoute = true;
}
try {
let result = await fetchSingleLoader(handler, url, init, m.route.id);
results[m.route.id] = {
type: "data",
result
};
} catch (e) {
results[m.route.id] = {
type: "error",
result: e
};
}
return;
}
if (manifest.routes[m.route.id].hasLoader) {
routesParams.add(m.route.id);
}
try {
let result = await handler(async () => {
let data3 = await singleFetchDfd.promise;
return unwrapSingleFetchResults(data3, m.route.id);
});
results[m.route.id] = {
type: "data",
result
};
} catch (e) {
results[m.route.id] = {
type: "error",
result: e
};
}
})));
await routesLoadedPromise;
if ((!router2.state.initialized || routesParams.size === 0) && !window.__remixHdrActive) {
singleFetchDfd.resolve({});
} else {
try {
if (foundOptOutRoute && routesParams.size > 0) {
url.searchParams.set("_routes", matches.filter((m) => routesParams.has(m.route.id)).map((m) => m.route.id).join(","));
}
let data3 = await fetchAndDecode(url, init);
singleFetchDfd.resolve(data3.data);
} catch (e) {
singleFetchDfd.reject(e);
}
}
await resolvePromise;
return results;
}
async function singleFetchLoaderFetcherStrategy(request, matches) {
let fetcherMatch = matches.find((m) => m.shouldLoad);
invariant2(fetcherMatch, "No fetcher match found");
let result = await fetcherMatch.resolve(async (handler) => {
let url = stripIndexParam(singleFetchUrl(request.url));
let init = await createRequestInit(request);
return fetchSingleLoader(handler, url, init, fetcherMatch.route.id);
});
return {
[fetcherMatch.route.id]: result
};
}
function fetchSingleLoader(handler, url, init, routeId) {
return handler(async () => {
let singleLoaderUrl = new URL(url);
singleLoaderUrl.searchParams.set("_routes", routeId);
let {
data: data3
} = await fetchAndDecode(singleLoaderUrl, init);
return unwrapSingleFetchResults(data3, routeId);
});
}
function stripIndexParam(url) {
let indexValues = url.searchParams.getAll("index");
url.searchParams.delete("index");
let indexValuesToKeep = [];
for (let indexValue of indexValues) {
if (indexValue) {
indexValuesToKeep.push(indexValue);
}
}
for (let toKeep of indexValuesToKeep) {
url.searchParams.append("index", toKeep);
}
return url;
}
function singleFetchUrl(reqUrl) {
let url = typeof reqUrl === "string" ? new URL(reqUrl, window.location.origin) : reqUrl;
if (url.pathname === "/") {
url.pathname = "_root.data";
} else {
url.pathname = `${url.pathname.replace(/\/$/, "")}.data`;
}
return url;
}
async function fetchAndDecode(url, init) {
let res = await fetch(url, init);
let NO_BODY_STATUS_CODES = /* @__PURE__ */ new Set([100, 101, 204, 205]);
if (NO_BODY_STATUS_CODES.has(res.status)) {
if (!init.method || init.method === "GET") {
return {
status: res.status,
data: {}
};
} else {
return {
status: res.status,
data: {
data: null
}
};
}
}
invariant2(res.body, "No response body to decode");
try {
let decoded = await decodeViaTurboStream(res.body, window);
return {
status: res.status,
data: decoded.value
};
} catch (e) {
console.error(e);
throw new Error(`Unable to decode turbo-stream response from URL: ${url.toString()}`);
}
}
function decodeViaTurboStream(body, global) {
return decode(body, {
plugins: [(type, ...rest) => {
if (type === "SanitizedError") {
let [name, message, stack] = rest;
let Constructor = Error;
if (name && name in global && typeof global[name] === "function") {
Constructor = global[name];
}
let error = new Constructor(message);
error.stack = stack;
return {
value: error
};
}
if (type === "ErrorResponse") {
let [data3, status, statusText] = rest;
return {
value: new ErrorResponseImpl(status, statusText, data3)
};
}
if (type === "SingleFetchRedirect") {
return {
value: {
[SingleFetchRedirectSymbol]: rest[0]
}
};
}
}, (type, value) => {
if (type === "SingleFetchFallback") {
return {
value: void 0
};
}
if (type === "SingleFetchClassInstance") {
return {
value
};
}
}]
});
}
function unwrapSingleFetchResults(results, routeId) {
let redirect4 = results[SingleFetchRedirectSymbol];
if (redirect4) {
return unwrapSingleFetchResult(redirect4, routeId);
}
return results[routeId] !== void 0 ? unwrapSingleFetchResult(results[routeId], routeId) : null;
}
function unwrapSingleFetchResult(result, routeId) {
if ("error" in result) {
throw result.error;
} else if ("redirect" in result) {
let headers = {};
if (result.revalidate) {
headers["X-Remix-Revalidate"] = "yes";
}
if (result.reload) {
headers["X-Remix-Reload-Document"] = "yes";
}
if (result.replace) {
headers["X-Remix-Replace"] = "yes";
}
throw redirect(result.redirect, {
status: result.status,
headers
});
} else if ("data" in result) {
return result.data;
} else {
throw new Error(`No response found for routeId "${routeId}"`);
}
}
function createDeferred() {
let resolve;
let reject;
let promise = new Promise((res, rej) => {
resolve = async (val) => {
res(val);
try {
await promise;
} catch (e) {
}
};
reject = async (error) => {
rej(error);
try {
await promise;
} catch (e) {
}
};
});
return {
promise,
//@ts-ignore
resolve,
//@ts-ignore
reject
};
}
// node_modules/@remix-run/react/dist/esm/fog-of-war.js
init_router();
var React7 = __toESM(require_react());
// node_modules/@remix-run/react/dist/esm/routes.js
var React6 = __toESM(require_react());
init_router();
init_dist2();
// node_modules/@remix-run/react/dist/esm/errorBoundaries.js
var React4 = __toESM(require_react());
init_dist2();
var RemixErrorBoundary = class extends React4.Component {
constructor(props) {
super(props);
this.state = {
error: props.error || null,
location: props.location
};
}
static getDerivedStateFromError(error) {
return {
error
};
}
static getDerivedStateFromProps(props, state) {
if (state.location !== props.location) {
return {
error: props.error || null,
location: props.location
};
}
return {
error: props.error || state.error,
location: state.location
};
}
render() {
if (this.state.error) {
return /* @__PURE__ */ React4.createElement(RemixRootDefaultErrorBoundary, {
error: this.state.error,
isOutsideRemixApp: true
});
} else {
return this.props.children;
}
}
};
function RemixRootDefaultErrorBoundary({
error,
isOutsideRemixApp
}) {
console.error(error);
let heyDeveloper = /* @__PURE__ */ React4.createElement("script", {
dangerouslySetInnerHTML: {
__html: `
// console.log(
"\u{1F4BF} Hey developer \u{1F44B}. You can provide a way better UX than this when your app throws errors. Check out https://remix.run/guides/errors for more information."
);
`
}
});
if (isRouteErrorResponse(error)) {
return /* @__PURE__ */ React4.createElement(BoundaryShell, {
title: "Unhandled Thrown Response!"
}, /* @__PURE__ */ React4.createElement("h1", {
style: {
fontSize: "24px"
}
}, error.status, " ", error.statusText), heyDeveloper);
}
let errorInstance;
if (error instanceof Error) {
errorInstance = error;
} else {
let errorString = error == null ? "Unknown Error" : typeof error === "object" && "toString" in error ? error.toString() : JSON.stringify(error);
errorInstance = new Error(errorString);
}
return /* @__PURE__ */ React4.createElement(BoundaryShell, {
title: "Application Error!",
isOutsideRemixApp
}, /* @__PURE__ */ React4.createElement("h1", {
style: {
fontSize: "24px"
}
}, "Application Error"), /* @__PURE__ */ React4.createElement("pre", {
style: {
padding: "2rem",
background: "hsla(10, 50%, 50%, 0.1)",
color: "red",
overflow: "auto"
}
}, errorInstance.stack), heyDeveloper);
}
function BoundaryShell({
title,
renderScripts,
isOutsideRemixApp,
children
}) {
var _routeModules$root;
let {
routeModules
} = useRemixContext();
if ((_routeModules$root = routeModules.root) !== null && _routeModules$root !== void 0 && _routeModules$root.Layout && !isOutsideRemixApp) {
return children;
}
return /* @__PURE__ */ React4.createElement("html", {
lang: "en"
}, /* @__PURE__ */ React4.createElement("head", null, /* @__PURE__ */ React4.createElement("meta", {
charSet: "utf-8"
}), /* @__PURE__ */ React4.createElement("meta", {
name: "viewport",
content: "width=device-width,initial-scale=1,viewport-fit=cover"
}), /* @__PURE__ */ React4.createElement("title", null, title)), /* @__PURE__ */ React4.createElement("body", null, /* @__PURE__ */ React4.createElement("main", {
style: {
fontFamily: "system-ui, sans-serif",
padding: "2rem"
}
}, children, renderScripts ? /* @__PURE__ */ React4.createElement(Scripts, null) : null)));
}
// node_modules/@remix-run/react/dist/esm/fallback.js
var React5 = __toESM(require_react());
function RemixRootDefaultHydrateFallback() {
return /* @__PURE__ */ React5.createElement(BoundaryShell, {
title: "Loading...",
renderScripts: true
}, /* @__PURE__ */ React5.createElement("script", {
dangerouslySetInnerHTML: {
__html: `
// console.log(
"\u{1F4BF} Hey developer \u{1F44B}. You can provide a way better UX than this " +
"when your app is loading JS modules and/or running \`clientLoader\` " +
"functions. Check out https://remix.run/route/hydrate-fallback " +
"for more information."
);
`
}
}));
}
// node_modules/@remix-run/react/dist/esm/routes.js
function groupRoutesByParentId(manifest) {
let routes = {};
Object.values(manifest).forEach((route) => {
let parentId = route.parentId || "";
if (!routes[parentId]) {
routes[parentId] = [];
}
routes[parentId].push(route);
});
return routes;
}
function getRouteComponents(route, routeModule, isSpaMode) {
let Component3 = getRouteModuleComponent(routeModule);
let HydrateFallback = routeModule.HydrateFallback && (!isSpaMode || route.id === "root") ? routeModule.HydrateFallback : route.id === "root" ? RemixRootDefaultHydrateFallback : void 0;
let ErrorBoundary = routeModule.ErrorBoundary ? routeModule.ErrorBoundary : route.id === "root" ? () => /* @__PURE__ */ React6.createElement(RemixRootDefaultErrorBoundary, {
error: useRouteError()
}) : void 0;
if (route.id === "root" && routeModule.Layout) {
return {
...Component3 ? {
element: /* @__PURE__ */ React6.createElement(routeModule.Layout, null, /* @__PURE__ */ React6.createElement(Component3, null))
} : {
Component: Component3
},
...ErrorBoundary ? {
errorElement: /* @__PURE__ */ React6.createElement(routeModule.Layout, null, /* @__PURE__ */ React6.createElement(ErrorBoundary, null))
} : {
ErrorBoundary
},
...HydrateFallback ? {
hydrateFallbackElement: /* @__PURE__ */ React6.createElement(routeModule.Layout, null, /* @__PURE__ */ React6.createElement(HydrateFallback, null))
} : {
HydrateFallback
}
};
}
return {
Component: Component3,
ErrorBoundary,
HydrateFallback
};
}
function createServerRoutes(manifest, routeModules, future, isSpaMode, parentId = "", routesByParentId = groupRoutesByParentId(manifest), spaModeLazyPromise = Promise.resolve({
Component: () => null
})) {
return (routesByParentId[parentId] || []).map((route) => {
let routeModule = routeModules[route.id];
invariant2(routeModule, "No `routeModule` available to create server routes");
let dataRoute = {
...getRouteComponents(route, routeModule, isSpaMode),
caseSensitive: route.caseSensitive,
id: route.id,
index: route.index,
path: route.path,
handle: routeModule.handle,
// For SPA Mode, all routes are lazy except root. However we tell the
// router root is also lazy here too since we don't need a full
// implementation - we just need a `lazy` prop to tell the RR rendering
// where to stop which is always at the root route in SPA mode
lazy: isSpaMode ? () => spaModeLazyPromise : void 0,
// For partial hydration rendering, we need to indicate when the route
// has a loader/clientLoader, but it won't ever be called during the static
// render, so just give it a no-op function so we can render down to the
// proper fallback
loader: route.hasLoader || route.hasClientLoader ? () => null : void 0
// We don't need action/shouldRevalidate on these routes since they're
// for a static render
};
let children = createServerRoutes(manifest, routeModules, future, isSpaMode, route.id, routesByParentId, spaModeLazyPromise);
if (children.length > 0)
dataRoute.children = children;
return dataRoute;
});
}
function createClientRoutesWithHMRRevalidationOptOut(needsRevalidation, manifest, routeModulesCache, initialState, future, isSpaMode) {
return createClientRoutes(manifest, routeModulesCache, initialState, future, isSpaMode, "", groupRoutesByParentId(manifest), needsRevalidation);
}
function preventInvalidServerHandlerCall(type, route, isSpaMode) {
if (isSpaMode) {
let fn2 = type === "action" ? "serverAction()" : "serverLoader()";
let msg2 = `You cannot call ${fn2} in SPA Mode (routeId: "${route.id}")`;
console.error(msg2);
throw new ErrorResponseImpl(400, "Bad Request", new Error(msg2), true);
}
let fn = type === "action" ? "serverAction()" : "serverLoader()";
let msg = `You are trying to call ${fn} on a route that does not have a server ${type} (routeId: "${route.id}")`;
if (type === "loader" && !route.hasLoader || type === "action" && !route.hasAction) {
console.error(msg);
throw new ErrorResponseImpl(400, "Bad Request", new Error(msg), true);
}
}
function noActionDefinedError(type, routeId) {
let article = type === "clientAction" ? "a" : "an";
let msg = `Route "${routeId}" does not have ${article} ${type}, but you are trying to submit to it. To fix this, please add ${article} \`${type}\` function to the route`;
console.error(msg);
throw new ErrorResponseImpl(405, "Method Not Allowed", new Error(msg), true);
}
function createClientRoutes(manifest, routeModulesCache, initialState, future, isSpaMode, parentId = "", routesByParentId = groupRoutesByParentId(manifest), needsRevalidation) {
return (routesByParentId[parentId] || []).map((route) => {
let routeModule = routeModulesCache[route.id];
async function fetchServerHandlerAndMaybeUnwrap(request, unwrap, singleFetch) {
if (typeof singleFetch === "function") {
let result2 = await singleFetch();
return result2;
}
let result = await fetchServerHandler(request, route);
return unwrap ? unwrapServerResponse(result) : result;
}
function fetchServerLoader(request, unwrap, singleFetch) {
if (!route.hasLoader)
return Promise.resolve(null);
return fetchServerHandlerAndMaybeUnwrap(request, unwrap, singleFetch);
}
function fetchServerAction(request, unwrap, singleFetch) {
if (!route.hasAction) {
throw noActionDefinedError("action", route.id);
}
return fetchServerHandlerAndMaybeUnwrap(request, unwrap, singleFetch);
}
async function prefetchStylesAndCallHandler(handler) {
let cachedModule = routeModulesCache[route.id];
let linkPrefetchPromise = cachedModule ? prefetchStyleLinks(route, cachedModule) : Promise.resolve();
try {
return handler();
} finally {
await linkPrefetchPromise;
}
}
let dataRoute = {
id: route.id,
index: route.index,
path: route.path
};
if (routeModule) {
var _initialState$loaderD, _initialState$errors, _routeModule$clientLo;
Object.assign(dataRoute, {
...dataRoute,
...getRouteComponents(route, routeModule, isSpaMode),
handle: routeModule.handle,
shouldRevalidate: getShouldRevalidateFunction(future, routeModule, route.id, needsRevalidation)
});
let initialData = initialState === null || initialState === void 0 ? void 0 : (_initialState$loaderD = initialState.loaderData) === null || _initialState$loaderD === void 0 ? void 0 : _initialState$loaderD[route.id];
let initialError = initialState === null || initialState === void 0 ? void 0 : (_initialState$errors = initialState.errors) === null || _initialState$errors === void 0 ? void 0 : _initialState$errors[route.id];
let isHydrationRequest = needsRevalidation == null && (((_routeModule$clientLo = routeModule.clientLoader) === null || _routeModule$clientLo === void 0 ? void 0 : _routeModule$clientLo.hydrate) === true || !route.hasLoader);
dataRoute.loader = async ({
request,
params
}, singleFetch) => {
try {
let result = await prefetchStylesAndCallHandler(async () => {
invariant2(routeModule, "No `routeModule` available for critical-route loader");
if (!routeModule.clientLoader) {
if (isSpaMode)
return null;
return fetchServerLoader(request, false, singleFetch);
}
return routeModule.clientLoader({
request,
params,
async serverLoader() {
preventInvalidServerHandlerCall("loader", route, isSpaMode);
if (isHydrationRequest) {
if (initialData !== void 0) {
return initialData;
}
if (initialError !== void 0) {
throw initialError;
}
return null;
}
return fetchServerLoader(request, true, singleFetch);
}
});
});
return result;
} finally {
isHydrationRequest = false;
}
};
dataRoute.loader.hydrate = shouldHydrateRouteLoader(route, routeModule, isSpaMode);
dataRoute.action = ({
request,
params
}, singleFetch) => {
return prefetchStylesAndCallHandler(async () => {
invariant2(routeModule, "No `routeModule` available for critical-route action");
if (!routeModule.clientAction) {
if (isSpaMode) {
throw noActionDefinedError("clientAction", route.id);
}
return fetchServerAction(request, false, singleFetch);
}
return routeModule.clientAction({
request,
params,
async serverAction() {
preventInvalidServerHandlerCall("action", route, isSpaMode);
return fetchServerAction(request, true, singleFetch);
}
});
});
};
} else {
if (!route.hasClientLoader) {
dataRoute.loader = ({
request
}, singleFetch) => prefetchStylesAndCallHandler(() => {
if (isSpaMode)
return Promise.resolve(null);
return fetchServerLoader(request, false, singleFetch);
});
}
if (!route.hasClientAction) {
dataRoute.action = ({
request
}, singleFetch) => prefetchStylesAndCallHandler(() => {
if (isSpaMode) {
throw noActionDefinedError("clientAction", route.id);
}
return fetchServerAction(request, false, singleFetch);
});
}
dataRoute.lazy = async () => {
let mod = await loadRouteModuleWithBlockingLinks(route, routeModulesCache);
let lazyRoute = {
...mod
};
if (mod.clientLoader) {
let clientLoader = mod.clientLoader;
lazyRoute.loader = (args, singleFetch) => clientLoader({
...args,
async serverLoader() {
preventInvalidServerHandlerCall("loader", route, isSpaMode);
return fetchServerLoader(args.request, true, singleFetch);
}
});
}
if (mod.clientAction) {
let clientAction = mod.clientAction;
lazyRoute.action = (args, singleFetch) => clientAction({
...args,
async serverAction() {
preventInvalidServerHandlerCall("action", route, isSpaMode);
return fetchServerAction(args.request, true, singleFetch);
}
});
}
return {
...lazyRoute.loader ? {
loader: lazyRoute.loader
} : {},
...lazyRoute.action ? {
action: lazyRoute.action
} : {},
hasErrorBoundary: lazyRoute.hasErrorBoundary,
shouldRevalidate: getShouldRevalidateFunction(future, lazyRoute, route.id, needsRevalidation),
handle: lazyRoute.handle,
// No need to wrap these in layout since the root route is never
// loaded via route.lazy()
Component: lazyRoute.Component,
ErrorBoundary: lazyRoute.ErrorBoundary
};
};
}
let children = createClientRoutes(manifest, routeModulesCache, initialState, future, isSpaMode, route.id, routesByParentId, needsRevalidation);
if (children.length > 0)
dataRoute.children = children;
return dataRoute;
});
}
function getShouldRevalidateFunction(future, route, routeId, needsRevalidation) {
if (needsRevalidation) {
return wrapShouldRevalidateForHdr(routeId, route.shouldRevalidate, needsRevalidation);
}
if (future.v3_singleFetch && route.shouldRevalidate) {
let fn = route.shouldRevalidate;
return (opts) => fn({
...opts,
defaultShouldRevalidate: true
});
}
return route.shouldRevalidate;
}
function wrapShouldRevalidateForHdr(routeId, routeShouldRevalidate, needsRevalidation) {
let handledRevalidation = false;
return (arg) => {
if (!handledRevalidation) {
handledRevalidation = true;
return needsRevalidation.has(routeId);
}
return routeShouldRevalidate ? routeShouldRevalidate(arg) : arg.defaultShouldRevalidate;
};
}
async function loadRouteModuleWithBlockingLinks(route, routeModules) {
let routeModule = await loadRouteModule(route, routeModules);
await prefetchStyleLinks(route, routeModule);
return {
Component: getRouteModuleComponent(routeModule),
ErrorBoundary: routeModule.ErrorBoundary,
clientAction: routeModule.clientAction,
clientLoader: routeModule.clientLoader,
handle: routeModule.handle,
links: routeModule.links,
meta: routeModule.meta,
shouldRevalidate: routeModule.shouldRevalidate
};
}
async function fetchServerHandler(request, route) {
let result = await fetchData(request, route.id);
if (result instanceof Error) {
throw result;
}
if (isRedirectResponse2(result)) {
throw getRedirect(result);
}
if (isCatchResponse(result)) {
throw result;
}
if (isDeferredResponse(result) && result.body) {
return await parseDeferredReadableStream(result.body);
}
return result;
}
function unwrapServerResponse(result) {
if (isDeferredData2(result)) {
return result.data;
}
if (isResponse2(result)) {
let contentType = result.headers.get("Content-Type");
if (contentType && /\bapplication\/json\b/.test(contentType)) {
return result.json();
} else {
return result.text();
}
}
return result;
}
function getRedirect(response) {
let status = parseInt(response.headers.get("X-Remix-Status"), 10) || 302;
let url = response.headers.get("X-Remix-Redirect");
let headers = {};
let revalidate = response.headers.get("X-Remix-Revalidate");
if (revalidate) {
headers["X-Remix-Revalidate"] = revalidate;
}
let reloadDocument = response.headers.get("X-Remix-Reload-Document");
if (reloadDocument) {
headers["X-Remix-Reload-Document"] = reloadDocument;
}
let replace3 = response.headers.get("X-Remix-Replace");
if (replace3) {
headers["X-Remix-Replace"] = replace3;
}
return redirect(url, {
status,
headers
});
}
function getRouteModuleComponent(routeModule) {
if (routeModule.default == null)
return void 0;
let isEmptyObject = typeof routeModule.default === "object" && Object.keys(routeModule.default).length === 0;
if (!isEmptyObject) {
return routeModule.default;
}
}
function shouldHydrateRouteLoader(route, routeModule, isSpaMode) {
return isSpaMode && route.id !== "root" || routeModule.clientLoader != null && (routeModule.clientLoader.hydrate === true || route.hasLoader !== true);
}
// node_modules/@remix-run/react/dist/esm/fog-of-war.js
var nextPaths = /* @__PURE__ */ new Set();
var discoveredPathsMaxSize = 1e3;
var discoveredPaths = /* @__PURE__ */ new Set();
var URL_LIMIT = 7680;
function isFogOfWarEnabled(future, isSpaMode) {
return future.v3_lazyRouteDiscovery === true && !isSpaMode;
}
function getPartialManifest(manifest, router2) {
let routeIds = new Set(router2.state.matches.map((m) => m.route.id));
let segments = router2.state.location.pathname.split("/").filter(Boolean);
let paths = ["/"];
segments.pop();
while (segments.length > 0) {
paths.push(`/${segments.join("/")}`);
segments.pop();
}
paths.forEach((path) => {
let matches = matchRoutes(router2.routes, path, router2.basename);
if (matches) {
matches.forEach((m) => routeIds.add(m.route.id));
}
});
let initialRoutes = [...routeIds].reduce((acc, id) => Object.assign(acc, {
[id]: manifest.routes[id]
}), {});
return {
...manifest,
routes: initialRoutes
};
}
function getPatchRoutesOnNavigationFunction(manifest, routeModules, future, isSpaMode, basename) {
if (!isFogOfWarEnabled(future, isSpaMode)) {
return void 0;
}
return async ({
path,
patch,
signal,
fetcherKey
}) => {
if (discoveredPaths.has(path)) {
return;
}
await fetchAndApplyManifestPatches([path], fetcherKey ? window.location.href : path, manifest, routeModules, future, isSpaMode, basename, patch, signal);
};
}
function useFogOFWarDiscovery(router2, manifest, routeModules, future, isSpaMode) {
React7.useEffect(() => {
var _navigator$connection;
if (!isFogOfWarEnabled(future, isSpaMode) || ((_navigator$connection = navigator.connection) === null || _navigator$connection === void 0 ? void 0 : _navigator$connection.saveData) === true) {
return;
}
function registerElement(el) {
let path = el.tagName === "FORM" ? el.getAttribute("action") : el.getAttribute("href");
if (!path) {
return;
}
let url = new URL(path, window.location.origin);
if (!discoveredPaths.has(url.pathname)) {
nextPaths.add(url.pathname);
}
}
async function fetchPatches() {
let lazyPaths = Array.from(nextPaths.keys()).filter((path) => {
if (discoveredPaths.has(path)) {
nextPaths.delete(path);
return false;
}
return true;
});
if (lazyPaths.length === 0) {
return;
}
try {
await fetchAndApplyManifestPatches(lazyPaths, null, manifest, routeModules, future, isSpaMode, router2.basename, router2.patchRoutes);
} catch (e) {
console.error("Failed to fetch manifest patches", e);
}
}
document.body.querySelectorAll("a[data-discover], form[data-discover]").forEach((el) => registerElement(el));
fetchPatches();
let debouncedFetchPatches = debounce(fetchPatches, 100);
function isElement(node) {
return node.nodeType === Node.ELEMENT_NODE;
}
let observer = new MutationObserver((records) => {
let elements = /* @__PURE__ */ new Set();
records.forEach((r) => {
[r.target, ...r.addedNodes].forEach((node) => {
if (!isElement(node))
return;
if (node.tagName === "A" && node.getAttribute("data-discover")) {
elements.add(node);
} else if (node.tagName === "FORM" && node.getAttribute("data-discover")) {
elements.add(node);
}
if (node.tagName !== "A") {
node.querySelectorAll("a[data-discover], form[data-discover]").forEach((el) => elements.add(el));
}
});
});
elements.forEach((el) => registerElement(el));
debouncedFetchPatches();
});
observer.observe(document.documentElement, {
subtree: true,
childList: true,
attributes: true,
attributeFilter: ["data-discover", "href", "action"]
});
return () => observer.disconnect();
}, [future, isSpaMode, manifest, routeModules, router2]);
}
var MANIFEST_VERSION_STORAGE_KEY = "remix-manifest-version";
async function fetchAndApplyManifestPatches(paths, errorReloadPath, manifest, routeModules, future, isSpaMode, basename, patchRoutes, signal) {
let manifestPath = `${basename ?? "/"}/__manifest`.replace(/\/+/g, "/");
let url = new URL(manifestPath, window.location.origin);
paths.sort().forEach((path) => url.searchParams.append("p", path));
url.searchParams.set("version", manifest.version);
if (url.toString().length > URL_LIMIT) {
nextPaths.clear();
return;
}
let serverPatches;
try {
let res = await fetch(url, {
signal
});
if (!res.ok) {
throw new Error(`${res.status} ${res.statusText}`);
} else if (res.status === 204 && res.headers.has("X-Remix-Reload-Document")) {
if (!errorReloadPath) {
console.warn("Detected a manifest version mismatch during eager route discovery. The next navigation/fetch to an undiscovered route will result in a new document navigation to sync up with the latest manifest.");
return;
}
if (sessionStorage.getItem(MANIFEST_VERSION_STORAGE_KEY) === manifest.version) {
console.error("Unable to discover routes due to manifest version mismatch.");
return;
}
sessionStorage.setItem(MANIFEST_VERSION_STORAGE_KEY, manifest.version);
window.location.href = errorReloadPath;
throw new Error("Detected manifest version mismatch, reloading...");
} else if (res.status >= 400) {
throw new Error(await res.text());
}
sessionStorage.removeItem(MANIFEST_VERSION_STORAGE_KEY);
serverPatches = await res.json();
} catch (e) {
if (signal !== null && signal !== void 0 && signal.aborted)
return;
throw e;
}
let knownRoutes = new Set(Object.keys(manifest.routes));
let patches = Object.values(serverPatches).reduce((acc, route) => !knownRoutes.has(route.id) ? Object.assign(acc, {
[route.id]: route
}) : acc, {});
Object.assign(manifest.routes, patches);
paths.forEach((p) => addToFifoQueue(p, discoveredPaths));
let parentIds = /* @__PURE__ */ new Set();
Object.values(patches).forEach((patch) => {
if (!patch.parentId || !patches[patch.parentId]) {
parentIds.add(patch.parentId);
}
});
parentIds.forEach((parentId) => patchRoutes(parentId || null, createClientRoutes(patches, routeModules, null, future, isSpaMode, parentId)));
}
function addToFifoQueue(path, queue) {
if (queue.size >= discoveredPathsMaxSize) {
let first = queue.values().next().value;
if (typeof first === "string")
queue.delete(first);
}
queue.add(path);
}
function debounce(callback, wait) {
let timeoutId;
return (...args) => {
window.clearTimeout(timeoutId);
timeoutId = window.setTimeout(() => callback(...args), wait);
};
}
// node_modules/@remix-run/react/dist/esm/components.js
function useDataRouterContext3() {
let context = React8.useContext(DataRouterContext);
invariant2(context, "You must render this element inside a <DataRouterContext.Provider> element");
return context;
}
function useDataRouterStateContext() {
let context = React8.useContext(DataRouterStateContext);
invariant2(context, "You must render this element inside a <DataRouterStateContext.Provider> element");
return context;
}
var RemixContext = /* @__PURE__ */ React8.createContext(void 0);
RemixContext.displayName = "Remix";
function useRemixContext() {
let context = React8.useContext(RemixContext);
invariant2(context, "You must render this element inside a <Remix> element");
return context;
}
function usePrefetchBehavior(prefetch, theirElementProps) {
let [maybePrefetch, setMaybePrefetch] = React8.useState(false);
let [shouldPrefetch, setShouldPrefetch] = React8.useState(false);
let {
onFocus,
onBlur,
onMouseEnter,
onMouseLeave,
onTouchStart
} = theirElementProps;
let ref = React8.useRef(null);
React8.useEffect(() => {
if (prefetch === "render") {
setShouldPrefetch(true);
}
if (prefetch === "viewport") {
let callback = (entries) => {
entries.forEach((entry) => {
setShouldPrefetch(entry.isIntersecting);
});
};
let observer = new IntersectionObserver(callback, {
threshold: 0.5
});
if (ref.current)
observer.observe(ref.current);
return () => {
observer.disconnect();
};
}
}, [prefetch]);
let setIntent = () => {
if (prefetch === "intent") {
setMaybePrefetch(true);
}
};
let cancelIntent = () => {
if (prefetch === "intent") {
setMaybePrefetch(false);
setShouldPrefetch(false);
}
};
React8.useEffect(() => {
if (maybePrefetch) {
let id = setTimeout(() => {
setShouldPrefetch(true);
}, 100);
return () => {
clearTimeout(id);
};
}
}, [maybePrefetch]);
return [shouldPrefetch, ref, {
onFocus: composeEventHandlers(onFocus, setIntent),
onBlur: composeEventHandlers(onBlur, cancelIntent),
onMouseEnter: composeEventHandlers(onMouseEnter, setIntent),
onMouseLeave: composeEventHandlers(onMouseLeave, cancelIntent),
onTouchStart: composeEventHandlers(onTouchStart, setIntent)
}];
}
var ABSOLUTE_URL_REGEX3 = /^(?:[a-z][a-z0-9+.-]*:|\/\/)/i;
function getDiscoverAttr(discover, isAbsolute, reloadDocument) {
return discover === "render" && !isAbsolute && !reloadDocument ? "true" : void 0;
}
var NavLink2 = /* @__PURE__ */ React8.forwardRef(({
to,
prefetch = "none",
discover = "render",
...props
}, forwardedRef) => {
let isAbsolute = typeof to === "string" && ABSOLUTE_URL_REGEX3.test(to);
let href = useHref(to);
let [shouldPrefetch, ref, prefetchHandlers] = usePrefetchBehavior(prefetch, props);
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, /* @__PURE__ */ React8.createElement(NavLink, _extends4({}, props, prefetchHandlers, {
ref: mergeRefs(forwardedRef, ref),
to,
"data-discover": getDiscoverAttr(discover, isAbsolute, props.reloadDocument)
})), shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React8.createElement(PrefetchPageLinks, {
page: href
}) : null);
});
NavLink2.displayName = "NavLink";
var Link2 = /* @__PURE__ */ React8.forwardRef(({
to,
prefetch = "none",
discover = "render",
...props
}, forwardedRef) => {
let isAbsolute = typeof to === "string" && ABSOLUTE_URL_REGEX3.test(to);
let href = useHref(to);
let [shouldPrefetch, ref, prefetchHandlers] = usePrefetchBehavior(prefetch, props);
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, /* @__PURE__ */ React8.createElement(Link, _extends4({}, props, prefetchHandlers, {
ref: mergeRefs(forwardedRef, ref),
to,
"data-discover": getDiscoverAttr(discover, isAbsolute, props.reloadDocument)
})), shouldPrefetch && !isAbsolute ? /* @__PURE__ */ React8.createElement(PrefetchPageLinks, {
page: href
}) : null);
});
Link2.displayName = "Link";
var Form2 = /* @__PURE__ */ React8.forwardRef(({
discover = "render",
...props
}, forwardedRef) => {
let isAbsolute = typeof props.action === "string" && ABSOLUTE_URL_REGEX3.test(props.action);
return /* @__PURE__ */ React8.createElement(Form, _extends4({}, props, {
ref: forwardedRef,
"data-discover": getDiscoverAttr(discover, isAbsolute, props.reloadDocument)
}));
});
Form2.displayName = "Form";
function composeEventHandlers(theirHandler, ourHandler) {
return (event) => {
theirHandler && theirHandler(event);
if (!event.defaultPrevented) {
ourHandler(event);
}
};
}
function getActiveMatches(matches, errors, isSpaMode) {
if (isSpaMode && !isHydrated) {
return [matches[0]];
}
if (errors) {
let errorIdx = matches.findIndex((m) => errors[m.route.id] !== void 0);
return matches.slice(0, errorIdx + 1);
}
return matches;
}
function Links() {
let {
isSpaMode,
manifest,
routeModules,
criticalCss
} = useRemixContext();
let {
errors,
matches: routerMatches
} = useDataRouterStateContext();
let matches = getActiveMatches(routerMatches, errors, isSpaMode);
let keyedLinks = React8.useMemo(() => getKeyedLinksForMatches(matches, routeModules, manifest), [matches, routeModules, manifest]);
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, criticalCss ? /* @__PURE__ */ React8.createElement("style", {
dangerouslySetInnerHTML: {
__html: criticalCss
}
}) : null, keyedLinks.map(({
key,
link
}) => isPageLinkDescriptor(link) ? /* @__PURE__ */ React8.createElement(PrefetchPageLinks, _extends4({
key
}, link)) : /* @__PURE__ */ React8.createElement("link", _extends4({
key
}, link))));
}
function PrefetchPageLinks({
page,
...dataLinkProps
}) {
let {
router: router2
} = useDataRouterContext3();
let matches = React8.useMemo(() => matchRoutes(router2.routes, page, router2.basename), [router2.routes, page, router2.basename]);
if (!matches) {
console.warn(`Tried to prefetch ${page} but no routes matched.`);
return null;
}
return /* @__PURE__ */ React8.createElement(PrefetchPageLinksImpl, _extends4({
page,
matches
}, dataLinkProps));
}
function useKeyedPrefetchLinks(matches) {
let {
manifest,
routeModules
} = useRemixContext();
let [keyedPrefetchLinks, setKeyedPrefetchLinks] = React8.useState([]);
React8.useEffect(() => {
let interrupted = false;
void getKeyedPrefetchLinks(matches, manifest, routeModules).then((links) => {
if (!interrupted) {
setKeyedPrefetchLinks(links);
}
});
return () => {
interrupted = true;
};
}, [matches, manifest, routeModules]);
return keyedPrefetchLinks;
}
function PrefetchPageLinksImpl({
page,
matches: nextMatches,
...linkProps
}) {
let location = useLocation();
let {
future,
manifest,
routeModules
} = useRemixContext();
let {
loaderData,
matches
} = useDataRouterStateContext();
let newMatchesForData = React8.useMemo(() => getNewMatchesForLinks(page, nextMatches, matches, manifest, location, future, "data"), [page, nextMatches, matches, manifest, location, future]);
let dataHrefs = React8.useMemo(() => {
if (!future.v3_singleFetch) {
return getDataLinkHrefs(page, newMatchesForData, manifest);
}
if (page === location.pathname + location.search + location.hash) {
return [];
}
let routesParams = /* @__PURE__ */ new Set();
let foundOptOutRoute = false;
nextMatches.forEach((m) => {
var _routeModules$m$route;
if (!manifest.routes[m.route.id].hasLoader) {
return;
}
if (!newMatchesForData.some((m2) => m2.route.id === m.route.id) && m.route.id in loaderData && (_routeModules$m$route = routeModules[m.route.id]) !== null && _routeModules$m$route !== void 0 && _routeModules$m$route.shouldRevalidate) {
foundOptOutRoute = true;
} else if (manifest.routes[m.route.id].hasClientLoader) {
foundOptOutRoute = true;
} else {
routesParams.add(m.route.id);
}
});
if (routesParams.size === 0) {
return [];
}
let url = singleFetchUrl(page);
if (foundOptOutRoute && routesParams.size > 0) {
url.searchParams.set("_routes", nextMatches.filter((m) => routesParams.has(m.route.id)).map((m) => m.route.id).join(","));
}
return [url.pathname + url.search];
}, [future.v3_singleFetch, loaderData, location, manifest, newMatchesForData, nextMatches, page, routeModules]);
let newMatchesForAssets = React8.useMemo(() => getNewMatchesForLinks(page, nextMatches, matches, manifest, location, future, "assets"), [page, nextMatches, matches, manifest, location, future]);
let moduleHrefs = React8.useMemo(() => getModuleLinkHrefs(newMatchesForAssets, manifest), [newMatchesForAssets, manifest]);
let keyedPrefetchLinks = useKeyedPrefetchLinks(newMatchesForAssets);
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, dataHrefs.map((href) => /* @__PURE__ */ React8.createElement("link", _extends4({
key: href,
rel: "prefetch",
as: "fetch",
href
}, linkProps))), moduleHrefs.map((href) => /* @__PURE__ */ React8.createElement("link", _extends4({
key: href,
rel: "modulepreload",
href
}, linkProps))), keyedPrefetchLinks.map(({
key,
link
}) => (
// these don't spread `linkProps` because they are full link descriptors
// already with their own props
/* @__PURE__ */ React8.createElement("link", _extends4({
key
}, link))
)));
}
function Meta() {
let {
isSpaMode,
routeModules
} = useRemixContext();
let {
errors,
matches: routerMatches,
loaderData
} = useDataRouterStateContext();
let location = useLocation();
let _matches = getActiveMatches(routerMatches, errors, isSpaMode);
let error = null;
if (errors) {
error = errors[_matches[_matches.length - 1].route.id];
}
let meta = [];
let leafMeta = null;
let matches = [];
for (let i = 0; i < _matches.length; i++) {
let _match = _matches[i];
let routeId = _match.route.id;
let data3 = loaderData[routeId];
let params = _match.params;
let routeModule = routeModules[routeId];
let routeMeta = [];
let match = {
id: routeId,
data: data3,
meta: [],
params: _match.params,
pathname: _match.pathname,
handle: _match.route.handle,
error
};
matches[i] = match;
if (routeModule !== null && routeModule !== void 0 && routeModule.meta) {
routeMeta = typeof routeModule.meta === "function" ? routeModule.meta({
data: data3,
params,
location,
matches,
error
}) : Array.isArray(routeModule.meta) ? [...routeModule.meta] : routeModule.meta;
} else if (leafMeta) {
routeMeta = [...leafMeta];
}
routeMeta = routeMeta || [];
if (!Array.isArray(routeMeta)) {
throw new Error("The route at " + _match.route.path + " returns an invalid value. All route meta functions must return an array of meta objects.\n\nTo reference the meta function API, see https://remix.run/route/meta");
}
match.meta = routeMeta;
matches[i] = match;
meta = [...routeMeta];
leafMeta = meta;
}
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, meta.flat().map((metaProps) => {
if (!metaProps) {
return null;
}
if ("tagName" in metaProps) {
let {
tagName,
...rest
} = metaProps;
if (!isValidMetaTag(tagName)) {
console.warn(`A meta object uses an invalid tagName: ${tagName}. Expected either 'link' or 'meta'`);
return null;
}
let Comp = tagName;
return /* @__PURE__ */ React8.createElement(Comp, _extends4({
key: JSON.stringify(rest)
}, rest));
}
if ("title" in metaProps) {
return /* @__PURE__ */ React8.createElement("title", {
key: "title"
}, String(metaProps.title));
}
if ("charset" in metaProps) {
metaProps.charSet ??= metaProps.charset;
delete metaProps.charset;
}
if ("charSet" in metaProps && metaProps.charSet != null) {
return typeof metaProps.charSet === "string" ? /* @__PURE__ */ React8.createElement("meta", {
key: "charSet",
charSet: metaProps.charSet
}) : null;
}
if ("script:ld+json" in metaProps) {
try {
let json4 = JSON.stringify(metaProps["script:ld+json"]);
return /* @__PURE__ */ React8.createElement("script", {
key: `script:ld+json:${json4}`,
type: "application/ld+json",
dangerouslySetInnerHTML: {
__html: json4
}
});
} catch (err) {
return null;
}
}
return /* @__PURE__ */ React8.createElement("meta", _extends4({
key: JSON.stringify(metaProps)
}, metaProps));
}));
}
function isValidMetaTag(tagName) {
return typeof tagName === "string" && /^(meta|link)$/.test(tagName);
}
function Await2(props) {
return /* @__PURE__ */ React8.createElement(Await, props);
}
var isHydrated = false;
function Scripts(props) {
let {
manifest,
serverHandoffString,
abortDelay,
serializeError,
isSpaMode,
future,
renderMeta
} = useRemixContext();
let {
router: router2,
static: isStatic,
staticContext
} = useDataRouterContext3();
let {
matches: routerMatches
} = useDataRouterStateContext();
let enableFogOfWar = isFogOfWarEnabled(future, isSpaMode);
if (renderMeta) {
renderMeta.didRenderScripts = true;
}
let matches = getActiveMatches(routerMatches, null, isSpaMode);
React8.useEffect(() => {
isHydrated = true;
}, []);
let serializePreResolvedErrorImp = (key, error) => {
let toSerialize;
if (serializeError && error instanceof Error) {
toSerialize = serializeError(error);
} else {
toSerialize = error;
}
return `${JSON.stringify(key)}:__remixContext.p(!1, ${escapeHtml(JSON.stringify(toSerialize))})`;
};
let serializePreresolvedDataImp = (routeId, key, data3) => {
let serializedData;
try {
serializedData = JSON.stringify(data3);
} catch (error) {
return serializePreResolvedErrorImp(key, error);
}
return `${JSON.stringify(key)}:__remixContext.p(${escapeHtml(serializedData)})`;
};
let serializeErrorImp = (routeId, key, error) => {
let toSerialize;
if (serializeError && error instanceof Error) {
toSerialize = serializeError(error);
} else {
toSerialize = error;
}
return `__remixContext.r(${JSON.stringify(routeId)}, ${JSON.stringify(key)}, !1, ${escapeHtml(JSON.stringify(toSerialize))})`;
};
let serializeDataImp = (routeId, key, data3) => {
let serializedData;
try {
serializedData = JSON.stringify(data3);
} catch (error) {
return serializeErrorImp(routeId, key, error);
}
return `__remixContext.r(${JSON.stringify(routeId)}, ${JSON.stringify(key)}, ${escapeHtml(serializedData)})`;
};
let deferredScripts = [];
let initialScripts = React8.useMemo(() => {
var _manifest$hmr;
let streamScript = future.v3_singleFetch ? (
// prettier-ignore
"window.__remixContext.stream = new ReadableStream({start(controller){window.__remixContext.streamController = controller;}}).pipeThrough(new TextEncoderStream());"
) : "";
let contextScript = staticContext ? `window.__remixContext = ${serverHandoffString};${streamScript}` : " ";
let activeDeferreds = future.v3_singleFetch ? void 0 : staticContext === null || staticContext === void 0 ? void 0 : staticContext.activeDeferreds;
contextScript += !activeDeferreds ? "" : ["__remixContext.p = function(v,e,p,x) {", " if (typeof e !== 'undefined') {", true ? " x=new Error(e.message);\n x.stack=e.stack;" : ' x=new Error("Unexpected Server Error");\n x.stack=undefined;', " p=Promise.reject(x);", " } else {", " p=Promise.resolve(v);", " }", " return p;", "};", "__remixContext.n = function(i,k) {", " __remixContext.t = __remixContext.t || {};", " __remixContext.t[i] = __remixContext.t[i] || {};", " let p = new Promise((r, e) => {__remixContext.t[i][k] = {r:(v)=>{r(v);},e:(v)=>{e(v);}};});", typeof abortDelay === "number" ? `setTimeout(() => {if(typeof p._error !== "undefined" || typeof p._data !== "undefined"){return;} __remixContext.t[i][k].e(new Error("Server timeout."))}, ${abortDelay});` : "", " return p;", "};", "__remixContext.r = function(i,k,v,e,p,x) {", " p = __remixContext.t[i][k];", " if (typeof e !== 'undefined') {", true ? " x=new Error(e.message);\n x.stack=e.stack;" : ' x=new Error("Unexpected Server Error");\n x.stack=undefined;', " p.e(x);", " } else {", " p.r(v);", " }", "};"].join("\n") + Object.entries(activeDeferreds).map(([routeId, deferredData]) => {
let pendingKeys = new Set(deferredData.pendingKeys);
let promiseKeyValues = deferredData.deferredKeys.map((key) => {
if (pendingKeys.has(key)) {
deferredScripts.push(/* @__PURE__ */ React8.createElement(DeferredHydrationScript, {
key: `${routeId} | ${key}`,
deferredData,
routeId,
dataKey: key,
scriptProps: props,
serializeData: serializeDataImp,
serializeError: serializeErrorImp
}));
return `${JSON.stringify(key)}:__remixContext.n(${JSON.stringify(routeId)}, ${JSON.stringify(key)})`;
} else {
let trackedPromise = deferredData.data[key];
if (typeof trackedPromise._error !== "undefined") {
return serializePreResolvedErrorImp(key, trackedPromise._error);
} else {
return serializePreresolvedDataImp(routeId, key, trackedPromise._data);
}
}
}).join(",\n");
return `Object.assign(__remixContext.state.loaderData[${JSON.stringify(routeId)}], {${promiseKeyValues}});`;
}).join("\n") + (deferredScripts.length > 0 ? `__remixContext.a=${deferredScripts.length};` : "");
let routeModulesScript = !isStatic ? " " : `${(_manifest$hmr = manifest.hmr) !== null && _manifest$hmr !== void 0 && _manifest$hmr.runtime ? `import ${JSON.stringify(manifest.hmr.runtime)};` : ""}${enableFogOfWar ? "" : `import ${JSON.stringify(manifest.url)}`};
${matches.map((match, index) => `import * as route${index} from ${JSON.stringify(manifest.routes[match.route.id].module)};`).join("\n")}
${enableFogOfWar ? (
// Inline a minimal manifest with the SSR matches
`window.__remixManifest = ${JSON.stringify(getPartialManifest(manifest, router2), null, 2)};`
) : ""}
window.__remixRouteModules = {${matches.map((match, index) => `${JSON.stringify(match.route.id)}:route${index}`).join(",")}};
import(${JSON.stringify(manifest.entry.module)});`;
return /* @__PURE__ */ React8.createElement(React8.Fragment, null, /* @__PURE__ */ React8.createElement("script", _extends4({}, props, {
suppressHydrationWarning: true,
dangerouslySetInnerHTML: createHtml(contextScript),
type: void 0
})), /* @__PURE__ */ React8.createElement("script", _extends4({}, props, {
suppressHydrationWarning: true,
dangerouslySetInnerHTML: createHtml(routeModulesScript),
type: "module",
async: true
})));
}, []);
if (!isStatic && typeof __remixContext === "object" && __remixContext.a) {
for (let i = 0; i < __remixContext.a; i++) {
deferredScripts.push(/* @__PURE__ */ React8.createElement(DeferredHydrationScript, {
key: i,
scriptProps: props,
serializeData: serializeDataImp,
serializeError: serializeErrorImp
}));
}
}
let routePreloads = matches.map((match) => {
let route = manifest.routes[match.route.id];
return (route.imports || []).concat([route.module]);
}).flat(1);
let preloads = isHydrated ? [] : manifest.entry.imports.concat(routePreloads);
return isHydrated ? null : /* @__PURE__ */ React8.createElement(React8.Fragment, null, !enableFogOfWar ? /* @__PURE__ */ React8.createElement("link", {
rel: "modulepreload",
href: manifest.url,
crossOrigin: props.crossOrigin
}) : null, /* @__PURE__ */ React8.createElement("link", {
rel: "modulepreload",
href: manifest.entry.module,
crossOrigin: props.crossOrigin
}), dedupe(preloads).map((path) => /* @__PURE__ */ React8.createElement("link", {
key: path,
rel: "modulepreload",
href: path,
crossOrigin: props.crossOrigin
})), initialScripts, deferredScripts);
}
function DeferredHydrationScript({
dataKey,
deferredData,
routeId,
scriptProps,
serializeData,
serializeError
}) {
if (typeof document === "undefined" && deferredData && dataKey && routeId) {
invariant2(deferredData.pendingKeys.includes(dataKey), `Deferred data for route ${routeId} with key ${dataKey} was not pending but tried to render a script for it.`);
}
return /* @__PURE__ */ React8.createElement(React8.Suspense, {
fallback: (
// This makes absolutely no sense. The server renders null as a fallback,
// but when hydrating, we need to render a script tag to avoid a hydration issue.
// To reproduce a hydration mismatch, just render null as a fallback.
typeof document === "undefined" && deferredData && dataKey && routeId ? null : /* @__PURE__ */ React8.createElement("script", _extends4({}, scriptProps, {
async: true,
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: " "
}
}))
)
}, typeof document === "undefined" && deferredData && dataKey && routeId ? /* @__PURE__ */ React8.createElement(Await2, {
resolve: deferredData.data[dataKey],
errorElement: /* @__PURE__ */ React8.createElement(ErrorDeferredHydrationScript, {
dataKey,
routeId,
scriptProps,
serializeError
}),
children: (data3) => {
return /* @__PURE__ */ React8.createElement("script", _extends4({}, scriptProps, {
async: true,
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: serializeData(routeId, dataKey, data3)
}
}));
}
}) : /* @__PURE__ */ React8.createElement("script", _extends4({}, scriptProps, {
async: true,
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: " "
}
})));
}
function ErrorDeferredHydrationScript({
dataKey,
routeId,
scriptProps,
serializeError
}) {
let error = useAsyncError();
return /* @__PURE__ */ React8.createElement("script", _extends4({}, scriptProps, {
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: serializeError(routeId, dataKey, error)
}
}));
}
function dedupe(array) {
return [...new Set(array)];
}
function useMatches2() {
return useMatches();
}
function useLoaderData2() {
return useLoaderData();
}
function useRouteLoaderData2(routeId) {
return useRouteLoaderData(routeId);
}
function useActionData2() {
return useActionData();
}
function useFetcher2(opts = {}) {
return useFetcher(opts);
}
var LiveReload = (
// Dead Code Elimination magic for production builds.
// This way devs don't have to worry about doing the NODE_ENV check themselves.
false ? () => null : function LiveReload2({
origin,
port,
timeoutMs = 1e3,
nonce = void 0
}) {
let isViteClient = import.meta && import.meta.env !== void 0;
if (isViteClient) {
console.warn(["`<LiveReload />` is obsolete when using Vite and can conflict with Vite's built-in HMR runtime.", "", "Remove `<LiveReload />` from your code and instead only use `<Scripts />`.", "Then refresh the page to remove lingering scripts from `<LiveReload />`."].join("\n"));
return null;
}
origin ??= "http://localhost:3001/";
let js = String.raw;
return /* @__PURE__ */ React8.createElement("script", {
nonce,
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: js`
function remixLiveReloadConnect(config) {
let LIVE_RELOAD_ORIGIN = ${JSON.stringify(origin)};
let protocol =
LIVE_RELOAD_ORIGIN ? new URL(LIVE_RELOAD_ORIGIN).protocol.replace(/^http/, "ws") :
location.protocol === "https:" ? "wss:" : "ws:"; // remove in v2?
let hostname = LIVE_RELOAD_ORIGIN ? new URL(LIVE_RELOAD_ORIGIN).hostname : location.hostname;
let url = new URL(protocol + "//" + hostname + "/socket");
url.port =
${port} ||
(LIVE_RELOAD_ORIGIN ? new URL(LIVE_RELOAD_ORIGIN).port : 8002);
let ws = new WebSocket(url.href);
ws.onmessage = async (message) => {
let event = JSON.parse(message.data);
if (event.type === "LOG") {
// console.log(event.message);
}
if (event.type === "RELOAD") {
// console.log("💿 Reloading window ...");
window.location.reload();
}
if (event.type === "HMR") {
if (!window.__hmr__ || !window.__hmr__.contexts) {
// console.log("💿 [HMR] No HMR context, reloading window ...");
window.location.reload();
return;
}
if (!event.updates || !event.updates.length) return;
let updateAccepted = false;
let needsRevalidation = new Set();
for (let update of event.updates) {
// console.log("[HMR] " + update.reason + " [" + update.id +"]")
if (update.revalidate) {
needsRevalidation.add(update.routeId);
// console.log("[HMR] Revalidating [" + update.routeId + "]");
}
let imported = await import(update.url + '?t=' + event.assetsManifest.hmr.timestamp);
if (window.__hmr__.contexts[update.id]) {
let accepted = window.__hmr__.contexts[update.id].emit(
imported
);
if (accepted) {
// console.log("[HMR] Update accepted by", update.id);
updateAccepted = true;
}
}
}
if (event.assetsManifest && window.__hmr__.contexts["remix:manifest"]) {
let accepted = window.__hmr__.contexts["remix:manifest"].emit(
{ needsRevalidation, assetsManifest: event.assetsManifest }
);
if (accepted) {
// console.log("[HMR] Update accepted by", "remix:manifest");
updateAccepted = true;
}
}
if (!updateAccepted) {
// console.log("[HMR] Update rejected, reloading...");
window.location.reload();
}
}
};
ws.onopen = () => {
if (config && typeof config.onOpen === "function") {
config.onOpen();
}
};
ws.onclose = (event) => {
if (event.code === 1006) {
// console.log("Remix dev asset server web socket closed. Reconnecting...");
setTimeout(
() =>
remixLiveReloadConnect({
onOpen: () => window.location.reload(),
}),
${String(timeoutMs)}
);
}
};
ws.onerror = (error) => {
// console.log("Remix dev asset server web socket error:");
console.error(error);
};
}
remixLiveReloadConnect();
`
}
});
}
);
function mergeRefs(...refs) {
return (value) => {
refs.forEach((ref) => {
if (typeof ref === "function") {
ref(value);
} else if (ref != null) {
ref.current = value;
}
});
};
}
// node_modules/@remix-run/react/dist/esm/errors.js
init_router();
function deserializeErrors2(errors) {
if (!errors)
return null;
let entries = Object.entries(errors);
let serialized = {};
for (let [key, val] of entries) {
if (val && val.__type === "RouteErrorResponse") {
serialized[key] = new ErrorResponseImpl(val.status, val.statusText, val.data, val.internal === true);
} else if (val && val.__type === "Error") {
if (val.__subType) {
let ErrorConstructor = window[val.__subType];
if (typeof ErrorConstructor === "function") {
try {
let error = new ErrorConstructor(val.message);
error.stack = val.stack;
serialized[key] = error;
} catch (e) {
}
}
}
if (serialized[key] == null) {
let error = new Error(val.message);
error.stack = val.stack;
serialized[key] = error;
}
} else {
serialized[key] = val;
}
}
return serialized;
}
// node_modules/@remix-run/react/dist/esm/browser.js
if (!window.$RefreshReg$ || !window.$RefreshSig$ || !window.$RefreshRuntime$) {
console.warn("remix:hmr: React Fast Refresh only works when the Remix compiler is running in development mode.");
} else {
prevRefreshReg = window.$RefreshReg$;
prevRefreshSig = window.$RefreshSig$;
window.$RefreshReg$ = (type, id) => {
window.$RefreshRuntime$.register(type, '"node_modules\\\\@remix-run\\\\react\\\\dist\\\\esm\\\\browser.js"' + id);
};
window.$RefreshSig$ = window.$RefreshRuntime$.createSignatureFunctionForTransform;
}
var prevRefreshReg;
var prevRefreshSig;
var _s = $RefreshSig$();
if (import.meta) {
import.meta.hot = createHotContext(
//@ts-expect-error
"node_modules\\@remix-run\\react\\dist\\esm\\browser.js"
);
}
var stateDecodingPromise;
var router;
var routerInitialized = false;
var hmrAbortController;
var hmrRouterReadyResolve;
var hmrRouterReadyPromise = new Promise((resolve) => {
hmrRouterReadyResolve = resolve;
}).catch(() => {
return void 0;
});
if (import.meta && // @ts-expect-error
import.meta.hot && // This HMR code is only valid in the classic compiler
// @ts-expect-error
import.meta.hot.__remixCompiler) {
import.meta.hot["accept"]("remix:manifest", async ({
assetsManifest,
needsRevalidation
}) => {
let router2 = await hmrRouterReadyPromise;
if (!router2) {
console.error("Failed to accept HMR update because the router was not ready.");
return;
}
let routeIds = [...new Set(router2.state.matches.map((m) => m.route.id).concat(Object.keys(window.__remixRouteModules)))];
if (hmrAbortController) {
hmrAbortController.abort();
}
hmrAbortController = new AbortController();
let signal = hmrAbortController.signal;
let newRouteModules = Object.assign({}, window.__remixRouteModules, Object.fromEntries((await Promise.all(routeIds.map(async (id) => {
var _assetsManifest$hmr, _window$__remixRouteM, _window$__remixRouteM2, _window$__remixRouteM3;
if (!assetsManifest.routes[id]) {
return null;
}
let imported = await import(assetsManifest.routes[id].module + `?t=${(_assetsManifest$hmr = assetsManifest.hmr) === null || _assetsManifest$hmr === void 0 ? void 0 : _assetsManifest$hmr.timestamp}`);
return [id, {
...imported,
// react-refresh takes care of updating these in-place,
// if we don't preserve existing values we'll loose state.
default: imported.default ? ((_window$__remixRouteM = window.__remixRouteModules[id]) === null || _window$__remixRouteM === void 0 ? void 0 : _window$__remixRouteM.default) ?? imported.default : imported.default,
ErrorBoundary: imported.ErrorBoundary ? ((_window$__remixRouteM2 = window.__remixRouteModules[id]) === null || _window$__remixRouteM2 === void 0 ? void 0 : _window$__remixRouteM2.ErrorBoundary) ?? imported.ErrorBoundary : imported.ErrorBoundary,
HydrateFallback: imported.HydrateFallback ? ((_window$__remixRouteM3 = window.__remixRouteModules[id]) === null || _window$__remixRouteM3 === void 0 ? void 0 : _window$__remixRouteM3.HydrateFallback) ?? imported.HydrateFallback : imported.HydrateFallback
}];
}))).filter(Boolean)));
Object.assign(window.__remixRouteModules, newRouteModules);
let routes = createClientRoutesWithHMRRevalidationOptOut(needsRevalidation, assetsManifest.routes, window.__remixRouteModules, window.__remixContext.state, window.__remixContext.future, window.__remixContext.isSpaMode);
router2._internalSetRoutes(routes);
let unsub = router2.subscribe((state) => {
if (state.revalidation === "idle") {
unsub();
if (signal.aborted)
return;
setTimeout(() => {
Object.assign(window.__remixManifest, assetsManifest);
window.$RefreshRuntime$.performReactRefresh();
}, 1);
}
});
window.__remixRevalidation = (window.__remixRevalidation || 0) + 1;
router2.revalidate();
});
}
function RemixBrowser(_props) {
_s();
if (!router) {
if (window.__remixContext.future.v3_singleFetch) {
if (!stateDecodingPromise) {
let stream = window.__remixContext.stream;
invariant2(stream, "No stream found for single fetch decoding");
window.__remixContext.stream = void 0;
stateDecodingPromise = decodeViaTurboStream(stream, window).then((value) => {
window.__remixContext.state = value.value;
stateDecodingPromise.value = true;
}).catch((e) => {
stateDecodingPromise.error = e;
});
}
if (stateDecodingPromise.error) {
throw stateDecodingPromise.error;
}
if (!stateDecodingPromise.value) {
throw stateDecodingPromise;
}
}
let routes = createClientRoutes(window.__remixManifest.routes, window.__remixRouteModules, window.__remixContext.state, window.__remixContext.future, window.__remixContext.isSpaMode);
let hydrationData = void 0;
if (!window.__remixContext.isSpaMode) {
hydrationData = {
...window.__remixContext.state,
loaderData: {
...window.__remixContext.state.loaderData
}
};
let initialMatches = matchRoutes(routes, window.location, window.__remixContext.basename);
if (initialMatches) {
for (let match of initialMatches) {
let routeId = match.route.id;
let route = window.__remixRouteModules[routeId];
let manifestRoute = window.__remixManifest.routes[routeId];
if (route && shouldHydrateRouteLoader(manifestRoute, route, window.__remixContext.isSpaMode) && (route.HydrateFallback || !manifestRoute.hasLoader)) {
hydrationData.loaderData[routeId] = void 0;
} else if (manifestRoute && !manifestRoute.hasLoader) {
hydrationData.loaderData[routeId] = null;
}
}
}
if (hydrationData && hydrationData.errors) {
hydrationData.errors = deserializeErrors2(hydrationData.errors);
}
}
router = createRouter({
routes,
history: createBrowserHistory(),
basename: window.__remixContext.basename,
future: {
v7_normalizeFormMethod: true,
v7_fetcherPersist: window.__remixContext.future.v3_fetcherPersist,
v7_partialHydration: true,
v7_prependBasename: true,
v7_relativeSplatPath: window.__remixContext.future.v3_relativeSplatPath,
// Single fetch enables this underlying behavior
v7_skipActionErrorRevalidation: window.__remixContext.future.v3_singleFetch === true
},
hydrationData,
mapRouteProperties,
dataStrategy: window.__remixContext.future.v3_singleFetch && !window.__remixContext.isSpaMode ? getSingleFetchDataStrategy(window.__remixManifest, window.__remixRouteModules, () => router) : void 0,
patchRoutesOnNavigation: getPatchRoutesOnNavigationFunction(window.__remixManifest, window.__remixRouteModules, window.__remixContext.future, window.__remixContext.isSpaMode, window.__remixContext.basename)
});
if (router.state.initialized) {
routerInitialized = true;
router.initialize();
}
router.createRoutesForHMR = createClientRoutesWithHMRRevalidationOptOut;
window.__remixRouter = router;
if (hmrRouterReadyResolve) {
hmrRouterReadyResolve(router);
}
}
let [criticalCss, setCriticalCss] = React9.useState(true ? window.__remixContext.criticalCss : void 0);
if (true) {
window.__remixClearCriticalCss = () => setCriticalCss(void 0);
}
let [location, setLocation] = React9.useState(router.state.location);
React9.useLayoutEffect(() => {
if (!routerInitialized) {
routerInitialized = true;
router.initialize();
}
}, []);
React9.useLayoutEffect(() => {
return router.subscribe((newState) => {
if (newState.location !== location) {
setLocation(newState.location);
}
});
}, [location]);
useFogOFWarDiscovery(router, window.__remixManifest, window.__remixRouteModules, window.__remixContext.future, window.__remixContext.isSpaMode);
return (
// This fragment is important to ensure we match the <RemixServer> JSX
// structure so that useId values hydrate correctly
/* @__PURE__ */ React9.createElement(React9.Fragment, null, /* @__PURE__ */ React9.createElement(RemixContext.Provider, {
value: {
manifest: window.__remixManifest,
routeModules: window.__remixRouteModules,
future: window.__remixContext.future,
criticalCss,
isSpaMode: window.__remixContext.isSpaMode
}
}, /* @__PURE__ */ React9.createElement(RemixErrorBoundary, {
location
}, /* @__PURE__ */ React9.createElement(RouterProvider2, {
router,
fallbackElement: null,
future: {
v7_startTransition: true
}
}))), window.__remixContext.future.v3_singleFetch ? /* @__PURE__ */ React9.createElement(React9.Fragment, null) : null)
);
}
_s(RemixBrowser, "n34maDGonqcvsMaCLj5c3jhn2kM=", false, function() {
return [useFogOFWarDiscovery];
});
_c = RemixBrowser;
var _c;
$RefreshReg$(_c, "RemixBrowser");
window.$RefreshReg$ = prevRefreshReg;
window.$RefreshSig$ = prevRefreshSig;
// node_modules/@remix-run/react/dist/esm/scroll-restoration.js
var React10 = __toESM(require_react());
init_dist2();
var STORAGE_KEY = "positions";
function ScrollRestoration2({
getKey,
...props
}) {
let {
isSpaMode
} = useRemixContext();
let location = useLocation();
let matches = useMatches();
useScrollRestoration({
getKey,
storageKey: STORAGE_KEY
});
let key = React10.useMemo(
() => {
if (!getKey)
return null;
let userKey = getKey(location, matches);
return userKey !== location.key ? userKey : null;
},
// Nah, we only need this the first time for the SSR render
// eslint-disable-next-line react-hooks/exhaustive-deps
[]
);
if (isSpaMode) {
return null;
}
let restoreScroll = ((STORAGE_KEY2, restoreKey) => {
if (!window.history.state || !window.history.state.key) {
let key2 = Math.random().toString(32).slice(2);
window.history.replaceState({
key: key2
}, "");
}
try {
let positions = JSON.parse(sessionStorage.getItem(STORAGE_KEY2) || "{}");
let storedY = positions[restoreKey || window.history.state.key];
if (typeof storedY === "number") {
window.scrollTo(0, storedY);
}
} catch (error) {
console.error(error);
sessionStorage.removeItem(STORAGE_KEY2);
}
}).toString();
return /* @__PURE__ */ React10.createElement("script", _extends4({}, props, {
suppressHydrationWarning: true,
dangerouslySetInnerHTML: {
__html: `(${restoreScroll})(${JSON.stringify(STORAGE_KEY)}, ${JSON.stringify(key)})`
}
}));
}
// node_modules/@remix-run/react/dist/esm/server.js
var React11 = __toESM(require_react());
var import_server = __toESM(require_server());
function RemixServer({
context,
url,
abortDelay,
nonce
}) {
if (typeof url === "string") {
url = new URL(url);
}
let {
manifest,
routeModules,
criticalCss,
serverHandoffString
} = context;
let routes = createServerRoutes(manifest.routes, routeModules, context.future, context.isSpaMode);
context.staticHandlerContext.loaderData = {
...context.staticHandlerContext.loaderData
};
for (let match of context.staticHandlerContext.matches) {
let routeId = match.route.id;
let route = routeModules[routeId];
let manifestRoute = context.manifest.routes[routeId];
if (route && shouldHydrateRouteLoader(manifestRoute, route, context.isSpaMode) && (route.HydrateFallback || !manifestRoute.hasLoader)) {
context.staticHandlerContext.loaderData[routeId] = void 0;
}
}
let router2 = (0, import_server.createStaticRouter)(routes, context.staticHandlerContext, {
future: {
v7_partialHydration: true,
v7_relativeSplatPath: context.future.v3_relativeSplatPath
}
});
return /* @__PURE__ */ React11.createElement(React11.Fragment, null, /* @__PURE__ */ React11.createElement(RemixContext.Provider, {
value: {
manifest,
routeModules,
criticalCss,
serverHandoffString,
future: context.future,
isSpaMode: context.isSpaMode,
serializeError: context.serializeError,
abortDelay,
renderMeta: context.renderMeta
}
}, /* @__PURE__ */ React11.createElement(RemixErrorBoundary, {
location: router2.state.location
}, /* @__PURE__ */ React11.createElement(import_server.StaticRouterProvider, {
router: router2,
context: context.staticHandlerContext,
hydrate: false
}))), context.future.v3_singleFetch && context.serverHandoffStream ? /* @__PURE__ */ React11.createElement(React11.Suspense, null, /* @__PURE__ */ React11.createElement(StreamTransfer, {
context,
identifier: 0,
reader: context.serverHandoffStream.getReader(),
textDecoder: new TextDecoder(),
nonce
})) : null);
}
export {
Action,
createPath,
parsePath,
matchRoutes,
generatePath,
matchPath,
resolvePath,
isRouteErrorResponse,
useHref,
useInRouterContext,
useLocation,
useNavigationType,
useMatch,
useNavigate,
useOutletContext,
useOutlet,
useParams,
useResolvedPath,
useRoutes,
useNavigation,
useRevalidator,
useRouteError,
useAsyncValue,
useAsyncError,
useBlocker,
Navigate,
Outlet,
Route,
Routes,
createRoutesFromChildren,
renderMatches,
createSearchParams,
useLinkClickHandler,
useSearchParams,
useSubmit,
useFormAction,
useFetchers,
useBeforeUnload,
usePrompt,
useViewTransitionState,
json3 as json,
defer3 as defer,
redirect3 as redirect,
replace2 as replace,
redirectDocument2 as redirectDocument,
data2 as data,
RemixContext,
NavLink2 as NavLink,
Link2 as Link,
Form2 as Form,
Links,
PrefetchPageLinks,
Meta,
Await2 as Await,
Scripts,
useMatches2 as useMatches,
useLoaderData2 as useLoaderData,
useRouteLoaderData2 as useRouteLoaderData,
useActionData2 as useActionData,
useFetcher2 as useFetcher,
LiveReload,
RemixBrowser,
ScrollRestoration2 as ScrollRestoration,
RemixServer
};
/*! Bundled license information:
@remix-run/router/dist/router.js:
(**
* @remix-run/router v1.23.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
react-router/dist/index.js:
(**
* React Router v6.30.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
react-router-dom/dist/index.js:
(**
* React Router DOM v6.30.0
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/server-runtime/dist/esm/responses.js:
(**
* @remix-run/server-runtime v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/server-runtime/dist/esm/single-fetch.js:
(**
* @remix-run/server-runtime v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/server-runtime/dist/esm/index.js:
(**
* @remix-run/server-runtime v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/_virtual/_rollupPluginBabelHelpers.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/invariant.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/routeModules.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/links.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/markup.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/data.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/single-fetch.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/errorBoundaries.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/fallback.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/routes.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/fog-of-war.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/components.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/errors.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/browser.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/scroll-restoration.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/server.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
@remix-run/react/dist/esm/index.js:
(**
* @remix-run/react v2.16.2
*
* Copyright (c) Remix Software Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE.md file in the root directory of this source tree.
*
* @license MIT
*)
*/
//# sourceMappingURL=/build/_shared/chunk-RG2SZ2V3.js.map