Sharkey/packages/client/src/pages/settings/theme.manage.vue

106 lines
3 KiB
Vue
Raw Normal View History

<template>
<FormBase>
2021-09-29 18:50:45 +03:00
<FormSelect v-model="selectedThemeId">
2020-12-29 03:31:04 +02:00
<template #label>{{ $ts.theme }}</template>
<optgroup :label="$ts._theme.installedThemes">
2021-11-19 12:36:12 +02:00
<option v-for="x in installedThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
2020-12-29 03:31:04 +02:00
</optgroup>
<optgroup :label="$ts._theme.builtinThemes">
2021-11-19 12:36:12 +02:00
<option v-for="x in builtinThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
</optgroup>
</FormSelect>
<template v-if="selectedTheme">
<FormInput readonly :modelValue="selectedTheme.author">
2020-12-26 03:47:36 +02:00
<span>{{ $ts.author }}</span>
</FormInput>
2021-11-19 12:36:12 +02:00
<FormTextarea v-if="selectedTheme.desc" readonly :modelValue="selectedTheme.desc">
2021-04-14 10:24:07 +03:00
<span>{{ $ts._theme.description }}</span>
</FormTextarea>
<FormTextarea readonly tall :modelValue="selectedThemeCode">
2020-12-26 03:47:36 +02:00
<span>{{ $ts._theme.code }}</span>
2021-11-19 12:36:12 +02:00
<template #desc><button class="_textButton" @click="copyThemeCode()">{{ $ts.copy }}</button></template>
</FormTextarea>
2021-11-19 12:36:12 +02:00
<FormButton v-if="!builtinThemes.some(t => t.id == selectedTheme.id)" danger @click="uninstall()"><i class="fas fa-trash-alt"></i> {{ $ts.uninstall }}</FormButton>
</template>
</FormBase>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import * as JSON5 from 'json5';
2021-11-11 19:02:25 +02:00
import FormTextarea from '@/components/debobigego/textarea.vue';
import FormSelect from '@/components/debobigego/select.vue';
import FormRadios from '@/components/debobigego/radios.vue';
import FormBase from '@/components/debobigego/base.vue';
import FormGroup from '@/components/debobigego/group.vue';
import FormInput from '@/components/debobigego/input.vue';
import FormButton from '@/components/debobigego/button.vue';
import { Theme, builtinThemes } from '@/scripts/theme';
import copyToClipboard from '@/scripts/copy-to-clipboard';
import * as os from '@/os';
import { ColdDeviceStorage } from '@/store';
import { getThemes, removeTheme } from '@/theme-store';
import * as symbols from '@/symbols';
export default defineComponent({
components: {
FormTextarea,
FormSelect,
FormRadios,
FormBase,
FormGroup,
FormInput,
FormButton,
},
emits: ['info'],
data() {
return {
2021-04-10 06:54:12 +03:00
[symbols.PAGE_INFO]: {
2020-12-26 03:47:36 +02:00
title: this.$ts._theme.manage,
2021-09-29 18:50:45 +03:00
icon: 'fas fa-folder-open',
bg: 'var(--bg)',
},
installedThemes: getThemes(),
builtinThemes,
selectedThemeId: null,
}
},
computed: {
themes(): Theme[] {
return this.builtinThemes.concat(this.installedThemes);
},
selectedTheme() {
if (this.selectedThemeId == null) return null;
return this.themes.find(x => x.id === this.selectedThemeId);
},
selectedThemeCode() {
if (this.selectedTheme == null) return null;
return JSON5.stringify(this.selectedTheme, null, '\t');
},
},
mounted() {
2021-04-10 06:54:12 +03:00
this.$emit('info', this[symbols.PAGE_INFO]);
},
methods: {
copyThemeCode() {
copyToClipboard(this.selectedThemeCode);
os.success();
},
uninstall() {
removeTheme(this.selectedTheme);
2021-04-14 09:49:48 +03:00
this.installedThemes = this.installedThemes.filter(t => t.id !== this.selectedThemeId);
2021-03-06 05:23:59 +02:00
this.selectedThemeId = null;
os.success();
},
}
});
</script>