xyyd-fatfox/src/user/useUserStore.ts

51 lines
1.0 KiB
TypeScript
Raw Normal View History

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-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-09-11 16:03:17 +08:00
watch(
token,
(val) => {
if (!val) return
request<UserInfo>('GET', '/api/profile').then((res) => {
2024-09-13 10:15:43 +08:00
Object.assign(profile, res)
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-11-08 15:36:31 +08:00
// profile.avatar = ''
2024-09-13 10:15:43 +08:00
}
2024-11-08 19:51:42 +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
})