Refactor routing in App component to enhance navigation and improve error handling by integrating dynamic routes and updating the NotFound route.
This commit is contained in:
29
node_modules/astro/dist/actions/runtime/virtual/get-action.js
generated
vendored
Normal file
29
node_modules/astro/dist/actions/runtime/virtual/get-action.js
generated
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
import { ActionNotFoundError } from "../../../core/errors/errors-data.js";
|
||||
import { AstroError } from "../../../core/errors/errors.js";
|
||||
async function getAction(path) {
|
||||
const pathKeys = path.replace(/^.*\/_actions\//, "").split(".").map((key) => decodeURIComponent(key));
|
||||
let { server: actionLookup } = await import("astro:internal-actions");
|
||||
if (actionLookup == null || !(typeof actionLookup === "object")) {
|
||||
throw new TypeError(
|
||||
`Expected \`server\` export in actions file to be an object. Received ${typeof actionLookup}.`
|
||||
);
|
||||
}
|
||||
for (const key of pathKeys) {
|
||||
if (!(key in actionLookup)) {
|
||||
throw new AstroError({
|
||||
...ActionNotFoundError,
|
||||
message: ActionNotFoundError.message(pathKeys.join("."))
|
||||
});
|
||||
}
|
||||
actionLookup = actionLookup[key];
|
||||
}
|
||||
if (typeof actionLookup !== "function") {
|
||||
throw new TypeError(
|
||||
`Expected handler for action ${pathKeys.join(".")} to be a function. Received ${typeof actionLookup}.`
|
||||
);
|
||||
}
|
||||
return actionLookup;
|
||||
}
|
||||
export {
|
||||
getAction
|
||||
};
|
Reference in New Issue
Block a user