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