2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
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>
|
|
|
|
|
2022-05-01 09:50:09 +03:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 11:38:49 +03:00
|
|
|
import { ref, watch } from 'vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkTextarea from '@/components/MkTextarea.vue';
|
2022-09-06 12:21:49 +03:00
|
|
|
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';
|
2022-05-01 09:50:09 +03:00
|
|
|
|
2023-01-07 03:13:02 +02:00
|
|
|
const localCustomCss = ref(miLocalStorage.getItem('customCss') ?? '');
|
2022-05-01 09:50:09 +03:00
|
|
|
|
|
|
|
async function apply() {
|
2023-01-07 03:13:02 +02:00
|
|
|
miLocalStorage.setItem('customCss', localCustomCss.value);
|
2022-05-01 09:50:09 +03:00
|
|
|
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.reloadToApplySetting,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(localCustomCss, async () => {
|
|
|
|
await apply();
|
|
|
|
});
|
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.customCss,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-code',
|
2021-07-13 18:11:05 +03:00
|
|
|
});
|
|
|
|
</script>
|