mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
149 lines
3.8 KiB
149 lines
3.8 KiB
<template> |
|
<v-card style="width: 100%"> |
|
<v-toolbar height="40" class="elevation-0 toolbar-border-bottom"> |
|
<v-spacer /> |
|
|
|
<x-btn |
|
v-ge="['roles','reload']" |
|
outlined |
|
tooltip="Reload log settings" |
|
color="primary" |
|
small |
|
:disabled="loading" |
|
@click="load" |
|
@click.prevent |
|
> |
|
<v-icon small left> |
|
refresh |
|
</v-icon> |
|
<!-- Reload --> |
|
{{ $t('general.reload') }} |
|
</x-btn> |
|
<x-btn |
|
v-ge="['roles','add new']" |
|
outlined |
|
tooltip="Toggle all checkbox" |
|
color="primary" |
|
small |
|
:disabled="loading" |
|
@click="toggleAll = !toggleAll; edited=true" |
|
@click.prevent |
|
> |
|
<v-icon small left> |
|
{{ toggleAll ? 'mdi-toggle-switch-outline' : 'mdi-toggle-switch-off-outline' }} |
|
</v-icon> |
|
Toggle All |
|
</x-btn> |
|
<x-btn |
|
v-ge="['rows','save']" |
|
outlined |
|
:tooltip="$t('tooltip.saveChanges')" |
|
color="primary" |
|
small |
|
:disabled="!edited || loading" |
|
|
|
@click="save" |
|
@click.prevent |
|
> |
|
<v-icon small left> |
|
save |
|
</v-icon> |
|
<!-- Save --> |
|
{{ $t('general.save') }} |
|
</x-btn> |
|
</v-toolbar> |
|
<div class="d-flex justify-center pa-2"> |
|
<v-simple-table dense style="min-width: 500px;margin:0 auto"> |
|
<thead> |
|
<tr> |
|
<th /> |
|
<th>Name</th> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<tr v-for="(v, key) in names" :key="key"> |
|
<td> |
|
<v-checkbox v-model="names[key]" class="mt-0 pt-0" dense hide-details @change="edited = true" /> |
|
</td> |
|
<td>{{ key }}</td> |
|
</tr> |
|
</tbody> |
|
</v-simple-table> |
|
</div> |
|
</v-card> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
name: 'Logs', |
|
data: () => ({ |
|
names: null, |
|
loading: false, |
|
edited: false |
|
}), |
|
computed: { |
|
toggleAll: { |
|
get() { |
|
return this.names && Object.values(this.names).some(v => v) |
|
}, |
|
set(val) { |
|
this.names && Object.keys(this.names).forEach(k => this.$set(this.names, k, val)) |
|
} |
|
} |
|
}, |
|
async created() { |
|
await this.load() |
|
}, |
|
methods: { |
|
async load() { |
|
this.loading = true |
|
try { |
|
const res = await this.$store.dispatch('sqlMgr/ActSqlOp', [null, 'xcDebugGet']) |
|
this.names = JSON.parse(res.value) |
|
} catch (e) { |
|
} |
|
|
|
this.loading = false |
|
}, |
|
async save() { |
|
this.loading = true |
|
try { |
|
await this.$store.dispatch('sqlMgr/ActSqlOp', [null, 'xcDebugSet', this.names]) |
|
this.$toast.success('Updated debug log settings successfully').goAway(3000) |
|
this.edited = false |
|
} catch (e) { |
|
this.$toast.error('Some error occurred while updating debug log settings').goAway(3000) |
|
} |
|
this.loading = false |
|
} |
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
|
|
</style> |
|
<!-- |
|
/** |
|
* @copyright Copyright (c) 2021, Xgene Cloud Ltd |
|
* |
|
* @author Naveen MR <oof1lab@gmail.com> |
|
* @author Pranav C Balan <pranavxc@gmail.com> |
|
* |
|
* @license GNU AGPL version 3 or any later version |
|
* |
|
* This program is free software: you can redistribute it and/or modify |
|
* it under the terms of the GNU Affero General Public License as |
|
* published by the Free Software Foundation, either version 3 of the |
|
* License, or (at your option) any later version. |
|
* |
|
* This program is distributed in the hope that it will be useful, |
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
* GNU Affero General Public License for more details. |
|
* |
|
* You should have received a copy of the GNU Affero General Public License |
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
* |
|
*/ |
|
-->
|
|
|