import ScriptContext from "./script_context.js"; import server from "./server.js"; async function getAndExecuteBundle(noteId, workNote = null) { const bundle = await server.get('script/bundle/' + noteId); await executeBundle(bundle, workNote); } async function executeBundle(bundle, workNote) { const apiContext = ScriptContext(bundle.note, bundle.allNotes, workNote); return await (function () { return eval(`const apiContext = this; (async function() { ${bundle.script}\r\n})()`); }.call(apiContext)); } async function executeStartupBundles() { const scriptBundles = await server.get("script/startup"); for (const bundle of scriptBundles) { await executeBundle(bundle); } } async function executeRelationBundles(note, relationName) { const bundlesToRun = await server.get("script/relation/" + note.noteId + "/" + relationName); for (const bundle of bundlesToRun) { await executeBundle(bundle, note); } } export default { executeBundle, getAndExecuteBundle, executeStartupBundles, executeRelationBundles }