make "You" button in navbar show up w/o refreshing page
Some checks failed
deploy / deploy (push) Has been cancelled

This commit is contained in:
Lee
2023-10-21 22:25:41 +01:00
parent 70c5109417
commit aeeaa523f9
4 changed files with 33 additions and 22 deletions

View File

@ -2,7 +2,7 @@
import { getPlayerInfo } from "@/utils/scoresaber/api";
import { create } from "zustand";
import { persist } from "zustand/middleware";
import { createJSONStorage, persist } from "zustand/middleware";
interface SettingsStore {
userId: string | undefined;
@ -10,6 +10,7 @@ interface SettingsStore {
setUserId: (userId: string) => void;
setProfilePicture: (profilePicture: string) => void;
refreshProfile: () => void;
}
export const useSettingsStore = create<SettingsStore>()(
@ -22,26 +23,25 @@ export const useSettingsStore = create<SettingsStore>()(
set({ userId });
},
setProfilePicture: (profilePicture: string) => set({ profilePicture }),
async refreshProfile() {
const id = useSettingsStore.getState().userId;
if (!id) return;
const profile = await getPlayerInfo(id);
if (profile == undefined || profile == null) return;
useSettingsStore.setState({
userId: profile.id,
profilePicture: profile.profilePicture,
});
console.log("Updated profile:", profile.id);
},
}),
{
name: "settings",
getStorage: () => localStorage,
storage: createJSONStorage(() => localStorage),
},
),
);
async function refreshProfile() {
const id = useSettingsStore.getState().userId;
if (!id) return;
const profile = await getPlayerInfo(id);
if (profile == undefined || profile == null) return;
useSettingsStore.setState({
userId: profile.id,
profilePicture: profile.profilePicture,
});
console.log("Updated profile:", profile.id);
}
refreshProfile();
useSettingsStore.getState().refreshProfile();