mirror of
https://github.com/BTMuli/TeyvatGuide.git
synced 2025-12-12 09:18:14 +08:00
149 lines
3.7 KiB
Vue
149 lines
3.7 KiB
Vue
<template>
|
|
<div class="tbc-box" data-html2canvas-ignore>
|
|
<div class="tbc-btn" @click="switchCollect()" :title="isCollected ? '取消收藏' : '收藏'">
|
|
<v-icon :color="isCollected ? 'yellow' : 'inherit'">
|
|
{{ isCollected ? "mdi-star" : "mdi-star-outline" }}
|
|
</v-icon>
|
|
</div>
|
|
<div class="tbc-edit" title="编辑收藏" v-if="isCollected" @click="editCollect()">
|
|
<v-icon size="small">mdi-pencil</v-icon>
|
|
</div>
|
|
</div>
|
|
<ToPostCollect v-model="showEdit" :post="props.data" @submit="refresh()" />
|
|
</template>
|
|
<script lang="ts" setup>
|
|
import { event } from "@tauri-apps/api";
|
|
import { onBeforeMount, ref, watch } from "vue";
|
|
|
|
import TSUserCollection from "../../plugins/Sqlite/modules/userCollect.js";
|
|
import TGLogger from "../../utils/TGLogger.js";
|
|
import showConfirm from "../func/confirm.js";
|
|
import showSnackbar from "../func/snackbar.js";
|
|
import ToPostCollect from "../overlay/to-postCollect.vue";
|
|
|
|
const isCollected = ref(false);
|
|
const collect = ref<Array<TGApp.Sqlite.UserCollection.UFMap>>([]);
|
|
const showEdit = ref(false);
|
|
|
|
interface TbCollectProps {
|
|
modelValue: number;
|
|
data: TGApp.Plugins.Mys.Post.FullData | undefined;
|
|
}
|
|
|
|
const props = defineProps<TbCollectProps>();
|
|
|
|
onBeforeMount(async () => await refresh());
|
|
|
|
async function refresh(): Promise<void> {
|
|
await event.emit("refreshCollect");
|
|
const check = await TSUserCollection.getPostCollect(props.modelValue.toString());
|
|
if (typeof check === "boolean") {
|
|
isCollected.value = check;
|
|
collect.value = [];
|
|
return;
|
|
}
|
|
isCollected.value = true;
|
|
collect.value = check;
|
|
}
|
|
|
|
function editCollect(): void {
|
|
if (showEdit.value) {
|
|
showEdit.value = false;
|
|
}
|
|
showEdit.value = true;
|
|
}
|
|
|
|
watch(
|
|
() => props.data,
|
|
async (val) => {
|
|
if (val === undefined) return;
|
|
if (!isCollected.value) return;
|
|
const res = await TSUserCollection.updatePostInfo(props.modelValue.toString(), val);
|
|
await event.emit("refreshCollect");
|
|
if (!res) {
|
|
showSnackbar({
|
|
text: "更新帖子信息失败,数据库中不存在帖子信息!",
|
|
color: "error",
|
|
});
|
|
return;
|
|
}
|
|
showSnackbar({
|
|
text: "已更新帖子信息",
|
|
color: "success",
|
|
});
|
|
await TGLogger.Info(`[TbCollect] 更新帖子信息:${props.modelValue.toString()}`);
|
|
},
|
|
);
|
|
|
|
async function switchCollect(): Promise<void> {
|
|
if (!isCollected.value) {
|
|
if (props.data === undefined) {
|
|
showSnackbar({
|
|
text: "未获取到帖子信息",
|
|
color: "error",
|
|
});
|
|
return;
|
|
}
|
|
await TSUserCollection.addCollect(props.modelValue.toString(), props.data);
|
|
await event.emit("refreshCollect");
|
|
isCollected.value = true;
|
|
showSnackbar({
|
|
text: "收藏成功",
|
|
color: "success",
|
|
});
|
|
return;
|
|
}
|
|
if (collect.value.length > 1) {
|
|
const check = await showConfirm({
|
|
title: "确定取消收藏?",
|
|
text: "该帖子有多个收藏分类,是否全部取消?",
|
|
});
|
|
if (!check) {
|
|
return;
|
|
}
|
|
}
|
|
await TSUserCollection.deletePostCollect(props.modelValue.toString(), true);
|
|
await event.emit("refreshCollect");
|
|
isCollected.value = false;
|
|
showSnackbar({
|
|
text: "取消收藏成功",
|
|
color: "success",
|
|
});
|
|
}
|
|
</script>
|
|
<style lang="css" scoped>
|
|
.tbc-box {
|
|
position: fixed;
|
|
top: 70px;
|
|
right: 20px;
|
|
border: 2px solid var(--common-shadow-8);
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
|
|
:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|
|
|
|
.tbc-btn {
|
|
display: flex;
|
|
width: 24px;
|
|
height: 24px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 5px;
|
|
}
|
|
|
|
.tbc-edit {
|
|
position: absolute;
|
|
right: -10px;
|
|
bottom: -10px;
|
|
display: flex;
|
|
width: 20px;
|
|
height: 20px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
</style>
|