2023-07-27 14:31:52 +09:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-25 21:31:34 +09:00
|
|
|
<template>
|
2023-01-06 13:40:17 +09:00
|
|
|
<div class="_gaps_m">
|
2023-12-16 13:18:12 +09:00
|
|
|
<MkCodeEditor v-model="installThemeCode" lang="json5">
|
2022-01-28 11:39:49 +09:00
|
|
|
<template #label>{{ i18n.ts._theme.code }}</template>
|
2023-12-16 13:18:12 +09:00
|
|
|
</MkCodeEditor>
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-01-06 09:41:14 +09:00
|
|
|
<div class="_buttons">
|
2023-11-01 03:33:24 +09:00
|
|
|
<MkButton :disabled="installThemeCode == null" inline @click="() => previewTheme(installThemeCode)"><i class="ph-eye ph-bold ph-lg"></i> {{ i18n.ts.preview }}</MkButton>
|
2023-10-01 04:53:52 +09:00
|
|
|
<MkButton :disabled="installThemeCode == null" primary inline @click="() => install(installThemeCode)"><i class="ph-check ph-bold ph-lg"></i> {{ i18n.ts.install }}</MkButton>
|
2022-01-02 21:35:23 +09:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-11-25 21:31:34 +09:00
|
|
|
</template>
|
|
|
|
|
2022-01-15 17:58:35 +09:00
|
|
|
<script lang="ts" setup>
|
2023-12-07 14:42:09 +09:00
|
|
|
import { ref, computed } from 'vue';
|
2023-12-16 13:18:12 +09:00
|
|
|
import MkCodeEditor from '@/components/MkCodeEditor.vue';
|
2023-01-06 09:41:14 +09:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-10-21 18:41:12 +09:00
|
|
|
import { parseThemeCode, previewTheme, installTheme } from '@/scripts/install-theme.js';
|
2023-09-19 16:37:43 +09:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-12-26 14:19:35 +09:00
|
|
|
const installThemeCode = ref<string | null>(null);
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-10-21 18:41:12 +09:00
|
|
|
async function install(code: string): Promise<void> {
|
2022-01-15 17:58:35 +09:00
|
|
|
try {
|
2023-10-21 18:41:12 +09:00
|
|
|
const theme = parseThemeCode(code);
|
|
|
|
await installTheme(code);
|
2022-01-15 17:58:35 +09:00
|
|
|
os.alert({
|
2023-10-21 18:41:12 +09:00
|
|
|
type: 'success',
|
|
|
|
text: i18n.t('_theme.installed', { name: theme.name }),
|
2022-01-15 17:58:35 +09:00
|
|
|
});
|
2023-10-21 18:41:12 +09:00
|
|
|
} catch (err) {
|
|
|
|
switch (err.message.toLowerCase()) {
|
|
|
|
case 'this theme is already installed':
|
|
|
|
os.alert({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts._theme.alreadyInstalled,
|
|
|
|
});
|
|
|
|
break;
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-10-21 18:41:12 +09:00
|
|
|
default:
|
|
|
|
os.alert({
|
|
|
|
type: 'error',
|
|
|
|
text: i18n.ts._theme.invalid,
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
console.error(err);
|
|
|
|
}
|
2022-01-15 17:58:35 +09:00
|
|
|
}
|
2020-11-25 21:31:34 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const headerActions = computed(() => []);
|
2022-06-20 17:38:49 +09:00
|
|
|
|
2023-12-07 14:42:09 +09:00
|
|
|
const headerTabs = computed(() => []);
|
2022-06-20 17:38:49 +09:00
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts._theme.install,
|
2023-10-01 04:53:52 +09:00
|
|
|
icon: 'ph-download ph-bold ph-lg',
|
2020-11-25 21:31:34 +09:00
|
|
|
});
|
|
|
|
</script>
|