Add files via upload

This commit is contained in:
Keb Helion 2020-02-14 01:21:06 -05:00 committed by GitHub
parent f25902b2e8
commit 5301a2ea9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 8 deletions

View file

@ -67,12 +67,19 @@
if(eventzget.action === "installScript"){
ScriptDiscoveryService.loadOneScript(eventzget.script);
sendRunningScriptList();
Script.setTimeout(function() {
sendRunningScriptList();
}, 2000);
}
if(eventzget.action === "uninstallScript"){
ScriptDiscoveryService.stopScript(eventzget.script, false);
sendRunningScriptList();
Script.setTimeout(function() {
sendRunningScriptList();
}, 2000);
}
if(eventzget.action === "requestRunningScriptData"){

View file

@ -79,6 +79,11 @@
});
function install(script, btnId){
//then change btn appearence
var btn = "<button class='processing' >Processing...</button>";
document.getElementById(btnId).innerHTML = btn;
//Action
var readyEvent = {
"action": "installScript",
@ -87,13 +92,15 @@
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
//then change btn appearence
//var btn = "<button class='uninstall' onclick='uninstall(" + script + ", " + btnId + ");'>Uninstall</button>";
//document.getElementById(btnId).innerHTML = btn;
}
function uninstall(script, btnId){
//then change btn appearence
var btn = "<button class='processing' >Processing...</button>";
document.getElementById(btnId).innerHTML = btn;
//Action
var readyEvent = {
"action": "uninstallScript",
@ -101,9 +108,7 @@
};
EventBridge.emitWebEvent(JSON.stringify(readyEvent));
//then change btn appearence
//var btn = "<button class='install' onclick='install(" + script + ", " + btnId + ");'>Install</button>";
//document.getElementById(btnId).innerHTML = btn;
}
@ -230,6 +235,17 @@
border: 2px solid #e34c22;
}
button.processing {
font-family: Arial, Helvetica, sans-serif;
background-color: #b59207;
font-size: 16px;
color: #ffffff;
font-weight: 600;
border-radius: 6px;
border: 2px solid #b34700;
transition-duration: 0.3s;
}
div.searchbox {
border-radius: 6px;
background: #ffffff;