2020-11-25 14:31:34 +02:00
|
|
|
<template>
|
2021-12-02 13:09:12 +02:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormSelect v-model="selectedThemeId" class="_formBlock">
|
2022-05-05 16:53:08 +03:00
|
|
|
<template #label>{{ i18n.ts.theme }}</template>
|
|
|
|
<optgroup :label="i18n.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>
|
2022-05-05 16:53:08 +03:00
|
|
|
<optgroup :label="i18n.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>
|
2020-11-25 14:31:34 +02:00
|
|
|
</optgroup>
|
|
|
|
</FormSelect>
|
|
|
|
<template v-if="selectedTheme">
|
2022-05-28 15:59:23 +03:00
|
|
|
<FormInput readonly :model-value="selectedTheme.author" class="_formBlock">
|
2022-05-05 16:53:08 +03:00
|
|
|
<template #label>{{ i18n.ts.author }}</template>
|
2020-11-25 14:31:34 +02:00
|
|
|
</FormInput>
|
2022-05-28 15:59:23 +03:00
|
|
|
<FormTextarea v-if="selectedTheme.desc" readonly :model-value="selectedTheme.desc" class="_formBlock">
|
2022-05-05 16:53:08 +03:00
|
|
|
<template #label>{{ i18n.ts._theme.description }}</template>
|
2021-04-14 10:24:07 +03:00
|
|
|
</FormTextarea>
|
2022-05-28 15:59:23 +03:00
|
|
|
<FormTextarea readonly tall :model-value="selectedThemeCode" class="_formBlock">
|
2022-05-05 16:53:08 +03:00
|
|
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
|
|
|
<template #caption><button class="_textButton" @click="copyThemeCode()">{{ i18n.ts.copy }}</button></template>
|
2020-11-25 14:31:34 +02:00
|
|
|
</FormTextarea>
|
2022-05-05 16:53:08 +03:00
|
|
|
<FormButton v-if="!builtinThemes.some(t => t.id == selectedTheme.id)" class="_formBlock" danger @click="uninstall()"><i class="fas fa-trash-alt"></i> {{ i18n.ts.uninstall }}</FormButton>
|
2020-11-25 14:31:34 +02:00
|
|
|
</template>
|
2021-12-02 13:09:12 +02:00
|
|
|
</div>
|
2020-11-25 14:31:34 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-05 16:53:08 +03:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 11:38:49 +03:00
|
|
|
import { computed, ref } from 'vue';
|
2022-05-01 16:51:07 +03:00
|
|
|
import JSON5 from 'json5';
|
2021-12-02 13:09:12 +02: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';
|
2022-05-28 15:59:23 +03:00
|
|
|
import { Theme, getBuiltinThemesRef } from '@/scripts/theme';
|
2021-11-11 19:02:25 +02:00
|
|
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { getThemes, removeTheme } from '@/theme-store';
|
2022-05-05 16:53:08 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-05-05 16:53:08 +03:00
|
|
|
const installedThemes = ref(getThemes());
|
2022-05-28 15:59:23 +03:00
|
|
|
const builtinThemes = getBuiltinThemesRef();
|
2022-05-05 16:53:08 +03:00
|
|
|
const selectedThemeId = ref(null);
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-05-28 15:59:23 +03:00
|
|
|
const themes = computed(() => [ ...installedThemes.value, ...builtinThemes.value ]);
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-05-05 16:53:08 +03:00
|
|
|
const selectedTheme = computed(() => {
|
|
|
|
if (selectedThemeId.value == null) return null;
|
|
|
|
return themes.value.find(x => x.id === selectedThemeId.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
const selectedThemeCode = computed(() => {
|
|
|
|
if (selectedTheme.value == null) return null;
|
|
|
|
return JSON5.stringify(selectedTheme.value, null, '\t');
|
|
|
|
});
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-05-05 16:53:08 +03:00
|
|
|
function copyThemeCode() {
|
|
|
|
copyToClipboard(selectedThemeCode.value);
|
|
|
|
os.success();
|
|
|
|
}
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-05-05 16:53:08 +03:00
|
|
|
function uninstall() {
|
|
|
|
removeTheme(selectedTheme.value as Theme);
|
|
|
|
installedThemes.value = installedThemes.value.filter(t => t.id !== selectedThemeId.value);
|
|
|
|
selectedThemeId.value = null;
|
|
|
|
os.success();
|
|
|
|
}
|
2020-11-25 14:31:34 +02:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts._theme.manage,
|
|
|
|
icon: 'fas fa-folder-open',
|
2020-11-25 14:31:34 +02:00
|
|
|
});
|
|
|
|
</script>
|