added friend removing and updated fetching scores notice
All checks were successful
deploy / deploy (push) Successful in 56s

This commit is contained in:
Lee
2023-10-23 11:25:20 +01:00
parent 26a4d3ef2a
commit 74a6ef945c
4 changed files with 68 additions and 23 deletions

View File

@ -57,6 +57,13 @@ interface ScoreSaberScoresStore {
message: string;
}>;
/**
* Removes a player and clears their scores from the local database
*
* @param playerId the player id
*/
removePlayer: (playerId: string) => void;
/**
* Refreshes the player scores and adds any new scores to the local database
*/
@ -135,15 +142,15 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
console.log("Scanning page", page, "for", playerId);
if (newScores?.scores.length == 0 || newScores == undefined) break;
// Call the callback if it exists
callback?.(page, newScores.pageInfo.totalPages);
for (const score of newScores.scores) {
if (score.score.id == mostRecentScoreId) {
search = false;
break;
}
// Call the callback if it exists
callback?.(page, newScores.pageInfo.totalPages);
if (mostRecentScoreId) {
// remove the old score
const oldScoreIndex = oldScores.findIndex(
@ -210,6 +217,12 @@ export const useScoresaberScoresStore = create<ScoreSaberScoresStore>()(
};
},
removePlayer: (playerId: string) => {
let players: Player[] = get().players;
players = players.filter((player) => player.id != playerId);
set({ players });
},
updatePlayerScores: async () => {
const players = get().players;
const friends = useSettingsStore.getState().friends;

View File

@ -6,6 +6,7 @@ import { ScoreSaberAPI } from "@/utils/scoresaber/api";
import { create } from "zustand";
import { createJSONStorage, persist } from "zustand/middleware";
import { IDBStorage } from "./IndexedDBStorage";
import { useScoresaberScoresStore } from "./scoresaberScoresStore";
interface SettingsStore {
player: ScoresaberPlayer | undefined;
@ -54,6 +55,8 @@ export const useSettingsStore = create<SettingsStore>()(
removeFriend: (friendId: string) => {
const friends = get().friends;
useScoresaberScoresStore.getState().removePlayer(friendId);
set({ friends: friends.filter((friend) => friend.id != friendId) });
return friendId;