feat: player dashboard, tournament lobby filters, friends & notifications (#165 #166 #168 #169) - #488
Open
devJaja wants to merge 1 commit into
Open
Conversation
…ions Implements four frontend enhancements: - HitEmPoka#166 Player dashboard (/dashboard): lifetime total hands, win rate, ROI, biggest pot won/lost, total rake, favorite hand and a performance graph, derived from local hand history + coordinator HUD stats. - HitEmPoka#165 Tournament lobby filtering & sorting: buy-in range, open entries, blind structure and start-time filters plus sort by entries/prize/start and full registration-status badges. - HitEmPoka#168 Friend list & invites (/friends): add by Stellar address/alias, live online status, table invites, and friend-occupied tables flagged in the lobby. - HitEmPoka#169 Notification center: dropdown grouping table invites, friend requests, tournament reminders and achievement unlocks, with browser notifications raised when the tab is backgrounded. Adds unit tests for the new lib modules and a missing OddsCalculatorModal import so the app builds.
|
@devJaja Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
This was referenced Aug 31, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Resolves #165
Resolves #166
Resolves #168
Resolves #169
Summary
Four frontend enhancements over the Next.js app, all following the existing
pixel-art theme, localStorage store patterns and Vitest conventions.
#166 — Player dashboard with lifetime statistics (
/dashboard)#165 — Tournament lobby with filtering & sorting (
/tournaments)lib/tournament-lobby.ts(unit tested)#168 — Friend list & invites (
/friends)#169 — Notification center (global dropdown)
Tests
Added unit tests for all four new lib modules (
player-stats,tournament-lobby,friends,notifications-center). Full suite: the onlyfailing tests are a pre-existing
reconnect-statefailure already present onmain.
tsc --noEmitandnext buildpass.Also adds a missing
OddsCalculatorModalimport that was breaking the build.