Fixed action/store storing logic

This commit is contained in:
Fabio Manganiello 2020-06-19 21:34:44 +02:00
parent d7aadd52ec
commit 0350df85ae
2 changed files with 111 additions and 8 deletions

View File

@ -1,10 +1,8 @@
<template> <template>
<div class="page local-actions"> <div class="page local-actions">
<h2 v-if="host">Actions stored locally for {{ host }}</h2>
<h2 v-else>Actions stored locally</h2>
<div class="body"> <div class="body">
<div class="no-actions" v-if="!actions || !Object.keys(actions).length">No actions available on this device</div> <h2 v-if="Object.keys(actions).length && host">Actions stored for {{ host }}</h2>
<h2 v-else-if="Object.keys(actions).length">Actions</h2>
<form class="action" :class="{ selected: selectedAction === name }" v-for="(action, name) in actions" :key="name" @submit.prevent="runAction"> <form class="action" :class="{ selected: selectedAction === name }" v-for="(action, name) in actions" :key="name" @submit.prevent="runAction">
<div class="head" @click="toggleSelectedAction(name)"> <div class="head" @click="toggleSelectedAction(name)">
@ -43,16 +41,54 @@
</div> </div>
</div> </div>
</form> </form>
<h2 v-if="Object.keys(scripts).length && host">Scripts stored for {{ host }}</h2>
<h2 v-else-if="Object.keys(scripts).length">Scripts</h2>
<form class="action" :class="{ selected: selectedScript === name }" v-for="(script, name) in scripts" :key="name" @submit.prevent="_runScript">
<div class="head" @click="toggleSelectedScript(name)">
<div class="icon">
<i :class="script.iconClass" v-if="script.iconClass" />
<i class="fas fa-cog" v-else />
</div>
<div class="name" v-text="name" />
<div class="controls">
<button type="button" class="run" :disabled="loading" @click.stop="_runScript" v-if="selectedScript === name">
<i class="fas fa-play" />
</button>
<button type="button" class="remove" :disabled="loading" @click.stop="removeScript" v-if="selectedScript === name">
<i class="fas fa-trash" />
</button>
</div>
</div>
<div class="body" v-if="selectedScript === name">
<PrismEditor :code="script.script.toString()" language="js" :readonly="true" />
<div class="code" v-if="response || error || loading" :class="{ response: response, error: error }">
<span v-if="loading">Loading...</span>
<span v-text="error" v-else-if="error" />
<span v-text="response" v-else-if="response" />
</div>
</div>
</form>
</div> </div>
<div class="no-actions" v-if="!(Object.keys(actions).length || Object.keys(scripts).length)">No actions available on this device</div>
</div> </div>
</template> </template>
<script> <script>
import 'prismjs';
import 'prismjs/themes/prism.css';
import PrismEditor from 'vue-prism-editor';
import mixins from '../utils'; import mixins from '../utils';
export default { export default {
name: 'LocalCommands', name: 'LocalCommands',
mixins: [mixins], mixins: [mixins],
components: { PrismEditor },
props: { props: {
host: String, host: String,
}, },
@ -61,7 +97,9 @@ export default {
return { return {
hosts: {}, hosts: {},
actions_: {}, actions_: {},
scripts: {},
selectedAction: null, selectedAction: null,
selectedScript: null,
response: null, response: null,
error: null, error: null,
}; };
@ -84,7 +122,7 @@ export default {
}, },
actions() { actions() {
return this.host ? this.actionsByHost[this.host] : this.actions_; return this.host ? this.actionsByHost[this.host] || {} : this.actions_;
}, },
}, },
@ -93,6 +131,10 @@ export default {
this.actions_ = await this.getActions(); this.actions_ = await this.getActions();
}, },
async loadScripts() {
this.scripts = await this.getScripts();
},
async loadHosts() { async loadHosts() {
this.hosts = await this.getHosts(); this.hosts = await this.getHosts();
}, },
@ -119,6 +161,29 @@ export default {
await this.loadActions(); await this.loadActions();
}, },
async removeScript() {
if (!this.selectedScript || !(this.selectedScript in this.scripts) || !confirm('Are you sure that you want to remove this script from this device?')) {
return;
}
const script = this.scripts[this.selectedScript];
const hostIndex = script.hosts.indexOf(this.host);
if (hostIndex < 0) {
return;
}
console.log('here');
script.hosts.splice(hostIndex, 1);
if (script.hosts.length === 0) {
delete this.scripts[this.selectedScript];
} else {
this.scripts[this.selectedScript] = script;
}
await this.saveScripts(this.scripts);
await this.loadScripts();
},
async runAction() { async runAction() {
if (!(this.selectedAction && this.host && this.selectedAction in this.actions)) { if (!(this.selectedAction && this.host && this.selectedAction in this.actions)) {
return; return;
@ -134,16 +199,40 @@ export default {
} }
}, },
async _runScript() {
if (!(this.selectedScript && this.host && this.selectedScript in this.scripts)) {
return;
}
const script = this.scripts[this.selectedScript];
this.error = null;
try {
this.response = await this.runScript(script.script, this.hosts[this.host]);
} catch (e) {
this.error = e.message;
}
},
toggleSelectedAction(name) { toggleSelectedAction(name) {
this.response = null; this.response = null;
this.error = null; this.error = null;
this.selectedAction = this.selectedAction === name ? null : name; this.selectedAction = this.selectedAction === name ? null : name;
this.selectedScript = null;
},
toggleSelectedScript(name) {
this.response = null;
this.error = null;
this.selectedAction = null;
this.selectedScript = this.selectedScript === name ? null : name;
}, },
}, },
created() { created() {
this.loadHosts(); this.loadHosts();
this.loadActions(); this.loadActions();
this.loadScripts();
}, },
}; };
</script> </script>
@ -213,6 +302,16 @@ form {
} }
} }
} }
.no-actions {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.3em;
letter-spacing: 0.025em;
color: rgba(0, 0, 0, 0.8);
}
</style> </style>
<!-- vim:sw=2:ts=2:et: --> <!-- vim:sw=2:ts=2:et: -->

View File

@ -81,9 +81,9 @@
</form> </form>
</div> </div>
<form class="save-form" ref="scriptForm" @submit.prevent="storeScript" v-if="saveMode"> <form class="save-form" ref="scriptForm" @submit.prevent="save" v-if="saveMode">
<div class="row"> <div class="row">
<input type="text" name="displayName" placeholder="Script display name" /> <input type="text" name="displayName" placeholder="Display name" />
</div> </div>
<div class="row"> <div class="row">
@ -99,7 +99,7 @@
</div> </div>
<div class="row buttons"> <div class="row buttons">
<button type="submit" :disabled="loading"><i class="fas fa-save" /> &nbsp; Save Script</button> <button type="submit" :disabled="loading"><i class="fas fa-save" /> &nbsp; Save {{ actionMode === 'request' ? 'Action' : 'Script' }}</button>
<button type="button" @click="saveMode = false" :disabled="loading"><i class="fas fa-times" /> &nbsp; Cancel</button> <button type="button" @click="saveMode = false" :disabled="loading"><i class="fas fa-times" /> &nbsp; Cancel</button>
</div> </div>
</form> </form>
@ -273,6 +273,10 @@ export default {
} }
}, },
async save(event) {
return this.actionMode === 'request' ? await this.storeAction(event) : await this.storeScript(event);
},
async storeScript(event) { async storeScript(event) {
const saveForm = event.target; const saveForm = event.target;
const displayName = saveForm.displayName.value.trim(); const displayName = saveForm.displayName.value.trim();