2020-11-25 13:31:34 +01:00
|
|
|
<template>
|
2022-01-02 13:35:23 +01:00
|
|
|
<div class="_formRoot">
|
|
|
|
<FormTextarea v-model="installThemeCode" class="_formBlock">
|
2022-01-28 03:39:49 +01:00
|
|
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
2022-01-02 13:35:23 +01:00
|
|
|
</FormTextarea>
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-02 13:35:23 +01:00
|
|
|
<div class="_formBlock" style="display: flex; gap: var(--margin); flex-wrap: wrap;">
|
2022-11-07 03:49:47 +01:00
|
|
|
<FormButton :disabled="installThemeCode == null" inline @click="() => preview(installThemeCode)"><i class="ph-eye-bold ph-lg"></i> {{ i18n.ts.preview }}</FormButton>
|
|
|
|
<FormButton :disabled="installThemeCode == null" primary inline @click="() => install(installThemeCode)"><i class="ph-check-bold ph-lg"></i> {{ i18n.ts.install }}</FormButton>
|
2022-01-02 13:35:23 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-25 13:31:34 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-05-01 15:51:07 +02:00
|
|
|
import JSON5 from 'json5';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import FormButton from '@/components/MkButton.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import { applyTheme, validateTheme } from '@/scripts/theme';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { addTheme, getThemes } from '@/theme-store';
|
2022-01-15 09:58:35 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
let installThemeCode = $ref(null);
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
function parseThemeCode(code: string) {
|
|
|
|
let theme;
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
try {
|
|
|
|
theme = JSON5.parse(code);
|
2022-05-26 15:53:09 +02:00
|
|
|
} catch (err) {
|
2022-01-15 09:58:35 +01:00
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts._theme.invalid,
|
2022-01-15 09:58:35 +01:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!validateTheme(theme)) {
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts._theme.invalid,
|
2022-01-15 09:58:35 +01:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (getThemes().some(t => t.id === theme.id)) {
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts._theme.alreadyInstalled,
|
2022-01-15 09:58:35 +01:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
return theme;
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
function preview(code: string): void {
|
|
|
|
const theme = parseThemeCode(code);
|
|
|
|
if (theme) applyTheme(theme, false);
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-01-15 09:58:35 +01:00
|
|
|
async function install(code: string): Promise<void> {
|
|
|
|
const theme = parseThemeCode(code);
|
|
|
|
if (!theme) return;
|
|
|
|
await addTheme(theme);
|
|
|
|
os.alert({
|
|
|
|
type: 'success',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.t('_theme.installed', { name: theme.name }),
|
2022-01-15 09:58:35 +01:00
|
|
|
});
|
|
|
|
}
|
2020-11-25 13:31:34 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts._theme.install,
|
2022-11-07 03:49:47 +01:00
|
|
|
icon: 'ph-download-simple-bold ph-lg',
|
2020-11-25 13:31:34 +01:00
|
|
|
});
|
|
|
|
</script>
|