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-13 18:11:05 +03:00
<template>
2023-01-06 06:40:17 +02:00
<div class="_gaps_m">
2023-01-05 14:04:56 +02:00
<FormInfo warn>{{ i18n.ts.customCssWarn }}</FormInfo>
2021-07-13 18:11:05 +03:00
2023-05-19 14:52:15 +03:00
<MkTextarea v-model="localCustomCss" manualSave tall class="_monospace" style="tab-size: 2;">
2022-01-04 10:58:53 +02:00
<template #label>CSS</template>
2023-01-07 08:09:46 +02:00
</MkTextarea>
2022-01-04 10:58:53 +02:00
</div>
2021-07-13 18:11:05 +03:00
</template>
<script lang="ts" setup>
import { ref, watch } from 'vue';
2023-01-07 08:09:46 +02:00
import MkTextarea from '@/components/MkTextarea.vue';
import FormInfo from '@/components/MkInfo.vue';
2023-09-19 10:37:43 +03: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 03:13:02 +02:00
const localCustomCss = ref(miLocalStorage.getItem('customCss') ?? '');
async function apply() {
2023-01-07 03:13:02 +02: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,
2023-09-30 22:53:52 +03:00
icon: 'ph-code ph-bold pg-lg',
2021-07-13 18:11:05 +03:00
});
</script>