Initial boiler plate project
This commit is contained in:
47
node_modules/next/dist/build/webpack/loaders/next-flight-action-entry-loader.js
generated
vendored
Normal file
47
node_modules/next/dist/build/webpack/loaders/next-flight-action-entry-loader.js
generated
vendored
Normal file
@ -0,0 +1,47 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
Object.defineProperty(exports, "default", {
|
||||
enumerable: true,
|
||||
get: function() {
|
||||
return _default;
|
||||
}
|
||||
});
|
||||
const _utils = require("./utils");
|
||||
function nextFlightActionEntryLoader() {
|
||||
const { actions } = this.getOptions();
|
||||
const actionList = JSON.parse(actions);
|
||||
const individualActions = actionList.map(([path, names])=>{
|
||||
return names.map((name)=>{
|
||||
const id = (0, _utils.generateActionId)(path, name);
|
||||
return [
|
||||
id,
|
||||
path,
|
||||
name
|
||||
];
|
||||
});
|
||||
}).flat();
|
||||
return `
|
||||
const actions = {
|
||||
${individualActions.map(([id, path, name])=>{
|
||||
return `'${id}': () => import(/* webpackMode: "eager" */ ${JSON.stringify(path)}).then(mod => mod[${JSON.stringify(name)}]),`;
|
||||
}).join("\n")}
|
||||
}
|
||||
|
||||
async function endpoint(id, ...args) {
|
||||
const action = await actions[id]()
|
||||
return action.apply(null, args)
|
||||
}
|
||||
|
||||
// Using CJS to avoid this to be tree-shaken away due to unused exports.
|
||||
module.exports = {
|
||||
${individualActions.map(([id])=>{
|
||||
return ` '${id}': endpoint.bind(null, '${id}'),`;
|
||||
}).join("\n")}
|
||||
}
|
||||
`;
|
||||
}
|
||||
const _default = nextFlightActionEntryLoader;
|
||||
|
||||
//# sourceMappingURL=next-flight-action-entry-loader.js.map
|
||||
Reference in New Issue
Block a user