49 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-03-04 14:21:11 -05:00
function Api() {
2018-02-14 23:31:20 -05:00
const $pluginButtons = $("#plugin-buttons");
2018-02-03 10:37:57 -05:00
async function activateNote(notePath) {
await noteTree.activateNode(notePath);
}
function addButtonToToolbar(buttonId, button) {
$("#" + buttonId).remove();
button.attr('id', buttonId);
2018-02-14 23:31:20 -05:00
$pluginButtons.append(button);
2018-02-03 10:37:57 -05:00
}
2018-03-04 21:43:14 -05:00
function prepareParams(params) {
if (!params) {
return params;
}
return params.map(p => {
if (typeof p === "function") {
return "!@#Function: " + p.toString();
}
else {
return p;
}
});
}
async function runOnServer(script, params) {
if (typeof script === "function") {
script = script.toString();
}
const ret = await server.post('script/exec', { script: script, params: prepareParams(params) });
return ret.executionResult;
}
2018-02-03 10:37:57 -05:00
return {
2018-03-04 14:21:11 -05:00
__modules: {},
__notes: {},
2018-02-03 10:37:57 -05:00
addButtonToToolbar,
activateNote,
2018-03-04 21:43:14 -05:00
getInstanceName: noteTree.getInstanceName,
runOnServer
2018-02-03 10:37:57 -05:00
}
2018-03-04 14:21:11 -05:00
}