2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
|
|
|
<FormBase>
|
|
|
|
<FormSelect v-model:value="selectedThemeId">
|
2020-12-26 02:47:36 +01:00
|
|
|
<template #label>{{ $ts.installedThemes }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
<option v-for="x in installedThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
2020-12-26 02:47:36 +01:00
|
|
|
<optgroup :label="$ts.builtinThemes">
|
2020-11-25 13:31:34 +01:00
|
|
|
<option v-for="x in builtinThemes" :value="x.id" :key="x.id">{{ x.name }}</option>
|
|
|
|
</optgroup>
|
|
|
|
</FormSelect>
|
|
|
|
<template v-if="selectedTheme">
|
|
|
|
<FormInput readonly :value="selectedTheme.author">
|
2020-12-26 02:47:36 +01:00
|
|
|
<span>{{ $ts.author }}</span>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormInput>
|
|
|
|
<FormTextarea readonly tall :value="selectedThemeCode">
|
2020-12-26 02:47:36 +01:00
|
|
|
<span>{{ $ts._theme.code }}</span>
|
|
|
|
<template #desc><button @click="copyThemeCode()" class="_textButton">{{ $ts.copy }}</button></template>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormTextarea>
|
2020-12-26 02:47:36 +01:00
|
|
|
<FormButton @click="uninstall()" danger v-if="!builtinThemes.some(t => t.id == selectedTheme.id)"><Fa :icon="faTrashAlt"/> {{ $ts.uninstall }}</FormButton>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
|
|
|
import { faPalette, faDownload, faFolderOpen, faCheck, faTrashAlt, faEye } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import * as JSON5 from 'json5';
|
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormRadios from '@/components/form/radios.vue';
|
|
|
|
import FormBase from '@/components/form/base.vue';
|
|
|
|
import FormGroup from '@/components/form/group.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormButton from '@/components/form/button.vue';
|
|
|
|
import { Theme, builtinThemes } from '@/scripts/theme';
|
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
|
|
|
import * as os from '@/os';
|
2020-12-19 02:55:52 +01:00
|
|
|
import { ColdDeviceStorage } from '@/store';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormTextarea,
|
|
|
|
FormSelect,
|
|
|
|
FormRadios,
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormInput,
|
|
|
|
FormButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
INFO: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts._theme.manage,
|
2020-11-25 13:31:34 +01:00
|
|
|
icon: faFolderOpen
|
|
|
|
},
|
2020-12-19 02:55:52 +01:00
|
|
|
installedThemes: ColdDeviceStorage.ref('themes'),
|
2020-11-25 13:31:34 +01:00
|
|
|
builtinThemes,
|
|
|
|
selectedThemeId: null,
|
|
|
|
faPalette, faDownload, faFolderOpen, faCheck, faTrashAlt, faEye
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
themes(): Theme[] {
|
2020-12-28 15:14:05 +01:00
|
|
|
return this.builtinThemes.concat(this.installedThemes);
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
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() {
|
|
|
|
this.$emit('info', this.INFO);
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
copyThemeCode() {
|
|
|
|
copyToClipboard(this.selectedThemeCode);
|
|
|
|
os.success();
|
|
|
|
},
|
|
|
|
|
|
|
|
uninstall() {
|
|
|
|
const theme = this.selectedTheme;
|
2020-12-19 02:55:52 +01:00
|
|
|
const themes = ColdDeviceStorage.get('themes').filter(t => t.id != theme.id);
|
|
|
|
ColdDeviceStorage.set('themes', themes);
|
2020-11-25 13:31:34 +01:00
|
|
|
os.success();
|
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|