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

106 lines
2.4 KiB
Vue
Raw Normal View History

<template>
<FormBase>
<FormGroup>
2021-09-29 18:50:45 +03:00
<FormTextarea v-model="installThemeCode">
2020-12-26 03:47:36 +02:00
<span>{{ $ts._theme.code }}</span>
</FormTextarea>
2021-11-19 12:36:12 +02:00
<FormButton :disabled="installThemeCode == null" inline @click="() => preview(installThemeCode)"><i class="fas fa-eye"></i> {{ $ts.preview }}</FormButton>
</FormGroup>
2021-11-19 12:36:12 +02:00
<FormButton :disabled="installThemeCode == null" primary inline @click="() => install(installThemeCode)"><i class="fas fa-check"></i> {{ $ts.install }}</FormButton>
</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/form/textarea.vue';
import FormSelect from '@/components/form/select.vue';
import FormRadios from '@/components/form/radios.vue';
import FormBase from '@/components/debobigego/base.vue';
import FormGroup from '@/components/debobigego/group.vue';
import FormLink from '@/components/debobigego/link.vue';
import FormButton from '@/components/debobigego/button.vue';
import { applyTheme, validateTheme } from '@/scripts/theme';
import * as os from '@/os';
import { ColdDeviceStorage } from '@/store';
import { addTheme, getThemes } from '@/theme-store';
import * as symbols from '@/symbols';
export default defineComponent({
components: {
FormTextarea,
FormSelect,
FormRadios,
FormBase,
FormGroup,
FormLink,
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.install,
2021-09-29 18:50:45 +03:00
icon: 'fas fa-download',
bg: 'var(--bg)',
},
installThemeCode: null,
}
},
mounted() {
2021-04-10 06:54:12 +03:00
this.$emit('info', this[symbols.PAGE_INFO]);
},
methods: {
parseThemeCode(code) {
let theme;
try {
theme = JSON5.parse(code);
} catch (e) {
os.alert({
type: 'error',
2020-12-26 03:47:36 +02:00
text: this.$ts._theme.invalid
});
return false;
}
if (!validateTheme(theme)) {
os.alert({
type: 'error',
2020-12-26 03:47:36 +02:00
text: this.$ts._theme.invalid
});
return false;
}
if (getThemes().some(t => t.id === theme.id)) {
os.alert({
type: 'info',
2020-12-26 03:47:36 +02:00
text: this.$ts._theme.alreadyInstalled
});
return false;
}
return theme;
},
preview(code) {
const theme = this.parseThemeCode(code);
if (theme) applyTheme(theme, false);
},
async install(code) {
const theme = this.parseThemeCode(code);
if (!theme) return;
await addTheme(theme);
os.alert({
type: 'success',
text: this.$t('_theme.installed', { name: theme.name })
});
},
}
});
</script>