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

53 lines
1.2 KiB
Vue
Raw Normal View History

<!--
SPDX-FileCopyrightText: syuilo and other misskey contributors
SPDX-License-Identifier: AGPL-3.0-only
-->
2021-07-13 17:11:05 +02:00
<template>
2023-01-06 05:40:17 +01:00
<div class="_gaps_m">
2023-01-05 13:04:56 +01:00
<FormInfo warn>{{ i18n.ts.customCssWarn }}</FormInfo>
2021-07-13 17:11:05 +02:00
<MkCodeEditor v-model="localCustomCss" manualSave lang="css">
2022-01-04 09:58:53 +01:00
<template #label>CSS</template>
</MkCodeEditor>
2022-01-04 09:58:53 +01:00
</div>
2021-07-13 17:11:05 +02:00
</template>
<script lang="ts" setup>
import { ref, watch, computed } from 'vue';
import MkCodeEditor from '@/components/MkCodeEditor.vue';
import FormInfo from '@/components/MkInfo.vue';
2023-09-19 09:37:43 +02:00
import * as os from '@/os.js';
import { unisonReload } from '@/scripts/unison-reload.js';
import { i18n } from '@/i18n.js';
import { definePageMetadata } from '@/scripts/page-metadata.js';
import { miLocalStorage } from '@/local-storage.js';
2023-01-07 02:13:02 +01:00
const localCustomCss = ref(miLocalStorage.getItem('customCss') ?? '');
async function apply() {
2023-01-07 02:13:02 +01: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-13 17:11:05 +02:00
});
</script>