xyyd-fatfox/src/user/useUserStore.ts

44 lines
894 B
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-11 16:03:17 +08:00
import { computed, ref, watch } from 'vue'
interface UserInfo {
id: string
username: string
created: string
vipUntil: string
gender: number
birthday: string
brief: string
email: string
password: string
type: string
updated: string
avatar: string
openId: string
}
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)
})
const profile = ref<null | UserInfo>(null)
watch(
token,
(val) => {
if (!val) return
request<UserInfo>('GET', '/api/profile').then((res) => {
profile.value = res
})
},
{ immediate: true }
)
const isLogin = computed(() => !!token.value && !!profile.value)
return {
token,
profile,
isLogin
}
2024-09-09 17:53:07 +08:00
})