gancio/components/admin/Plugin.vue

87 lines
3.2 KiB
Vue
Raw Normal View History

2022-08-09 18:33:05 +02:00
<template lang='pug'>
v-container
v-card-title {{ $t('common.plugins') }}
2022-08-09 18:33:05 +02:00
v-spacer
v-card-subtitle(v-html="$t('admin.plugins_description')")
2022-10-13 12:30:47 +02:00
v-dialog(v-if='selectedPlugin.settingsValue' v-model='dialog' width='600' :fullscreen='$vuetify.breakpoint.xsOnly')
2022-09-12 17:10:13 +02:00
v-card
v-card-title {{ $t('admin.config_plugin') }} - {{ selectedPlugin.name }}
2022-08-09 18:33:05 +02:00
v-card-text
v-form(v-model='valid' ref='form' lazy-validation)
2022-10-13 12:30:47 +02:00
v-row(v-for='(setting, name) in selectedPlugin.settings' :key='name' mt-2)
v-col.col-4
small(v-html='setting.hint')
v-col.col-8
v-text-field(v-if='setting.type === "TEXT"' v-model='selectedPlugin.settingsValue[name]'
type='text' :label='setting.description'
persistent-hint
:rules="[setting.required ? $validators.required(setting.description) : false]")
2022-08-09 18:33:05 +02:00
2022-10-13 12:30:47 +02:00
v-text-field(v-if='setting.type === "NUMBER"' v-model='selectedPlugin.settingsValue[name]' type='number' :label='setting.description')
v-switch(v-if='setting.type === "CHECK"' v-model='selectedPlugin.settingsValue[name]' :label='setting.description')
v-select(v-if='setting.type === "LIST"' v-model='selectedPlugin.settingsValue[name]' :items='setting.items' :label='setting.description')
v-switch(:label="$t('common.enable')" inset color='primary' v-model='selectedPlugin.settingsValue["enable"]')
2022-08-09 18:33:05 +02:00
v-card-actions
v-spacer
v-btn(@click='dialog = false' outlined color='warning') {{ $t('common.cancel') }}
v-btn(@click='saveSettings' outlined color='primary' :loading='loading'
:disable='!valid || loading') {{ $t('common.save') }}
2022-08-09 18:33:05 +02:00
v-card-text
2023-03-24 16:03:08 +01:00
v-card(v-for='plugin in plugins' :key='plugin.name' max-width="400" elevation='10')
2022-10-13 12:30:47 +02:00
v-card-title {{ plugin.name }}
v-card-text
p {{ plugin.description }}
blockquote author: {{ plugin.author }}
a(:href='plugin.url' v-text='plugin.url')
v-row
v-spacer
v-btn(text color='primary' @click='setOptions(plugin)') {{ $t('common.settings') }}
2022-08-09 18:33:05 +02:00
</template>
<script>
import { mdiPencil, mdiChevronLeft, mdiChevronRight, mdiMagnify, mdiEye } from '@mdi/js'
import { mapActions, mapState } from 'vuex'
2022-08-09 18:33:05 +02:00
export default {
data() {
2022-08-09 18:33:05 +02:00
return {
mdiPencil, mdiChevronRight, mdiChevronLeft, mdiMagnify, mdiEye,
loading: false,
dialog: false,
valid: false,
selectedPlugin: {},
2022-08-09 18:33:05 +02:00
plugins: [],
headers: [
{ value: 'name', text: 'Name' },
{ value: 'description', text: 'Address' },
{ value: 'actions', text: 'Actions', align: 'right' }
]
}
},
async mounted() {
2022-08-09 18:33:05 +02:00
this.plugins = await this.$axios.$get('/plugins')
},
computed: mapState(['settings']),
2022-08-09 18:33:05 +02:00
methods: {
...mapActions(['setSetting']),
async saveSettings() {
this.loading = true
this.setSetting({
key: 'plugin_' + this.selectedPlugin.name,
value: this.selectedPlugin.settingsValue
})
this.loading = false
this.dialog = false
},
async toggleEnable(plugin) {
await this.$axios.$put(`/plugin/${plugin.name}`)
2022-08-09 18:33:05 +02:00
},
setOptions(plugin) {
this.selectedPlugin = plugin
this.dialog = true
2022-08-09 18:33:05 +02:00
}
}
}
</script>