add top scores page
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Successful in 46s
Deploy Website / docker (ubuntu-latest) (push) Failing after 1m31s

This commit is contained in:
Lee
2024-10-28 13:18:40 +00:00
parent 0a5d42f6ac
commit f52b62ba83
11 changed files with 213 additions and 15 deletions

View File

@ -14,6 +14,12 @@ export class Player {
@prop()
public _id!: string;
/**
* The player's name.
*/
@prop()
public name?: string;
/**
* The player's statistic history.
*/

View File

@ -1,4 +1,4 @@
import { getModelForClass, modelOptions, plugin, Prop, ReturnModelType, Severity } from "@typegoose/typegoose";
import { getModelForClass, index, modelOptions, plugin, Prop, ReturnModelType, Severity } from "@typegoose/typegoose";
import Score from "../score";
import { type ScoreSaberLeaderboardPlayerInfoToken } from "../../../types/token/scoresaber/score-saber-leaderboard-player-info-token";
import { Document } from "mongoose";
@ -20,6 +20,7 @@ import { PreviousScore } from "../previous-score";
},
},
})
@index({ leaderboardId: 1, playerId: 1, timestamp: -1 }) // Compound index for optimized queries
@plugin(AutoIncrementID, {
field: "_id",
startAt: 1,
@ -44,7 +45,7 @@ export class ScoreSaberScoreInternal extends Score {
* The amount of pp for the score.
* @private
*/
@Prop({ required: true })
@Prop({ required: true, index: true })
public pp!: number;
/**

View File

@ -95,7 +95,7 @@ export default class Score {
* The time the score was set.
* @private
*/
@prop({ required: true })
@prop({ required: true, index: true })
public readonly timestamp!: Date;
}

View File

@ -0,0 +1,10 @@
import { ScoreSaberLeaderboard } from "src/model/leaderboard/impl/scoresaber-leaderboard";
import { ScoreSaberScore } from "../model/score/impl/scoresaber-score";
import { PlayerScore } from "../score/player-score";
export type TopScoresResponse = {
/**
* The top scores.
*/
scores: PlayerScore<ScoreSaberScore, ScoreSaberLeaderboard>[];
};

View File

@ -1,8 +1,8 @@
export type ScoreSaberLeaderboardPlayerInfoToken = {
id: string;
name: string;
profilePicture: string;
country: string;
permissions: number;
role: string;
name?: string;
profilePicture?: string;
country?: string;
permissions?: number;
role?: string;
};