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.
440 lines
14 KiB
440 lines
14 KiB
3 years ago
|
<template>
|
||
|
<v-dialog
|
||
3 years ago
|
v-model="dialogShow"
|
||
3 years ago
|
width="60%"
|
||
3 years ago
|
>
|
||
3 years ago
|
<v-container>
|
||
|
<v-card class="pa-10">
|
||
3 years ago
|
<v-icon class="float-right " color="error" @click="dialogShow = false">
|
||
|
mdi-close-box-outline
|
||
|
</v-icon>
|
||
|
<p class="text-center" /><p class="display-1 text-center">
|
||
|
NocoDB: Settings
|
||
|
</p>
|
||
3 years ago
|
|
||
|
<v-tabs
|
||
|
v-model="tab"
|
||
3 years ago
|
color="pink"
|
||
3 years ago
|
>
|
||
3 years ago
|
<v-tabs-slider />
|
||
3 years ago
|
|
||
|
<v-tab
|
||
|
href="#tab-theme"
|
||
|
>
|
||
|
Appearance
|
||
|
</v-tab>
|
||
|
|
||
|
<v-tab-item
|
||
|
value="tab-theme"
|
||
|
>
|
||
|
<v-card
|
||
|
flat
|
||
|
tile
|
||
|
>
|
||
|
<v-simple-table dense style="border: 1px solid grey">
|
||
3 years ago
|
<template #default>
|
||
3 years ago
|
<tbody>
|
||
3 years ago
|
<tr>
|
||
|
<td>Dark Mode</td>
|
||
|
<td>
|
||
|
<v-tooltip bottom>
|
||
|
<template #activator="{ on }">
|
||
|
<v-icon
|
||
|
x-large
|
||
|
:color="$vuetify.theme.dark ? 'primary':'primary'"
|
||
|
@click="toggleDarkTheme"
|
||
|
v-on="on"
|
||
|
>
|
||
|
mdi-bat
|
||
|
</v-icon>
|
||
|
</template>
|
||
|
<h3 class="pa-3">
|
||
|
{{ $vuetify.theme.dark ? 'It does come in Black' : 'Does it come in Black ?' }}
|
||
|
<i />
|
||
|
</h3>
|
||
|
</v-tooltip>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Language</td>
|
||
|
<td>
|
||
|
<v-radio-group v-model="language" row>
|
||
|
<v-radio
|
||
|
v-for="{label,value} in languages"
|
||
|
:key="value"
|
||
|
:label="label"
|
||
|
:value="value"
|
||
|
/>
|
||
|
</v-radio-group>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>Themes</td>
|
||
|
<td class="pa-1">
|
||
|
<v-list rounded>
|
||
|
<!-- <v-subheader>REPORTS</v-subheader>-->
|
||
|
<v-list-item-group v-model="item" color="primary">
|
||
|
<v-list-item
|
||
|
v-for="(t,i) in themes"
|
||
|
:key="i"
|
||
|
class="mb-n1"
|
||
|
:value="i"
|
||
|
@click.native.prevent.stop="changeTheme(t,i)"
|
||
|
>
|
||
|
<v-list-item-content class="py-0">
|
||
|
<div class="d-flex align-center" style="width:100%">
|
||
|
<div style="width: 100px">
|
||
|
{{ i }}
|
||
|
</div>
|
||
|
<div class="flex-grow-1">
|
||
|
<v-container fluid class="pa-0">
|
||
|
<v-row>
|
||
|
<v-col
|
||
|
v-for="(col,key) in t"
|
||
|
:key="key"
|
||
|
class="mx-2"
|
||
|
style="height: 20px"
|
||
|
:style="{backgroundColor: col}"
|
||
|
/>
|
||
|
</v-row>
|
||
|
</v-container>
|
||
|
</div>
|
||
3 years ago
|
</div>
|
||
3 years ago
|
</v-list-item-content>
|
||
|
</v-list-item>
|
||
|
<v-list-item
|
||
|
class="mb-n2"
|
||
|
value="Custom"
|
||
|
@click.native.prevent.stop="changeTheme(customTheme,'Custom')"
|
||
|
>
|
||
|
<v-list-item-content class="py-0">
|
||
|
<div class="d-flex align-center" style="width:100%">
|
||
|
<div style="min-width: 100px">
|
||
|
Custom
|
||
|
</div>
|
||
|
<div class="flex-grow-1">
|
||
|
<!-- <v-container fluid>-->
|
||
|
|
||
|
<x-btn
|
||
|
v-for="(col,key) in customTheme"
|
||
|
:key="key"
|
||
|
small
|
||
|
btn.class="ma-1 caption"
|
||
|
:color="col"
|
||
|
tooltip="Click to change the color"
|
||
|
@click="customKey = key, colorPickerModel= true"
|
||
|
>
|
||
|
{{ key }}
|
||
|
</x-btn>
|
||
|
</div>
|
||
3 years ago
|
</div>
|
||
3 years ago
|
</v-list-item-content>
|
||
|
</v-list-item>
|
||
|
</v-list-item-group>
|
||
|
</v-list>
|
||
|
</td>
|
||
|
</tr>
|
||
3 years ago
|
</tbody>
|
||
|
</template>
|
||
|
</v-simple-table>
|
||
|
</v-card>
|
||
|
</v-tab-item>
|
||
|
|
||
|
<v-tab
|
||
|
href="#tab-other"
|
||
|
>
|
||
|
Version & Updates
|
||
|
</v-tab>
|
||
|
|
||
|
<v-tab-item
|
||
|
value="tab-other"
|
||
|
>
|
||
|
<v-card
|
||
|
flat
|
||
|
tile
|
||
|
>
|
||
|
<v-simple-table dense style="border: 1px solid grey">
|
||
3 years ago
|
<template #default>
|
||
3 years ago
|
<tbody>
|
||
3 years ago
|
<tr>
|
||
|
<td>
|
||
|
Version
|
||
|
</td>
|
||
|
<td>
|
||
3 years ago
|
<span @contextmenu="rightClick">{{ $store.state.settings.version }}</span>
|
||
3 years ago
|
</td>
|
||
|
</tr>
|
||
|
<tr @dblclick="enableAppRefresh = true">
|
||
|
<td>
|
||
|
Auto update
|
||
|
</td>
|
||
|
<td>
|
||
|
<v-switch
|
||
|
v-model="autoUpdate"
|
||
|
flat
|
||
|
color="grey "
|
||
|
/>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr v-if="enableAppRefresh">
|
||
|
<td>
|
||
|
Application refresh
|
||
|
</td>
|
||
|
<td>
|
||
|
<v-btn @click="applicationRefresh">
|
||
|
Refresh
|
||
|
</v-btn>
|
||
|
</td>
|
||
|
</tr>
|
||
3 years ago
|
</tbody>
|
||
|
</template>
|
||
|
</v-simple-table>
|
||
|
</v-card>
|
||
|
</v-tab-item>
|
||
|
</v-tabs>
|
||
|
</v-card>
|
||
|
<v-dialog
|
||
|
v-model="colorPickerModel"
|
||
|
width="350"
|
||
|
>
|
||
3 years ago
|
<v-color-picker
|
||
|
v-if="customTheme[customKey]"
|
||
|
v-model="customTheme[customKey]"
|
||
|
class="mx-auto my-2"
|
||
|
@input="changeTheme(customTheme)"
|
||
|
/>
|
||
3 years ago
|
</v-dialog>
|
||
|
|
||
|
<dlgLabelSubmitCancel
|
||
|
v-if="dialogShow"
|
||
3 years ago
|
:dialog-show="gaDialogShow"
|
||
|
:actions-mtd="gaDialogFunction"
|
||
3 years ago
|
heading="Click submit to disable Google Analytics."
|
||
|
type="primary"
|
||
|
/>
|
||
|
|
||
|
<dlgLabelSubmitCancel
|
||
|
v-if="dialogShow"
|
||
3 years ago
|
:dialog-show="logReportDialogShow"
|
||
|
:actions-mtd="logReportDialogFunction"
|
||
3 years ago
|
heading="Error reporting helps us to build a better product. Press cancel to help us build a better product ?"
|
||
|
type="primary"
|
||
|
/>
|
||
|
</v-container>
|
||
|
</v-dialog>
|
||
|
</template>
|
||
|
<script>
|
||
|
|
||
3 years ago
|
import themes from '../helpers/themes'
|
||
3 years ago
|
import dlgLabelSubmitCancel from './utils/DlgLabelSubmitCancel'
|
||
3 years ago
|
|
||
|
export default {
|
||
|
components: { dlgLabelSubmitCancel },
|
||
|
directives: {},
|
||
3 years ago
|
validate({ params }) {
|
||
3 years ago
|
return true
|
||
|
},
|
||
|
props: { value: Boolean },
|
||
|
|
||
3 years ago
|
data() {
|
||
3 years ago
|
return {
|
||
|
rightClickCount: 0,
|
||
|
enableAppRefresh: false,
|
||
|
tab: null,
|
||
|
gaDialogShow: false,
|
||
|
logReportDialogShow: false,
|
||
|
languages: [
|
||
|
{ label: 'English', value: 'en' }
|
||
|
// {label: 'Japanese', value: 'ja'},
|
||
|
// {label: 'Chinese', value: 'zh'}
|
||
|
],
|
||
|
item: 'default',
|
||
|
primary: '',
|
||
|
colors: [
|
||
|
'#ea4235',
|
||
|
'#4CAF50',
|
||
|
'#FF9800',
|
||
|
'#0288D1'
|
||
|
],
|
||
|
customKey: null,
|
||
|
colorPickerModel: false,
|
||
|
customTheme: {
|
||
|
primary: '#6f5dcc',
|
||
|
secondary: '#BFDBF7',
|
||
|
accent: '#ED254E',
|
||
|
info: '#00CED1',
|
||
|
success: '#4CAF50',
|
||
|
warning: '#FB8C00',
|
||
|
error: '#ff0100'
|
||
3 years ago
|
},
|
||
3 years ago
|
themes
|
||
|
}
|
||
|
},
|
||
3 years ago
|
fetch({ store, params }) {
|
||
3 years ago
|
},
|
||
|
computed: {
|
||
|
checkForUpdate: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.checkForUpdate
|
||
3 years ago
|
},
|
||
3 years ago
|
set(value) {
|
||
3 years ago
|
this.$store.commit('settings/MutCheckForUpdate', value)
|
||
3 years ago
|
}
|
||
3 years ago
|
},
|
||
3 years ago
|
autoUpdate: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.downloadAndUpdateRelease
|
||
3 years ago
|
},
|
||
3 years ago
|
set(value) {
|
||
3 years ago
|
this.$store.commit('settings/MutDownloadAndUpdateRelease', value)
|
||
3 years ago
|
}
|
||
|
},
|
||
|
isGaEnabled: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.isGaEnabled
|
||
3 years ago
|
},
|
||
3 years ago
|
set(value) {
|
||
3 years ago
|
this.$store.commit('settings/MutToggleGaEnabled', value)
|
||
3 years ago
|
}
|
||
|
},
|
||
|
isErrorReportingEnabled: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.isErrorReportingEnabled
|
||
3 years ago
|
},
|
||
3 years ago
|
set(value) {
|
||
3 years ago
|
this.$store.commit('settings/MutToggleErrorReportingEnabled', value)
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
isTelemetryEnabled: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.isErrorReportingEnabled
|
||
3 years ago
|
},
|
||
3 years ago
|
set(value) {
|
||
3 years ago
|
this.$store.commit('settings/MutToggleTelemetryEnabled', value)
|
||
3 years ago
|
}
|
||
3 years ago
|
},
|
||
3 years ago
|
dialogShow: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.value
|
||
|
},
|
||
3 years ago
|
set(val) {
|
||
3 years ago
|
this.$emit('input', val)
|
||
|
}
|
||
3 years ago
|
},
|
||
3 years ago
|
language: {
|
||
3 years ago
|
get() {
|
||
3 years ago
|
return this.$store.state.settings.language
|
||
3 years ago
|
},
|
||
3 years ago
|
set(val) {
|
||
3 years ago
|
this.$store.commit('settings/MutSetLanguage', val)
|
||
3 years ago
|
}
|
||
|
}
|
||
|
},
|
||
|
watch: {},
|
||
3 years ago
|
created() {
|
||
3 years ago
|
this.customTheme = { ...this.customTheme, ...this.$store.state.settings.customTheme }
|
||
|
this.item = this.$store.state.settings.themeName
|
||
3 years ago
|
this.$store.watch(
|
||
3 years ago
|
state => state.settings.customTheme,
|
||
3 years ago
|
(theme) => {
|
||
|
this.customTheme = { ...this.customTheme, ...theme }
|
||
|
})
|
||
|
|
||
3 years ago
|
this.$store.watch(state => state.settings.themeName,
|
||
3 years ago
|
(theme) => {
|
||
|
this.$nextTick(() => {
|
||
|
if (this.item !== theme) { this.item = theme }
|
||
3 years ago
|
})
|
||
3 years ago
|
})
|
||
|
},
|
||
3 years ago
|
beforeMount() {
|
||
3 years ago
|
},
|
||
3 years ago
|
async mounted() {
|
||
3 years ago
|
|
||
|
},
|
||
3 years ago
|
beforeDestroy() {
|
||
3 years ago
|
},
|
||
|
methods: {
|
||
3 years ago
|
rightClick() {
|
||
3 years ago
|
this.rightClickCount++
|
||
|
if (this.rightClickCount > 5) {
|
||
|
// require('electron').remote.getCurrentWindow().toggleDevTools();
|
||
|
this.rightClickCount = 0
|
||
|
}
|
||
3 years ago
|
},
|
||
3 years ago
|
async applicationRefresh() {
|
||
3 years ago
|
localStorage.removeItem('vuex')
|
||
|
location.reload()
|
||
3 years ago
|
},
|
||
3 years ago
|
toggleGa(event) {
|
||
3 years ago
|
if (this.isGaEnabled) {
|
||
|
this.gaDialogShow = true
|
||
|
} else { this.isGaEnabled = true }
|
||
3 years ago
|
},
|
||
3 years ago
|
toggleLogReport(event) {
|
||
3 years ago
|
if (this.isErrorReportingEnabled) {
|
||
|
this.logReportDialogShow = true
|
||
|
} else { this.isErrorReportingEnabled = true }
|
||
|
},
|
||
3 years ago
|
logReportDialogFunction(action) {
|
||
3 years ago
|
if (action !== 'hideDialog' && this.$store.state.users.user && this.$store.state.users.user.email) {
|
||
|
this.isErrorReportingEnabled = false
|
||
|
} else {
|
||
|
this.$toast.error('Only a registered user can disable Error Reporting, Please Login then disable.').goAway(5000)
|
||
|
}
|
||
|
this.logReportDialogShow = false
|
||
3 years ago
|
},
|
||
3 years ago
|
gaDialogFunction(action) {
|
||
3 years ago
|
if (action !== 'hideDialog') {
|
||
|
if (this.$store.state.users.user && this.$store.state.users.user.email) {
|
||
|
this.isGaEnabled = false
|
||
|
} else {
|
||
|
this.$toast.error('Only a registered user can disable Google Analytics, Please Login then disable.').goAway(5000)
|
||
|
}
|
||
|
}
|
||
|
this.gaDialogShow = false
|
||
3 years ago
|
},
|
||
3 years ago
|
async changeTheme(t, theme = 'Custom') {
|
||
3 years ago
|
this.item = theme
|
||
3 years ago
|
if (theme === 'Custom') { await this.$store.dispatch('settings/ActSetTheme', { theme: { ...t }, custom: true }) }
|
||
|
await this.$store.dispatch('settings/ActSetTheme', { theme: { ...t }, themeName: theme })
|
||
3 years ago
|
},
|
||
3 years ago
|
toggleDarkTheme() {
|
||
3 years ago
|
this.$store.commit('settings/MutToggleDarkMode')
|
||
3 years ago
|
}
|
||
|
},
|
||
3 years ago
|
beforeCreated() {
|
||
3 years ago
|
},
|
||
3 years ago
|
destroy() {
|
||
3 years ago
|
}
|
||
3 years ago
|
}
|
||
3 years ago
|
</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/>.
|
||
|
*
|
||
|
*/
|
||
|
-->
|