2018-02-26 20:47:34 -05:00
|
|
|
const utils = require('./utils');
|
2018-08-23 10:10:04 +02:00
|
|
|
const BackendScriptApi = require('./backend_script_api');
|
2018-01-27 17:18:19 -05:00
|
|
|
|
2018-08-10 13:30:20 +02:00
|
|
|
function ScriptContext(startNote, allNotes, originEntity = null) {
|
2018-03-06 23:04:35 -05:00
|
|
|
this.modules = {};
|
|
|
|
this.notes = utils.toObject(allNotes, note => [note.noteId, note]);
|
2018-08-23 10:10:04 +02:00
|
|
|
this.apis = utils.toObject(allNotes, note => [note.noteId, new BackendScriptApi(startNote, note, originEntity)]);
|
2018-03-10 11:53:51 -05:00
|
|
|
this.require = moduleNoteIds => {
|
|
|
|
return moduleName => {
|
|
|
|
const candidates = allNotes.filter(note => moduleNoteIds.includes(note.noteId));
|
|
|
|
const note = candidates.find(c => c.title === moduleName);
|
|
|
|
|
|
|
|
if (!note) {
|
|
|
|
throw new Error("Could not find module note " + moduleName);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this.modules[note.noteId].exports;
|
|
|
|
}
|
|
|
|
};
|
2018-03-06 23:04:35 -05:00
|
|
|
}
|
|
|
|
|
2018-01-27 17:18:19 -05:00
|
|
|
module.exports = ScriptContext;
|