mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
63 lines
1.3 KiB
TypeScript
63 lines
1.3 KiB
TypeScript
"use client";
|
|
import { create } from "zustand";
|
|
import { getJWT, removeJWT, fetchDataViaGet } from "#/api/utils";
|
|
import { ENDPOINTS } from "#/api/config";
|
|
|
|
interface userState {
|
|
_hasHydrated: boolean;
|
|
isAuth: boolean;
|
|
user: any | null;
|
|
token: string | null;
|
|
state: string;
|
|
login: (user: Object, token: string) => void;
|
|
logout: () => void;
|
|
checkAuth: () => void;
|
|
}
|
|
|
|
export const useUserStore = create<userState>((set, get) => ({
|
|
_hasHydrated: false,
|
|
isAuth: false,
|
|
user: null,
|
|
token: null,
|
|
state: "loading",
|
|
|
|
login: (user: Object, token: string) => {
|
|
set({
|
|
isAuth: true,
|
|
user: user,
|
|
token: token,
|
|
state: "finished",
|
|
_hasHydrated: true,
|
|
});
|
|
},
|
|
logout: () => {
|
|
set({
|
|
isAuth: false,
|
|
user: null,
|
|
token: null,
|
|
state: "finished",
|
|
_hasHydrated: true,
|
|
});
|
|
removeJWT();
|
|
},
|
|
checkAuth: () => {
|
|
const jwt = getJWT();
|
|
if (jwt) {
|
|
const _checkAuth = async () => {
|
|
const { data, error } = await fetchDataViaGet(
|
|
`${ENDPOINTS.user.profile}/${jwt.user_id}?token=${jwt.jwt}`
|
|
);
|
|
|
|
if (error || !data.is_my_profile) {
|
|
get().logout();
|
|
return;
|
|
}
|
|
|
|
get().login(data.profile, jwt.jwt);
|
|
};
|
|
_checkAuth();
|
|
} else {
|
|
get().logout();
|
|
}
|
|
},
|
|
}));
|