mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix?: rerender when auth check finished
This commit is contained in:
parent
e548ce060d
commit
8bab85ddc1
1 changed files with 11 additions and 8 deletions
|
@ -23,17 +23,20 @@ export const useUserStore = create<userState>((set, get) => ({
|
|||
set({ isAuth: false, user: null, token: null });
|
||||
removeJWT();
|
||||
},
|
||||
checkAuth: async () => {
|
||||
checkAuth: () => {
|
||||
const jwt = getJWT();
|
||||
if (jwt) {
|
||||
const data = await fetchDataViaGet(
|
||||
`/api/profile/${jwt.user_id}?token=${jwt.jwt}`
|
||||
);
|
||||
if (data && data.is_my_profile) {
|
||||
get().login(data.profile, jwt.jwt);
|
||||
} else {
|
||||
get().logout();
|
||||
const _checkAuth = async () => {
|
||||
const data = await fetchDataViaGet(
|
||||
`/api/profile/${jwt.user_id}?token=${jwt.jwt}`
|
||||
);
|
||||
if (data && data.is_my_profile) {
|
||||
get().login(data.profile, jwt.jwt);
|
||||
} else {
|
||||
get().logout();
|
||||
}
|
||||
}
|
||||
_checkAuth()
|
||||
} else {
|
||||
get().logout();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue