2018-03-25 23:09:17 +08:00
|
|
|
import ScriptApi from './script_api.js';
|
|
|
|
import utils from './utils.js';
|
|
|
|
|
2018-08-01 16:12:54 +08:00
|
|
|
function ScriptContext(startNote, allNotes, workNote = null) {
|
2018-03-25 11:45:36 +08:00
|
|
|
const modules = {};
|
|
|
|
|
|
|
|
return {
|
|
|
|
modules: modules,
|
|
|
|
notes: utils.toObject(allNotes, note => [note.noteId, note]),
|
2018-08-01 16:12:54 +08:00
|
|
|
apis: utils.toObject(allNotes, note => [note.noteId, ScriptApi(startNote, note, workNote)]),
|
2018-03-25 11:45:36 +08:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2018-03-25 23:09:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
export default ScriptContext;
|