Files
tacticalrmm/web/src/components/ScriptManager.vue
2020-12-14 04:39:02 +00:00

415 lines
12 KiB
Vue

<template>
<div style="width: 60vw; max-width: 90vw">
<q-card>
<q-bar>
<q-btn @click="getScripts" class="q-mr-sm" dense flat push icon="refresh" />Script Manager
<q-space />
<q-btn dense flat icon="close" v-close-popup>
<q-tooltip content-class="bg-white text-primary">Close</q-tooltip>
</q-btn>
</q-bar>
<div class="q-pa-md">
<div class="q-gutter-sm row">
<q-btn-dropdown icon="add" label="New" no-caps dense flat>
<q-list dense>
<q-item clickable v-close-popup @click="newScript">
<q-item-section side>
<q-icon size="xs" name="add" />
</q-item-section>
<q-item-section>
<q-item-label>New Script</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="showScriptUploadModal = true">
<q-item-section side>
<q-icon size="xs" name="cloud_upload" />
</q-item-section>
<q-item-section>
<q-item-label>Upload Script</q-item-label>
</q-item-section>
</q-item>
</q-list>
</q-btn-dropdown>
<q-btn
label="Edit"
:disable="!isRowSelected || isBuiltInScript(selectedScript.id)"
dense
flat
push
unelevated
no-caps
icon="edit"
@click="editScript(selectedScript)"
/>
<q-btn
label="Delete"
:disable="!isRowSelected || isBuiltInScript(selectedScript.id)"
dense
flat
push
unelevated
no-caps
icon="delete"
@click="deleteScript(selectedScript.id)"
/>
<q-btn
label="View Code"
:disable="!isRowSelected"
dense
flat
push
unelevated
no-caps
icon="remove_red_eye"
@click="viewCode(selectedScript)"
/>
<q-btn
label="Download Script"
:disable="!isRowSelected"
dense
flat
push
unelevated
no-caps
icon="cloud_download"
@click="downloadScript(selectedScript)"
/>
</div>
<q-table
style="min-height: 30vw; max-height: 30vw"
dense
:table-class="{ 'table-bgcolor': !$q.dark.isActive, 'table-bgcolor-dark': $q.dark.isActive }"
class="settings-tbl-sticky scroll"
:data="visibleScripts"
:columns="columns"
:visible-columns="visibleColumns"
:pagination.sync="pagination"
:filter="search"
row-key="id"
binary-state-sort
hide-bottom
virtual-scroll
flat
:rows-per-page-options="[0]"
>
<template v-slot:header-cell-favorite="props">
<q-th :props="props" auto-width>
<q-icon name="star" color="yellow-8" size="sm" />
</q-th>
</template>
<template v-slot:top>
<q-btn
dense
flat
class="q-ml-sm"
:label="showCommunityScripts ? 'Hide Community Scripts' : 'Show Community Scripts'"
@click="setShowCommunityScripts(!showCommunityScripts)"
/>
<q-space />
<q-input
v-model="search"
style="width: 300px"
label="Search"
dense
outlined
clearable
class="q-pr-md q-pb-xs"
>
<template v-slot:prepend>
<q-icon name="search" color="primary" />
</template>
</q-input>
</template>
<template slot="body" slot-scope="props" :props="props">
<q-tr
:class="`${rowSelectedClass(props.row.id)} cursor-pointer`"
@click="selectedScript = props.row"
@contextmenu="selectedScript = props.row"
>
<!-- Context Menu -->
<q-menu context-menu>
<q-list dense style="min-width: 200px">
<q-item
clickable
v-close-popup
@click="editScript(props.row)"
id="context-edit"
v-if="props.row.script_type !== 'builtin'"
>
<q-item-section side>
<q-icon name="edit" />
</q-item-section>
<q-item-section>Edit</q-item-section>
</q-item>
<q-item
clickable
v-close-popup
@click="deleteScript(props.row.id)"
id="context-delete"
v-if="props.row.script_type !== 'builtin'"
>
<q-item-section side>
<q-icon name="delete" />
</q-item-section>
<q-item-section>Delete</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="favoriteScript(props.row)">
<q-item-section side>
<q-icon name="star" />
</q-item-section>
<q-item-section>{{ favoriteText(props.row.favorite) }}</q-item-section>
</q-item>
<q-separator></q-separator>
<q-item clickable v-close-popup @click="viewCode(props.row)" id="context-view">
<q-item-section side>
<q-icon name="remove_red_eye" />
</q-item-section>
<q-item-section>View Code</q-item-section>
</q-item>
<q-item clickable v-close-popup @click="downloadScript(props.row)" id="context-download">
<q-item-section side>
<q-icon name="cloud_download" />
</q-item-section>
<q-item-section>Download Script</q-item-section>
</q-item>
<q-separator></q-separator>
<q-item clickable v-close-popup>
<q-item-section>Close</q-item-section>
</q-item>
</q-list>
</q-menu>
<q-td>
<q-icon v-if="props.row.favorite" color="yellow-8" name="star" size="sm" />
</q-td>
<q-td>{{ props.row.name }}</q-td>
<q-td>{{ props.row.category }}</q-td>
<q-td>{{ props.row.shell }}</q-td>
<q-td>
{{ truncateText(props.row.description) }}
<q-tooltip v-if="props.row.description.length >= 60" content-style="font-size: 12px">{{
props.row.description
}}</q-tooltip>
</q-td>
</q-tr>
</template>
</q-table>
</div>
<q-separator />
<q-card-section></q-card-section>
</q-card>
<q-dialog v-model="showScriptUploadModal">
<ScriptUploadModal
:script="selectedScript"
:categories="categories"
@close="showScriptUploadModal = false"
@added="getScripts"
/>
</q-dialog>
</div>
</template>
<script>
import { mapState } from "vuex";
import mixins from "@/mixins/mixins";
import ScriptUploadModal from "@/components/modals/scripts/ScriptUploadModal";
import ScriptFormModal from "@/components/modals/scripts/ScriptFormModal";
export default {
name: "ScriptManager",
components: { ScriptUploadModal },
mixins: [mixins],
data() {
return {
scripts: [],
selectedScript: {},
showScriptUploadModal: false,
search: "",
pagination: {
rowsPerPage: 0,
sortBy: "favorite",
descending: true,
},
columns: [
{
name: "favorite",
label: "",
field: "favorite",
align: "left",
sortable: true,
},
{
name: "name",
label: "Name",
field: "name",
align: "left",
sortable: true,
},
{
name: "category",
label: "Category",
field: "category",
align: "left",
sortable: true,
},
{
name: "shell",
label: "Shell",
field: "shell",
align: "left",
sortable: true,
},
{
name: "desc",
label: "Description",
field: "description",
align: "left",
sortable: false,
},
],
visibleColumns: ["favorite", "name", "category", "desc", "shell"],
};
},
methods: {
getScripts() {
this.clearRow();
this.$axios.get("/scripts/scripts/").then(r => {
this.scripts = r.data;
});
},
setShowCommunityScripts(show) {
this.$store.dispatch("setShowCommunityScripts", show);
},
clearRow() {
this.selectedScript = {};
},
viewCode(script) {
this.$q
.dialog({
component: ScriptFormModal,
parent: this,
script: script,
readonly: true,
})
.onDismiss(() => {
this.getScripts();
});
},
favoriteScript(script) {
this.$q.loading.show();
const notifyText = !script.favorite ? "Script was favorited!" : "Script was removed as a favorite!";
this.$axios
.put(`/scripts/${script.id}/script/`, { favorite: !script.favorite })
.then(() => {
this.getScripts();
this.$q.loading.hide();
this.notifySuccess(notifyText);
})
.catch(() => {
this.$q.loading.hide();
this.notifyError("Something went wrong");
});
},
deleteScript(scriptpk) {
this.$q
.dialog({
title: "Delete script?",
cancel: true,
ok: { label: "Delete", color: "negative" },
})
.onOk(() => {
this.$axios
.delete(`/scripts/${scriptpk}/script/`)
.then(r => {
this.getScripts();
this.notifySuccess(r.data);
})
.catch(() => this.notifySuccess("Something went wrong"));
});
},
downloadScript(script) {
this.$axios
.get(`/scripts/${script.id}/download/`)
.then(({ data }) => {
const blob = new Blob([data.code], { type: "text/plain;charset=utf-8" });
let link = document.createElement("a");
link.href = window.URL.createObjectURL(blob);
link.download = data.filename;
link.click();
})
.catch(() => this.notifyError("Something went wrong"));
},
truncateText(txt) {
return txt.length >= 60 ? txt.substring(0, 60) + "..." : txt;
},
isBuiltInScript(pk) {
try {
return this.scripts.find(i => i.id === pk).script_type === "builtin" ? true : false;
} catch (e) {
return false;
}
},
rowSelectedClass(id) {
if (this.selectedScript.id === id) return this.$q.dark.isActive ? "highlight-dark" : "highlight";
},
favoriteText(isFavorite) {
return isFavorite ? "Remove as Favorite" : "Add as Favorite";
},
newScript() {
this.$q
.dialog({
component: ScriptFormModal,
parent: this,
categories: this.categories,
readonly: false,
})
.onDismiss(() => {
this.getScripts();
});
},
editScript(script) {
this.$q
.dialog({
component: ScriptFormModal,
parent: this,
script: script,
categories: this.categories,
readonly: false,
})
.onDismiss(() => {
this.getScripts();
});
},
},
computed: {
...mapState(["showCommunityScripts"]),
visibleScripts() {
return this.showCommunityScripts ? this.scripts : this.scripts.filter(i => i.script_type !== "builtin");
},
categories() {
let list = [];
this.scripts.forEach(script => {
if (!!script.category && !list.includes(script.category)) {
if (script.category !== "Community") {
list.push(script.category);
}
}
});
return list;
},
isRowSelected() {
return this.selectedScript.id !== null && this.selectedScript.id !== undefined;
},
},
mounted() {
this.getScripts();
},
};
</script>