2021-07-13 17:11:05 +02:00
|
|
|
<template>
|
2022-01-04 09:58:53 +01:00
|
|
|
<div class="_formRoot">
|
2022-05-01 08:50:09 +02:00
|
|
|
<FormInfo warn class="_formBlock">{{ i18n.ts.customCssWarn }}</FormInfo>
|
2021-07-13 17:11:05 +02:00
|
|
|
|
2022-01-04 09:58:53 +01:00
|
|
|
<FormTextarea v-model="localCustomCss" manual-save tall class="_monospace _formBlock" style="tab-size: 2;">
|
|
|
|
<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>
|
|
|
|
import { defineExpose, ref, watch } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormTextarea from '@/components/form/textarea.vue';
|
2022-01-04 09:58:53 +01:00
|
|
|
import FormInfo from '@/components/ui/info.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { unisonReload } from '@/scripts/unison-reload';
|
|
|
|
import * as symbols from '@/symbols';
|
2022-05-01 08:50:09 +02:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
const localCustomCss = ref(localStorage.getItem('customCss') ?? '');
|
|
|
|
|
|
|
|
async function apply() {
|
|
|
|
localStorage.setItem('customCss', localCustomCss.value);
|
|
|
|
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.ts.reloadToApplySetting,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
|
|
|
|
unisonReload();
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(localCustomCss, async () => {
|
|
|
|
await apply();
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.ts.customCss,
|
|
|
|
icon: 'fas fa-code',
|
|
|
|
bg: 'var(--bg)',
|
2021-07-13 17:11:05 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|