summaryrefslogtreecommitdiff
path: root/plugin_loader/static
diff options
context:
space:
mode:
authortza <marios8543@gmail.com>2022-04-07 22:38:26 +0300
committertza <marios8543@gmail.com>2022-04-07 22:38:26 +0300
commitc65427e693daf3ee96cfd707e74efcb8d9d985f2 (patch)
treea61d643ea63517dbac2c2035c88802e631843b85 /plugin_loader/static
parent0f14f2707bf0c50d6fbbfda3da66394953ae4128 (diff)
downloaddecky-loader-c65427e693daf3ee96cfd707e74efcb8d9d985f2.tar.gz
decky-loader-c65427e693daf3ee96cfd707e74efcb8d9d985f2.zip
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
Diffstat (limited to 'plugin_loader/static')
-rw-r--r--plugin_loader/static/plugin_page.js30
1 files changed, 30 insertions, 0 deletions
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 = `
+ <div id="plugin_install_prompt_${request_id}" style="display: block; background: #304375; border-radius: 5px;">
+ <h3 style="padding-left: 1rem;">Install plugin</h3>
+ <ul style="padding-left: 10px; padding-right: 10px; padding-bottom: 20px; margin: 0;">
+ <li>${artifact}</li>
+ <li>${version}</li>
+ </ul>
+ <div style="text-align: center; padding-bottom: 10px;">
+ <button onclick="installPlugin('${request_id}')" style="display: inline-block; background-color: green;">Install</button>
+ <button onclick="document.getElementById('plugin_install_list').removeChild(document.getElementById('plugin_install_prompt_${request_id}'))"
+ style="display: inline-block; background-color: red;">Ignore</button>
+ </div>
+ </div>
+ `;
+ document.getElementById('plugin_install_list').innerHTML += text;
+}
+
(function () {
const PLUGIN_ICON = `
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-plugin" viewBox="0 0 16 16">
@@ -35,6 +63,8 @@ function resolveMethodCall(call_id, result) {
let pluginPage = pages.children[pages.children.length - 1];
pluginPage.innerHTML = createTitle("Plugins");
+ pluginPage.innerHTML += `<div id="plugin_install_list" style="position: fixed; height: 100%; z-index: 99; transform: translate(5%, 0);"></div>`
+
pluginPage.innerHTML += `<iframe id="plugin_iframe" style="border: none; width: 100%; height: 100%;" src="http://127.0.0.1:1337/plugins/iframe"></iframe>`;
}