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
|
|
|
|
2023-01-05 13:04:56 +01:00
|
|
|
<FormTextarea v-model="localCustomCss" manual-save tall class="_monospace" style="tab-size: 2;">
|
2022-01-04 09:58:53 +01:00
|
|
|
<template #label>CSS</template>
|
2021-07-13 17:11:05 +02:00
|
|
|
</FormTextarea>
|
2022-01-04 09:58:53 +01:00
|
|
|
</div>
|
2021-07-13 17:11:05 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-01 08:50:09 +02:00
|
|
|
<script lang="ts" setup>
|
2022-06-20 10:38:49 +02:00
|
|
|
import { ref, watch } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
2022-09-06 11:21:49 +02:00
|
|
|
import FormInfo from '@/components/MkInfo.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
2022-05-01 08:50:09 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2023-01-07 02:13:02 +01:00
|
|
|
import { miLocalStorage } from '@/local-storage';
|
2022-05-01 08:50:09 +02:00
|
|
|
|
2023-01-07 02:13:02 +01:00
|
|
|
const localCustomCss = ref(miLocalStorage.getItem('customCss') ?? '');
|
2022-05-01 08:50:09 +02:00
|
|
|
|
|
|
|
async function apply() {
|
2023-01-07 02:13:02 +01:00
|
|
|
miLocalStorage.setItem('customCss', localCustomCss.value);
|
2022-05-01 08:50:09 +02:00
|
|
|
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.reloadToApplySetting,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(localCustomCss, async () => {
|
|
|
|
await apply();
|
|
|
|
});
|
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.customCss,
|
2022-12-19 11:01:30 +01:00
|
|
|
icon: 'ti ti-code',
|
2021-07-13 17:11:05 +02:00
|
|
|
});
|
|
|
|
</script>
|