mirror of
https://github.com/qier222/YesPlayMusic.git
synced 2025-02-28 20:28:55 +08:00
50 lines
1.4 KiB
TypeScript
50 lines
1.4 KiB
TypeScript
import { fetchUserAccount } from '@/web/api/user'
|
|
import { UserApiNames, FetchUserAccountResponse } from '@/shared/api/User'
|
|
import { CacheAPIs } from '@/shared/CacheAPIs'
|
|
import { IpcChannels } from '@/shared/IpcChannels'
|
|
import { useMutation, useQuery } from '@tanstack/react-query'
|
|
import { logout as logoutAPI } from '../auth'
|
|
import { removeAllCookies } from '@/web/utils/cookie'
|
|
import reactQueryClient from '@/web/utils/reactQueryClient'
|
|
|
|
export default function useUser() {
|
|
const key = [UserApiNames.FetchUserAccount]
|
|
return useQuery(
|
|
key,
|
|
async () => {
|
|
const existsQueryData = reactQueryClient.getQueryData(key)
|
|
if (!existsQueryData) {
|
|
window.ipcRenderer
|
|
?.invoke(IpcChannels.GetApiCache, {
|
|
api: CacheAPIs.UserAccount,
|
|
})
|
|
.then(cache => {
|
|
if (cache) reactQueryClient.setQueryData(key, cache)
|
|
})
|
|
}
|
|
|
|
return fetchUserAccount()
|
|
},
|
|
{
|
|
refetchOnWindowFocus: true,
|
|
}
|
|
)
|
|
}
|
|
|
|
export const useIsLoggedIn = () => {
|
|
const { data, isLoading } = useUser()
|
|
if (isLoading) return true
|
|
return !!data?.profile?.userId
|
|
}
|
|
|
|
export const logout = async () => {
|
|
await logoutAPI()
|
|
removeAllCookies()
|
|
await window.ipcRenderer?.invoke(IpcChannels.Logout)
|
|
await reactQueryClient.refetchQueries([UserApiNames.FetchUserAccount])
|
|
}
|
|
|
|
export const useMutationLogout = () => {
|
|
return useMutation(logout)
|
|
}
|