mirror of
https://github.com/zadam/trilium.git
synced 2024-11-18 05:35:56 +08:00
26 lines
No EOL
834 B
JavaScript
26 lines
No EOL
834 B
JavaScript
import ScriptApi from './script_api.js';
|
|
import utils from './utils.js';
|
|
|
|
function ScriptContext(startNote, allNotes) {
|
|
const modules = {};
|
|
|
|
return {
|
|
modules: modules,
|
|
notes: utils.toObject(allNotes, note => [note.noteId, note]),
|
|
apis: utils.toObject(allNotes, note => [note.noteId, ScriptApi(startNote, note)]),
|
|
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 modules[note.noteId].exports;
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
export default ScriptContext; |