xyyd-fatfox/src/user/useUserStore.ts

152 lines
3.6 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-14 15:19:14 +08:00
import { computed, reactive, ref, 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
2024-11-14 15:19:14 +08:00
2024-11-13 19:51:52 +08:00
function areArraysEqualById(arr1: Block[], arr2: Block[]): boolean {
if (arr1.length !== arr2.length) {
return false;
}
// 将 arr2 转换为一个以 id 为键的映射
2024-11-14 15:19:14 +08:00
2024-11-13 19:51:52 +08:00
// 检查 arr1 中的每个 item 是否在 arr2 中存在,并且值是否相同
2024-11-14 15:19:14 +08:00
for (let i = 0; i < arr1.length; i++) {
console.log(arr1[i].id);
console.log(arr2[i].id);
if (arr1[i].id !== arr2[i].id) {
return false
2024-11-13 19:51:52 +08:00
}
}
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-11-14 15:19:14 +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) {
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-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-14 15:19:14 +08:00
if (!data) {
useRouterStore().replace('')
return
}
2024-11-12 18:30:13 +08:00
const remoteList = getLinkList(data)
const localList = getLinkList(layout.state)
2024-11-14 15:19:14 +08:00
remoteAddList.value = []
2024-11-12 18:30:13 +08:00
for (const item of remoteList) {
2024-11-14 15:19:14 +08:00
// if (!localList.some((el) => el.id !== item.id)) {
// // addList.push(item)
// remoteAddList.value.push(item)
// }
if (localList.findIndex(val => val.id === item.id) === -1) {
remoteAddList.value.push({ ...item })
2024-11-12 18:30:13 +08:00
}
}
2024-11-14 15:19:14 +08:00
if (remoteAddList.value.length > 0 || !areArraysEqualById(remoteList, localList)) {
2024-11-12 18:30:13 +08:00
// TODO: 交给张阳
2024-11-14 15:19:14 +08:00
// remoteAddList.value = addList
2024-11-13 19:51:52 +08:00
remoteData.value = data
2024-11-14 15:19:14 +08:00
2024-11-13 19:51:52 +08:00
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 = () => {
2024-11-14 15:19:14 +08:00
if (!remoteAddList.value) return
console.log({ ...remoteAddList.value });
remoteAddList.value.map(item => {
layout.state.content[layout.state.current].pages[layout.state.currentPage].list.push(item)
})
2024-11-13 19:51:52 +08:00
}
const coverageData = () => {
if (!remoteData.value) return
2024-11-14 15:19:14 +08:00
Object.assign(layout.state.content, remoteData.value.content)
Object.assign(layout.state.dock, remoteData.value.dock)
Object.assign(layout.state.dir, remoteData.value.dir)
2024-11-13 19:51:52 +08:00
}
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
})