From c65427e693daf3ee96cfd707e74efcb8d9d985f2 Mon Sep 17 00:00:00 2001 From: tza Date: Thu, 7 Apr 2022 22:38:26 +0300 Subject: initial browser/installer commit, injector get_tab and stateful utils - Integrated plugin downloader/installer. It accepts POST requests at /browser/install_plugin, containing an artifact (basically an author/repo string like you'd find on github), and a release version, then fetches the zip file from the repo releases and unzips it inside the plugin dir, after asking for user confirmation (pop-up message in the plugin menu). - Injector get_tab method. Basically get_tabs with the usual search for a specific tab. Decided to implement this because it was needed again and again, and we kept pasting the same list search one-liner. - Utilities now have access to the main PluginManager class --- plugin_loader/static/plugin_page.js | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) (limited to 'plugin_loader/static/plugin_page.js') diff --git a/plugin_loader/static/plugin_page.js b/plugin_loader/static/plugin_page.js index 0d595ac9..49d1aa89 100644 --- a/plugin_loader/static/plugin_page.js +++ b/plugin_loader/static/plugin_page.js @@ -16,6 +16,34 @@ function resolveMethodCall(call_id, result) { iframe.postMessage({'call_id': call_id, 'result': result}, "http://127.0.0.1:1337"); } +function installPlugin(request_id) { + let id = `${new Date().getTime()}`; + console.debug(JSON.stringify({ + "id": id, + "method": "confirm_plugin_install", + "args": {"request_id": request_id} + })); + document.getElementById('plugin_install_list').removeChild(document.getElementById(`plugin_install_prompt_${request_id}`)); +} + +function addPluginInstallPrompt(artifact, version, request_id) { + let text = ` +
+

Install plugin

+ +
+ + +
+
+ `; + document.getElementById('plugin_install_list').innerHTML += text; +} + (function () { const PLUGIN_ICON = ` @@ -35,6 +63,8 @@ function resolveMethodCall(call_id, result) { let pluginPage = pages.children[pages.children.length - 1]; pluginPage.innerHTML = createTitle("Plugins"); + pluginPage.innerHTML += `
` + pluginPage.innerHTML += ``; } -- cgit v1.2.3