2024-11-12 18:30:13 +08:00
|
|
|
import type { Block, Layout } from '@/layout/layout.types'
|
|
|
|
import useLayoutStore from '@/layout/useLayoutStore'
|
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-09-13 10:15:43 +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
|
|
|
|
|
|
|
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-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') || '')
|
|
|
|
watch(token, (val) => {
|
|
|
|
localStorage.setItem('token', val)
|
|
|
|
})
|
2024-11-12 18:09:34 +08:00
|
|
|
const profile = reactive({ ...defaultUserInfo })
|
2024-11-12 18:30:13 +08:00
|
|
|
const layout = useLayoutStore()
|
2024-09-11 16:03:17 +08:00
|
|
|
watch(
|
|
|
|
token,
|
2024-11-12 18:30:13 +08:00
|
|
|
async (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)
|
|
|
|
const data = await request<Layout>('GET', '/api/backup')
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (addList.length > 0) {
|
|
|
|
// TODO: 交给张阳
|
|
|
|
}
|
2024-09-11 16:03:17 +08:00
|
|
|
},
|
|
|
|
{ immediate: true }
|
|
|
|
)
|
2024-09-13 10:15:43 +08:00
|
|
|
const isLogin = computed(() => !!token.value && !!profile.id)
|
|
|
|
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-09-11 16:03:17 +08:00
|
|
|
return {
|
|
|
|
token,
|
|
|
|
profile,
|
2024-09-13 10:15:43 +08:00
|
|
|
isLogin,
|
|
|
|
logout
|
2024-09-11 16:03:17 +08:00
|
|
|
}
|
2024-09-09 17:53:07 +08:00
|
|
|
})
|