sharkey/packages/frontend/src/pages/settings/custom-css.vue

53 lines
1.3 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2021-07-14 00:11:05 +09:00
<template>
2023-01-06 13:40:17 +09:00
<div class="_gaps_m">
2023-01-05 21:04:56 +09:00
<FormInfo warn>{{ i18n.ts.customCssWarn }}</FormInfo>
2021-07-14 00:11:05 +09:00
2023-05-19 20:52:15 +09:00
<MkTextarea v-model="localCustomCss" manualSave tall class="_monospace" style="tab-size: 2;">
2022-01-04 17:58:53 +09:00
<template #label>CSS</template>
2023-01-07 15:09:46 +09:00
</MkTextarea>
2022-01-04 17:58:53 +09:00
</div>
2021-07-14 00:11:05 +09:00
</template>
<script lang="ts" setup>
import { ref, watch } from 'vue';
2023-01-07 15:09:46 +09:00
import MkTextarea from '@/components/MkTextarea.vue';
import FormInfo from '@/components/MkInfo.vue';
2021-11-12 02:02:25 +09:00
import * as os from '@/os';
import { unisonReload } from '@/scripts/unison-reload';
import { i18n } from '@/i18n';
import { definePageMetadata } from '@/scripts/page-metadata';
2023-01-07 10:13:02 +09:00
import { miLocalStorage } from '@/local-storage';
2023-01-07 10:13:02 +09:00
const localCustomCss = ref(miLocalStorage.getItem('customCss') ?? '');
async function apply() {
2023-01-07 10:13:02 +09:00
miLocalStorage.setItem('customCss', localCustomCss.value);
const { canceled } = await os.confirm({
type: 'info',
text: i18n.ts.reloadToApplySetting,
});
if (canceled) return;
unisonReload();
}
watch(localCustomCss, async () => {
await apply();
});
const headerActions = $computed(() => []);
const headerTabs = $computed(() => []);
definePageMetadata({
title: i18n.ts.customCss,
icon: 'ti ti-code',
2021-07-14 00:11:05 +09:00
});
</script>