mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
22 lines
766 B
JavaScript
22 lines
766 B
JavaScript
const utils = require('./utils');
|
|
const BackendScriptApi = require('./backend_script_api');
|
|
|
|
function ScriptContext(allNotes, apiParams = {}) {
|
|
this.modules = {};
|
|
this.notes = utils.toObject(allNotes, note => [note.noteId, note]);
|
|
this.apis = utils.toObject(allNotes, note => [note.noteId, new BackendScriptApi(note, apiParams)]);
|
|
this.require = moduleNoteIds => {
|
|
return moduleName => {
|
|
const candidates = allNotes.filter(note => moduleNoteIds.includes(note.noteId));
|
|
const note = candidates.find(c => c.title === moduleName);
|
|
|
|
if (!note) {
|
|
return require(moduleName);
|
|
}
|
|
|
|
return this.modules[note.noteId].exports;
|
|
}
|
|
};
|
|
}
|
|
|
|
module.exports = ScriptContext; |