You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
|
2 months ago
|
"use strict";
|
||
|
|
Object.defineProperty(exports, "__esModule", {
|
||
|
|
value: true
|
||
|
|
});
|
||
|
|
Object.defineProperty(exports, "callServer", {
|
||
|
|
enumerable: true,
|
||
|
|
get: function() {
|
||
|
|
return callServer;
|
||
|
|
}
|
||
|
|
});
|
||
|
|
const _approuter = require("./components/app-router");
|
||
|
|
async function callServer(actionId, actionArgs) {
|
||
|
|
const actionDispatcher = (0, _approuter.getServerActionDispatcher)();
|
||
|
|
if (!actionDispatcher) {
|
||
|
|
throw new Error("Invariant: missing action dispatcher.");
|
||
|
|
}
|
||
|
|
return new Promise((resolve, reject)=>{
|
||
|
|
actionDispatcher({
|
||
|
|
actionId,
|
||
|
|
actionArgs,
|
||
|
|
resolve,
|
||
|
|
reject
|
||
|
|
});
|
||
|
|
});
|
||
|
|
}
|
||
|
|
|
||
|
|
if ((typeof exports.default === 'function' || (typeof exports.default === 'object' && exports.default !== null)) && typeof exports.default.__esModule === 'undefined') {
|
||
|
|
Object.defineProperty(exports.default, '__esModule', { value: true });
|
||
|
|
Object.assign(exports.default, exports);
|
||
|
|
module.exports = exports.default;
|
||
|
|
}
|
||
|
|
|
||
|
|
//# sourceMappingURL=app-call-server.js.map
|