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

67 lines
1.8 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
<MkTextarea v-model="installThemeCode" code>
<template #label>{{ i18n.ts._theme.code }}</template>
2023-01-07 08:09:46 +02:00
</MkTextarea>
2023-01-06 02:41:14 +02:00
<div class="_buttons">
<MkButton :disabled="installThemeCode == null" inline @click="() => previewTheme(installThemeCode)"><i class="ti ti-eye"></i> {{ i18n.ts.preview }}</MkButton>
2023-01-06 02:41:14 +02:00
<MkButton :disabled="installThemeCode == null" primary inline @click="() => install(installThemeCode)"><i class="ti ti-check"></i> {{ i18n.ts.install }}</MkButton>
2022-01-02 14:35:23 +02:00
</div>
</div>
</template>
<script lang="ts" setup>
import { ref, computed } from 'vue';
2023-01-07 08:09:46 +02:00
import MkTextarea from '@/components/MkTextarea.vue';
2023-01-06 02:41:14 +02:00
import MkButton from '@/components/MkButton.vue';
import { parseThemeCode, previewTheme, installTheme } from '@/scripts/install-theme.js';
2023-09-19 10:37:43 +03:00
import * as os from '@/os.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
const installThemeCode = ref(null);
async function install(code: string): Promise<void> {
try {
const theme = parseThemeCode(code);
await installTheme(code);
os.alert({
type: 'success',
text: i18n.t('_theme.installed', { name: theme.name }),
});
} catch (err) {
switch (err.message.toLowerCase()) {
case 'this theme is already installed':
os.alert({
type: 'info',
text: i18n.ts._theme.alreadyInstalled,
});
break;
default:
os.alert({
type: 'error',
text: i18n.ts._theme.invalid,
});
break;
}
console.error(err);
}
}
const headerActions = computed(() => []);
const headerTabs = computed(() => []);
definePageMetadata({
title: i18n.ts._theme.install,
icon: 'ti ti-download',
});
</script>