55 lines
1.6 KiB
Vue
55 lines
1.6 KiB
Vue
<script setup lang="ts">
|
|
import { onMounted, watch } from 'vue'
|
|
import TitleBar from './components/TitleBar.vue'
|
|
import NavRail from './components/NavRail.vue'
|
|
import ToastNotification from './components/ToastNotification.vue'
|
|
import { useSettingsStore } from './stores/settings'
|
|
|
|
const settingsStore = useSettingsStore()
|
|
|
|
function applyTheme() {
|
|
const el = document.documentElement
|
|
const mode = settingsStore.settings.theme_mode || 'dark'
|
|
const accent = settingsStore.settings.accent_color || 'amber'
|
|
|
|
if (mode === 'system') {
|
|
const prefersDark = window.matchMedia('(prefers-color-scheme: dark)').matches
|
|
el.setAttribute('data-theme', prefersDark ? 'dark' : 'light')
|
|
} else {
|
|
el.setAttribute('data-theme', mode)
|
|
}
|
|
el.setAttribute('data-accent', accent)
|
|
}
|
|
|
|
onMounted(async () => {
|
|
await settingsStore.fetchSettings()
|
|
const zoom = parseInt(settingsStore.settings.ui_zoom) || 100
|
|
const app = document.getElementById('app')
|
|
if (app) {
|
|
(app.style as any).zoom = `${zoom}%`
|
|
}
|
|
applyTheme()
|
|
|
|
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {
|
|
if (settingsStore.settings.theme_mode === 'system') applyTheme()
|
|
})
|
|
})
|
|
|
|
watch(() => [settingsStore.settings.theme_mode, settingsStore.settings.accent_color], () => {
|
|
applyTheme()
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full w-full flex flex-col bg-bg-base">
|
|
<TitleBar />
|
|
<div class="flex-1 flex overflow-hidden">
|
|
<NavRail />
|
|
<main class="flex-1 overflow-auto">
|
|
<router-view />
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<ToastNotification />
|
|
</template>
|