36 lines
1.0 KiB
JavaScript
Raw Normal View History

2018-03-25 21:29:35 -04:00
import ScriptContext from "./script_context.js";
import server from "./server.js";
2019-10-20 10:00:18 +02:00
import toastService from "./toast.js";
2018-08-10 13:30:20 +02:00
async function getAndExecuteBundle(noteId, originEntity = null) {
const bundle = await server.get('script/bundle/' + noteId);
2019-08-17 11:28:36 +02:00
return await executeBundle(bundle, originEntity);
}
2020-02-25 19:19:10 +01:00
async function executeBundle(bundle, originEntity, $container) {
const apiContext = await ScriptContext(bundle.noteId, bundle.allNoteIds, originEntity, $container);
try {
return await (function () {
return eval(`const apiContext = this; (async function() { ${bundle.script}\r\n})()`);
}.call(apiContext));
}
catch (e) {
2019-10-20 10:00:18 +02:00
toastService.showAndLogError(`Execution of ${bundle.noteId} failed with error: ${e.message}`);
}
}
async function executeStartupBundles() {
const scriptBundles = await server.get("script/startup");
for (const bundle of scriptBundles) {
await executeBundle(bundle);
}
}
export default {
executeBundle,
getAndExecuteBundle,
executeStartupBundles
}