mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-09 19:43:09 +02:00
refactor(client): refactor settings/theme/manage to use Composition API (#8596)
This commit is contained in:
parent
3ea351d8a2
commit
ad860905c6
1 changed files with 38 additions and 57 deletions
|
@ -1,32 +1,32 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="_formRoot">
|
<div class="_formRoot">
|
||||||
<FormSelect v-model="selectedThemeId" class="_formBlock">
|
<FormSelect v-model="selectedThemeId" class="_formBlock">
|
||||||
<template #label>{{ $ts.theme }}</template>
|
<template #label>{{ i18n.ts.theme }}</template>
|
||||||
<optgroup :label="$ts._theme.installedThemes">
|
<optgroup :label="i18n.ts._theme.installedThemes">
|
||||||
<option v-for="x in installedThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
<option v-for="x in installedThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
<optgroup :label="$ts._theme.builtinThemes">
|
<optgroup :label="i18n.ts._theme.builtinThemes">
|
||||||
<option v-for="x in builtinThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
<option v-for="x in builtinThemes" :key="x.id" :value="x.id">{{ x.name }}</option>
|
||||||
</optgroup>
|
</optgroup>
|
||||||
</FormSelect>
|
</FormSelect>
|
||||||
<template v-if="selectedTheme">
|
<template v-if="selectedTheme">
|
||||||
<FormInput readonly :modelValue="selectedTheme.author" class="_formBlock">
|
<FormInput readonly :modelValue="selectedTheme.author" class="_formBlock">
|
||||||
<template #label>{{ $ts.author }}</template>
|
<template #label>{{ i18n.ts.author }}</template>
|
||||||
</FormInput>
|
</FormInput>
|
||||||
<FormTextarea v-if="selectedTheme.desc" readonly :modelValue="selectedTheme.desc" class="_formBlock">
|
<FormTextarea v-if="selectedTheme.desc" readonly :modelValue="selectedTheme.desc" class="_formBlock">
|
||||||
<template #label>{{ $ts._theme.description }}</template>
|
<template #label>{{ i18n.ts._theme.description }}</template>
|
||||||
</FormTextarea>
|
</FormTextarea>
|
||||||
<FormTextarea readonly tall :modelValue="selectedThemeCode" class="_formBlock">
|
<FormTextarea readonly tall :modelValue="selectedThemeCode" class="_formBlock">
|
||||||
<template #label>{{ $ts._theme.code }}</template>
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
||||||
<template #caption><button class="_textButton" @click="copyThemeCode()">{{ $ts.copy }}</button></template>
|
<template #caption><button class="_textButton" @click="copyThemeCode()">{{ i18n.ts.copy }}</button></template>
|
||||||
</FormTextarea>
|
</FormTextarea>
|
||||||
<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>
|
<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>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts">
|
<script lang="ts" setup>
|
||||||
import { defineComponent } from 'vue';
|
import { computed, defineExpose, ref } from 'vue';
|
||||||
import JSON5 from 'json5';
|
import JSON5 from 'json5';
|
||||||
import FormTextarea from '@/components/form/textarea.vue';
|
import FormTextarea from '@/components/form/textarea.vue';
|
||||||
import FormSelect from '@/components/form/select.vue';
|
import FormSelect from '@/components/form/select.vue';
|
||||||
|
@ -35,61 +35,42 @@ import FormButton from '@/components/ui/button.vue';
|
||||||
import { Theme, builtinThemes } from '@/scripts/theme';
|
import { Theme, builtinThemes } from '@/scripts/theme';
|
||||||
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
import copyToClipboard from '@/scripts/copy-to-clipboard';
|
||||||
import * as os from '@/os';
|
import * as os from '@/os';
|
||||||
import { ColdDeviceStorage } from '@/store';
|
|
||||||
import { getThemes, removeTheme } from '@/theme-store';
|
import { getThemes, removeTheme } from '@/theme-store';
|
||||||
import * as symbols from '@/symbols';
|
import * as symbols from '@/symbols';
|
||||||
|
import { i18n } from '@/i18n';
|
||||||
|
|
||||||
export default defineComponent({
|
const installedThemes = ref(getThemes());
|
||||||
components: {
|
const selectedThemeId = ref(null);
|
||||||
FormTextarea,
|
|
||||||
FormSelect,
|
|
||||||
FormInput,
|
|
||||||
FormButton,
|
|
||||||
},
|
|
||||||
|
|
||||||
emits: ['info'],
|
const themes = computed(() => builtinThemes.concat(installedThemes.value));
|
||||||
|
|
||||||
data() {
|
const selectedTheme = computed(() => {
|
||||||
return {
|
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');
|
||||||
|
});
|
||||||
|
|
||||||
|
function copyThemeCode() {
|
||||||
|
copyToClipboard(selectedThemeCode.value);
|
||||||
|
os.success();
|
||||||
|
}
|
||||||
|
|
||||||
|
function uninstall() {
|
||||||
|
removeTheme(selectedTheme.value as Theme);
|
||||||
|
installedThemes.value = installedThemes.value.filter(t => t.id !== selectedThemeId.value);
|
||||||
|
selectedThemeId.value = null;
|
||||||
|
os.success();
|
||||||
|
}
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
[symbols.PAGE_INFO]: {
|
[symbols.PAGE_INFO]: {
|
||||||
title: this.$ts._theme.manage,
|
title: i18n.ts._theme.manage,
|
||||||
icon: 'fas fa-folder-open',
|
icon: 'fas fa-folder-open',
|
||||||
bg: 'var(--bg)',
|
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');
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
methods: {
|
|
||||||
copyThemeCode() {
|
|
||||||
copyToClipboard(this.selectedThemeCode);
|
|
||||||
os.success();
|
|
||||||
},
|
|
||||||
|
|
||||||
uninstall() {
|
|
||||||
removeTheme(this.selectedTheme);
|
|
||||||
this.installedThemes = this.installedThemes.filter(t => t.id !== this.selectedThemeId);
|
|
||||||
this.selectedThemeId = null;
|
|
||||||
os.success();
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue