- vm_api.py: pure FastAPI JSON API on :8098 with CORS - vm-api.service: systemd unit for API (replaces inline HTML vm_web.py for frontend) - vm_web.py: kept intact as fallback; Apache now proxies /api/ -> :8098 - frontend/: Vite + React + TanStack Query scaffold - Apache vhost updated: DocumentRoot -> frontend/dist, /api/ proxy, SPA fallback - All original HTML pages still functional via :8099 during transition
33 lines
2.1 KiB
JavaScript
33 lines
2.1 KiB
JavaScript
const require_runtime = require("./_virtual/_rolldown/runtime.cjs");
|
|
const require_nonRouteComponentContext = require("./nonRouteComponentContext.cjs");
|
|
const require_not_found = require("./not-found.cjs");
|
|
let react = require("react");
|
|
react = require_runtime.__toESM(react, 1);
|
|
let react_jsx_runtime = require("react/jsx-runtime");
|
|
//#region src/renderRouteNotFound.tsx
|
|
/**
|
|
* Renders a not found component for a route when no matching route is found.
|
|
*
|
|
* @param router - The router instance containing the route configuration
|
|
* @param route - The route that triggered the not found state
|
|
* @param data - Additional data to pass to the not found component
|
|
* @returns The rendered not found component or a default fallback component
|
|
*/
|
|
function renderRouteNotFound(router, route, data) {
|
|
if (!route.options.notFoundComponent) {
|
|
if (router.options.defaultNotFoundComponent) {
|
|
const notFoundElement = /* @__PURE__ */ (0, react_jsx_runtime.jsx)(router.options.defaultNotFoundComponent, { ...data });
|
|
return process.env.NODE_ENV !== "production" ? require_nonRouteComponentContext.wrapInNonRouteComponentContext(notFoundElement, "notFoundComponent") : notFoundElement;
|
|
}
|
|
if (process.env.NODE_ENV !== "production") {
|
|
if (!route.options.notFoundComponent) console.warn(`Warning: A notFoundError was encountered on the route with ID "${route.id}", but a notFoundComponent option was not configured, nor was a router level defaultNotFoundComponent configured. Consider configuring at least one of these to avoid TanStack Router's overly generic defaultNotFoundComponent (<p>Not Found</p>)`);
|
|
}
|
|
return /* @__PURE__ */ (0, react_jsx_runtime.jsx)(require_not_found.DefaultGlobalNotFound, {});
|
|
}
|
|
const notFoundElement = /* @__PURE__ */ (0, react_jsx_runtime.jsx)(route.options.notFoundComponent, { ...data });
|
|
return process.env.NODE_ENV !== "production" ? require_nonRouteComponentContext.wrapInNonRouteComponentContext(notFoundElement, "notFoundComponent") : notFoundElement;
|
|
}
|
|
//#endregion
|
|
exports.renderRouteNotFound = renderRouteNotFound;
|
|
|
|
//# sourceMappingURL=renderRouteNotFound.cjs.map
|