fix(sth): 样式优化

This commit is contained in:
BTMuli
2023-03-22 19:34:03 +08:00
parent cff0d0a19a
commit 0de26a03ff
4 changed files with 244 additions and 60 deletions

View File

@@ -1,64 +1,78 @@
<template>
<div v-if="poolInfo == null || poolInfo.length === 0" class="loading-bar">
<div v-if="loading" class="loading-bar">
<v-progress-circular indeterminate color="primary" />
</div>
<div v-else class="pool-cards">
<v-card v-for="pool in poolInfo" style="margin-top: 20px">
<template v-slot:prepend>
<img
src="../assets/icons/note-wish-circle.svg"
alt="wish"
style="width: 32px; height: auto; margin-right: 10px; float: left"
/>
<v-card-title style="display: inline-block">{{ pool.title }}</v-card-title>
</template>
<!-- 卡池封面 -->
<v-row style="margin-left: 10px">
<img :src="pool.cover" alt="cover" style="height: 340px; width: auto; margin-top: 10px" />
<v-col style="margin: auto 10px">
<div v-for="character in pool.characters">
<!-- todo 点击事件不生效 -->
<img
:src="character.icon"
style="width: 80px; height: 80px"
alt="character"
@click="toOuter(character.url, pool.title)"
/>
</div>
</v-col>
</v-row>
<v-card-subtitle class="pt-4">{{ pool.subtitle }}</v-card-subtitle>
<!-- todo 样式美化 -->
<v-card-text>
<span style="width: 60%">
<v-icon>mdi-calendar-clock</v-icon>
{{ pool.time.start }}~{{ pool.time.end }}
</span>
<span style="width: 30%">
<div v-else>
<div v-if="empty">
<!-- todo 放个空白图 -->
</div>
<div v-else class="pool-cards">
<v-card v-for="pool in poolInfo" class="Home-card">
<template v-slot:prepend>
<v-img
:src="pool.voice.icon"
width="80px"
height="80px"
alt="voice"
style="display: inline-block"
/>
<v-card-title style="display: inline-block">{{ pool.title }}</v-card-title>
</template>
<template v-slot:append>
<audio :src="pool.voice.url" controls />
</span>
<v-img
:src="pool.voice.icon"
width="80px"
height="80px"
alt="voice"
style="padding-bottom: 20px; float: right"
/>
</v-card-text>
</v-card>
</template>
<!-- 卡池封面 -->
<v-row class="Home-pool">
<div class="Home-pool-cover" @click="toPost(pool.post_id)">
<img :src="pool.cover" alt="cover" />
</div>
<div class="Home-pool-character">
<div v-for="character in pool.characters" @click="toOuter(character.url, pool.title)">
<img :src="character.icon" class="Home-pool-icon" alt="character" />
</div>
<div class="Home-pool-clock">
<v-progress-circular
:model-value="timePass"
size="100"
color="blue-lighten-3"
width="10"
>
{{ timeGet }}
</v-progress-circular>
</div>
</div>
</v-row>
<v-card-subtitle class="pt-4">{{ pool.subtitle }}</v-card-subtitle>
<v-card-text>
<span style="width: 60%">
<v-icon>mdi-calendar-clock</v-icon>
{{ pool.time.start }}~{{ pool.time.end }}
</span>
</v-card-text>
</v-card>
</div>
</div>
</template>
<script lang="ts" setup>
import { onMounted, ref } from "vue";
import { http } from "@tauri-apps/api";
import useAppStore from "../store/modules/app";
import { fs, http } from "@tauri-apps/api";
import { createTGWindow } from "../utils/TGWindow";
import { ResponseGachaPool, ResponsePost, MysPostApi, MysGachaInfo } from "../interface/MysPost";
import {
ResponseGachaPool,
ResponsePost,
MysPostApi,
MysGachaInfo,
MysPostType,
} from "../interface/MysPost";
import { parseMys } from "../utils/MysParse";
interface GachaPool {
title: string;
subtitle: string;
cover: string;
post_id: string;
characters: {
icon: string;
url: string;
@@ -73,7 +87,13 @@ interface GachaPool {
};
}
const appStore = useAppStore();
const renderMode = ref(appStore.structureRender);
const poolInfo = ref([] as GachaPool[]);
const loading = ref(true);
const empty = ref(false);
const timeGet = ref("");
const timePass = ref(0);
onMounted(async () => {
const responseGachaPool = await http
@@ -86,9 +106,17 @@ onMounted(async () => {
.then(response => {
return response.data.data.list;
});
// 如果没有卡池信息则不进行后续操作
if (responseGachaPool.length === 0) {
loading.value = false;
empty.value = true;
return;
}
empty.value = false;
responseGachaPool.map(async gachaPool => {
// 获取卡池 article post_id
const post_id = gachaPool.activity_url.split("/").pop();
if (!post_id) return;
const gachaCover = await http
.fetch<ResponsePost>(MysPostApi + post_id, {
method: "GET",
@@ -102,6 +130,7 @@ onMounted(async () => {
poolInfo.value.push({
title: gachaPool.title,
subtitle: gachaPool.content_before_act,
post_id: post_id,
cover: gachaCover,
characters: gachaPool.pool.map(character => ({
icon: character.icon,
@@ -116,11 +145,58 @@ onMounted(async () => {
end: gachaPool.end_time,
},
});
getTimeNow(gachaPool.start_time, gachaPool.end_time);
setInterval(() => {
loading.value = false;
}, 1000);
});
});
function getTimeNow(start_time: string, end_time: string) {
setInterval(() => {
const start = new Date(start_time);
const now = new Date();
const end = new Date(end_time);
const time = end.getTime() - now.getTime();
// 截断,取 0.000%
timePass.value = (time / (end.getTime() - start.getTime())) * 100;
const hour = Math.floor(time / 1000 / 60 / 60);
const minute = Math.floor((time / 1000 / 60 / 60 - hour) * 60);
const second = Math.floor(((time / 1000 / 60 / 60 - hour) * 60 - minute) * 60);
timeGet.value = `${hour}:${minute.toFixed(0).padStart(2, "0")}:${second
.toFixed(0)
.padStart(2, "0")}`;
}, 1000);
}
function toOuter(url: string, title: string) {
createTGWindow(url, title, title, 960, 720, true);
createTGWindow(url, "祈愿", title, 1200, 800, true);
}
async function toPost(post_id: string) {
// 获取帖子内容
const post: MysPostType = await http
.fetch(`${MysPostApi}${post_id}`, {
method: "GET",
headers: {
referer: `https://bbs.mihoyo.com/ys/article/${post_id}`,
},
})
.then(res => {
return res.data as Promise<ResponsePost>;
})
.then(res => {
return res.data.post.post;
});
// 结构化渲染
const parseDoc = parseMys(post.structured_content);
// 将解析后的 doc 保存到 文件
await fs.writeTextFile(
`${appStore.dataPath.temp}\\${post_id}_home.html`,
parseDoc.documentElement.outerHTML
);
const postUrl = `file:\\\\\\${appStore.dataPath.temp}\\${post.post_id}_home.html`;
createTGWindow(postUrl, "祈愿卡池", post.subject, 960, 720, false);
}
</script>
@@ -128,7 +204,56 @@ function toOuter(url: string, title: string) {
.pool-cards {
font-family: Genshin, serif;
display: flex;
flex-direction: column;
flex-direction: row;
align-items: center;
}
.Home-card {
margin: 10px;
}
.Home-pool {
margin-left: 10px;
}
.Home-pool-cover {
width: 690px;
height: auto;
margin-bottom: 10px;
overflow: hidden;
}
.Home-pool-cover img {
transition: all 0.5s;
}
.Home-pool-cover :hover {
cursor: pointer;
transform: scale(1.1);
transition: all 0.5s;
}
.Home-pool-character {
width: 100%;
height: 80px;
display: flex;
}
.Home-pool-icon {
width: 80px;
height: 80px;
margin: 0 10px;
}
.Home-pool-character :hover .Home-pool-icon {
cursor: pointer;
}
.Home-pool-clock {
width: auto;
margin-left: 120px;
float: right;
font-size: small;
height: 80px;
}
</style>