trilium/src/public/app/services/bundle.js

80 lines
2 KiB
JavaScript
Raw Normal View History

2018-03-26 09:29:35 +08:00
import ScriptContext from "./script_context.js";
import server from "./server.js";
2019-10-20 16:00:18 +08:00
import toastService from "./toast.js";
2018-08-10 19:30:20 +08:00
async function getAndExecuteBundle(noteId, originEntity = null) {
const bundle = await server.get('script/bundle/' + noteId);
2019-08-17 17:28:36 +08:00
return await executeBundle(bundle, originEntity);
}
2020-02-26 02:19:10 +08: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 16:00:18 +08: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);
}
}
2020-03-17 06:25:52 +08:00
class WidgetsByParent {
constructor() {
this.byParent = {};
}
add(widget) {
if (!widget.parentWidget) {
console.log(`Custom widget does not have mandatory 'getParent()' method defined`);
return;
}
this.byParent[widget.parentWidget] = this.byParent[widget.parentWidget] || [];
this.byParent[widget.parentWidget].push(widget);
}
get(parentName) {
return this.byParent[parentName] || [];
}
}
2020-03-17 04:16:09 +08:00
async function getWidgetBundlesByParent() {
const scriptBundles = await server.get("script/widgets");
2020-03-17 06:25:52 +08:00
const widgetsByParent = new WidgetsByParent();
2020-03-17 04:16:09 +08:00
for (const bundle of scriptBundles) {
let widget;
try {
widget = await executeBundle(bundle);
}
catch (e) {
console.error("Widget initialization failed: ", e);
continue;
}
2020-03-17 06:25:52 +08:00
widgetsByParent.add(widget);
2020-03-17 04:16:09 +08:00
}
2020-03-17 06:25:52 +08:00
return widgetsByParent;
2020-03-17 04:16:09 +08:00
}
export default {
executeBundle,
getAndExecuteBundle,
2020-03-17 04:16:09 +08:00
executeStartupBundles,
getWidgetBundlesByParent
2020-06-14 20:30:57 +08:00
}