Files
TeyvatGuide/src/App.vue
2023-04-25 16:08:35 +08:00

91 lines
2.4 KiB
Vue

<template>
<div v-if="isMain">
<v-layout>
<!-- 侧边栏菜单 -->
<TSidebar />
<!-- 主体内容 -->
<v-main class="app-main">
<v-container fluid>
<router-view />
</v-container>
</v-main>
</v-layout>
</div>
<div v-else>
<v-layout>
<!-- 主体内容 -->
<v-main class="app-main">
<v-container fluid>
<router-view />
</v-container>
</v-main>
</v-layout>
</div>
<TBackTop />
</template>
<script lang="ts" setup>
// vue
import { onMounted, ref } from "vue";
import TSidebar from "./components/t-sidebar.vue";
import TBackTop from "./components/t-backTop.vue";
// tauri
import { fs, window, app, event } from "@tauri-apps/api";
// store
import { useAppStore } from "./store/modules/app";
const appStore = useAppStore();
const isMain = ref(true as boolean);
const theme = ref(appStore.theme as string);
onMounted(async () => {
// 获取当前主题
document.documentElement.className = theme.value;
await listenOnTheme();
// 获取当前窗口
const win = window.getCurrent();
isMain.value = win.label === "tauri-genshin";
if (isMain.value) {
const title = "Tauri.Genshin v" + (await app.getVersion()) + " Alpha";
await win.setTitle(title);
await checkLoad();
}
});
// 监听主题变化
async function listenOnTheme () {
await event.listen("readTheme", (e) => {
const themeGet = e.payload as string;
if (theme.value !== themeGet) {
theme.value = themeGet;
document.documentElement.className = theme.value;
}
});
}
async function checkLoad () {
if (appStore.loading) {
console.info("数据已加载!");
return;
}
await createDataDir();
appStore.loading = true;
console.info("数据加载完成!");
}
// 创建数据文件夹
async function createDataDir () {
console.info("开始创建数据文件夹...");
// 如果不存在则创建
if (!await fs.exists("userData", { dir: fs.BaseDirectory.AppLocalData })) { await fs.createDir("userData", { dir: fs.BaseDirectory.AppLocalData, recursive: true }); }
if (!await fs.exists("tempData", { dir: fs.BaseDirectory.AppLocalData })) { await fs.createDir("tempData", { dir: fs.BaseDirectory.AppLocalData, recursive: true }); }
console.info("数据文件夹创建完成!");
}
</script>
<style lang="css">
.app-main {
min-height: 100vh;
background: var(--page-bg);
backdrop-filter: blur(20px);
}
</style>