xyyd-fatfox/src/user/useUserStore.ts

136 lines
3.3 KiB
TypeScript
Raw Normal View History

2024-11-12 18:30:13 +08:00
import type { Block, Layout } from '@/layout/layout.types'
import useLayoutStore from '@/layout/useLayoutStore'
2024-11-13 19:51:52 +08:00
import useRouterStore from '@/useRouterStore'
2024-09-11 16:03:17 +08:00
import request from '@/utils/request'
2024-09-09 17:53:07 +08:00
import { defineStore } from 'pinia'
2024-11-13 19:51:52 +08:00
import { computed, reactive, ref, toRefs, watch } from 'vue'
2024-09-11 16:03:17 +08:00
interface UserInfo {
id: string
username: string
gender: number
birthday: string
avatar: string
openId: string
}
2024-09-13 10:15:43 +08:00
const defaultUserInfo: UserInfo = {
id: '',
username: '',
gender: 0,
birthday: '',
avatar: '',
openId: ''
}
2024-11-12 18:30:13 +08:00
function getLinkList(data: Layout) {
const list = [] as Block[]
for (const mode of data.content) {
for (const page of mode.pages) {
for (const item of page.list) {
if (!item.link || item.link.startsWith('id:')) break
list.push(item)
}
}
}
for (const item of data.dock) {
if (item) list.push(item)
}
for (const dirItem of Object.values(data.dir)) {
for (const item of dirItem.list) {
list.push(item)
}
}
return list
}
2024-11-13 19:51:52 +08:00
function areArraysEqualById(arr1: Block[], arr2: Block[]): boolean {
if (arr1.length !== arr2.length) {
return false;
}
// 将 arr2 转换为一个以 id 为键的映射
const arr2Map = new Map(arr2.map(item => [item.id, item]));
// 检查 arr1 中的每个 item 是否在 arr2 中存在,并且值是否相同
for (const item1 of arr1) {
const item2 = arr2Map.get(item1.id);
if (!item2 || JSON.stringify(item1) !== JSON.stringify(item2)) {
return false;
}
}
return true;
}
2024-11-12 18:30:13 +08:00
2024-09-09 17:53:07 +08:00
export default defineStore('user', () => {
2024-09-11 16:03:17 +08:00
const token = ref(localStorage.getItem('token') || '')
2024-11-13 19:51:52 +08:00
const remoteData = ref<Layout | null>(null)
const remoteAddList = ref<Block[]>([])
2024-11-12 18:09:34 +08:00
const profile = reactive({ ...defaultUserInfo })
2024-11-12 18:30:13 +08:00
const layout = useLayoutStore()
2024-11-13 19:51:52 +08:00
const isLogin = computed(() => !!token.value && !!profile.id)
2024-09-11 16:03:17 +08:00
watch(
token,
2024-11-12 18:30:13 +08:00
async (val) => {
2024-11-13 19:51:52 +08:00
localStorage.setItem('token', val)
2024-09-11 16:03:17 +08:00
if (!val) return
2024-11-12 18:30:13 +08:00
const res = await request<UserInfo>('GET', '/api/profile')
Object.assign(profile, res)
2024-11-13 19:51:52 +08:00
},
{ immediate: true }
)
watch(
token,
async (val) => {
if (!val) return
console.log(val);
2024-11-12 18:30:13 +08:00
const data = await request<Layout>('GET', '/api/backup')
2024-11-13 19:51:52 +08:00
if (!data) return
2024-11-12 18:30:13 +08:00
const remoteList = getLinkList(data)
const localList = getLinkList(layout.state)
const addList: Block[] = []
for (const item of remoteList) {
if (!localList.some((el) => el.id !== item.id)) {
addList.push(item)
}
}
2024-11-13 19:51:52 +08:00
if (addList.length > 0 || areArraysEqualById(remoteList, localList) || (remoteList.length !== localList.length)) {
2024-11-12 18:30:13 +08:00
// TODO: 交给张阳
2024-11-13 19:51:52 +08:00
remoteAddList.value = addList
remoteData.value = data
useRouterStore().go('global-backup')
2024-11-12 18:30:13 +08:00
}
2024-09-11 16:03:17 +08:00
},
)
2024-09-13 10:15:43 +08:00
const logout = () => {
token.value = ''
2024-11-12 18:09:34 +08:00
Object.assign(profile, { ...defaultUserInfo })
2024-09-13 10:15:43 +08:00
}
2024-11-13 19:51:52 +08:00
const comineData = () => {
if (!remoteData.value) return
Object.assign(layout.state.content[layout.state.currentPage].pages, remoteAddList.value)
}
const coverageData = () => {
if (!remoteData.value) return
console.log({ ...layout.state });
console.log({ ...remoteData.value });
Object.assign(layout.state, remoteData.value)
}
2024-09-11 16:03:17 +08:00
return {
token,
profile,
2024-09-13 10:15:43 +08:00
isLogin,
2024-11-13 19:51:52 +08:00
logout,
coverageData,
comineData
2024-09-11 16:03:17 +08:00
}
2024-09-09 17:53:07 +08:00
})