2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
2021-12-02 12:09:12 +01:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSelect v-model="selectedThemeId" class="_formBlock">
|
2020-12-29 02:31:04 +01:00
|
|
|
<template #label>{{ $ts.theme }}</template>
|
|
|
|
<optgroup :label="$ts._theme.installedThemes">
|
2021-11-19 11:36:12 +01:00
|
|
|
<option v-for="x in installedThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
2020-12-29 02:31:04 +01:00
|
|
|
</optgroup>
|
|
|
|
<optgroup :label="$ts._theme.builtinThemes">
|
2021-11-19 11:36:12 +01:00
|
|
|
<option v-for="x in builtinThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
2020-11-25 13:31:34 +01:00
|
|
|
</optgroup>
|
|
|
|
</FormSelect>
|
|
|
|
<template v-if="selectedTheme">
|
2021-12-02 12:09:12 +01:00
|
|
|
<FormInput readonly :modelValue="selectedTheme.author" class="_formBlock">
|
|
|
|
<template #label>{{ $ts.author }}</template>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormInput>
|
2021-12-02 12:09:12 +01:00
|
|
|
<FormTextarea v-if="selectedTheme.desc" readonly :modelValue="selectedTheme.desc" class="_formBlock">
|
|
|
|
<template #label>{{ $ts._theme.description }}</template>
|
2021-04-14 09:24:07 +02:00
|
|
|
</FormTextarea>
|
2021-12-02 12:09:12 +01:00
|
|
|
<FormTextarea readonly tall :modelValue="selectedThemeCode" class="_formBlock">
|
|
|
|
<template #label>{{ $ts._theme.code }}</template>
|
|
|
|
<template #caption><button class="_textButton" @click="copyThemeCode()">{{ $ts.copy }}</button></template>
|
2020-11-25 13:31:34 +01:00
|
|
|
</FormTextarea>
|
2021-12-02 12:09:12 +01:00
|
|
|
<FormButton v-if="!builtinThemes.some(t => t.id == selectedTheme.id)" class="_formBlock" danger @click="uninstall()"><i class="fas fa-trash-alt"></i> {{ $ts.uninstall }}</FormButton>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
2021-12-02 12:09:12 +01:00
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2022-05-01 15:51:07 +02:00
|
|
|
import JSON5 from 'json5';
|
2021-12-02 12:09:12 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
|
|
|
import FormSelect from '@/components/form/select.vue';
|
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
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';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormTextarea,
|
|
|
|
FormSelect,
|
|
|
|
FormInput,
|
|
|
|
FormButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
emits: ['info'],
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
2021-04-10 05:54:12 +02:00
|
|
|
[symbols.PAGE_INFO]: {
|
2020-12-26 02:47:36 +01:00
|
|
|
title: this.$ts._theme.manage,
|
2021-09-29 17:50:45 +02:00
|
|
|
icon: 'fas fa-folder-open',
|
|
|
|
bg: 'var(--bg)',
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
2021-01-11 14:31:17 +01:00
|
|
|
installedThemes: getThemes(),
|
2020-11-25 13:31:34 +01:00
|
|
|
builtinThemes,
|
|
|
|
selectedThemeId: null,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
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');
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
copyThemeCode() {
|
|
|
|
copyToClipboard(this.selectedThemeCode);
|
|
|
|
os.success();
|
|
|
|
},
|
|
|
|
|
|
|
|
uninstall() {
|
2021-01-11 14:31:17 +01:00
|
|
|
removeTheme(this.selectedTheme);
|
2021-04-14 08:49:48 +02:00
|
|
|
this.installedThemes = this.installedThemes.filter(t => t.id !== this.selectedThemeId);
|
2021-03-06 04:23:59 +01:00
|
|
|
this.selectedThemeId = null;
|
|
|
|
os.success();
|
2020-11-25 13:31:34 +01:00
|
|
|
},
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|