You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Depends on having statistics in the database / after some data has been verified
Overview
Create all data needed for the dedicated Game page on the site
Tasks
Create GameCompactDTO which has game data without any navigations
Create GameResultDTO which contains teamRedScore: int and teamBlueScore: int and include on GameDTO
Create GameMatchInfoDTO which contains totalGames: int and matchWinner: str and include on GameDTO
Include TournamentCompactDTO and include on GameDTO
Include BeatmapDTO on GameDTO
If not present, include a thumbnailUrl field on BeatmapDTO which polls the osu! website for the beatmap image
Should we store thumbnails on our side or can we dynamically call this?
Create GameTeamStatisticsDTO which has averageScore, averageMisses, averageAccuracy, and averageRating of those who participated in the game. There should be one of these DTOs included for team red and team blue (i.e. game.teamRedStatistics.averageScore.
The rating values displayed should be the player ratings at the time this match occurred. This can be found by querying for the RatingAdjustment which happened immediately prior to the match's StartTime.
Design
The text was updated successfully, but these errors were encountered:
Match
page #504Overview
Tasks
GameCompactDTO
which has game data without any navigationsGameResultDTO
which containsteamRedScore: int
andteamBlueScore: int
and include onGameDTO
GameMatchInfoDTO
which containstotalGames: int
andmatchWinner: str
and include onGameDTO
TournamentCompactDTO
and include onGameDTO
BeatmapDTO
onGameDTO
thumbnailUrl
field onBeatmapDTO
which polls the osu! website for the beatmap imageGameTeamStatisticsDTO
which hasaverageScore
,averageMisses
,averageAccuracy
, andaverageRating
of those who participated in the game. There should be one of these DTOs included for team red and team blue (i.e.game.teamRedStatistics.averageScore
.RatingAdjustment
which happened immediately prior to the match'sStartTime
.Design
The text was updated successfully, but these errors were encountered: