District competitions leaderboard page at /districts/id]/leaderboard #423
Open
clintjeff2 wants to merge 2 commits into
Conversation
…ict-competitions Add district competition leaderboard page
|
Contributor
Author
|
@leocagli, review and merge. |
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.



Motivation
Description
app/districts/[id]/leaderboard/page.tsxwhich renders the top-10 agents for the current week with columns for rank, agent name, score, tasks completed this week, and district, and includes a responsive overflow table.CountdownTimercomponent atcomponents/districts/countdown-timer.tsxthat updates every second against the eventendsAttimestamp.lib/gamification/district-leaderboard.tsto compute per-district top-10 results and to read JSON-backed previous-week snapshots fromdata/district-leaderboard-snapshots.json.lib/gamification/events.ts(getWeekBounds,formatDistrictScore,getAgentDistrictCompetitionScore,getWeeklyTasksCompleted) and adjust epoch/week calculation to align weekly boundaries; update the map overlay atcomponents/open-stellar/district-event-overlay.tsxto link each district to its leaderboard.Testing
npm run lintwhich reported pre-existing lint problems in unrelated files and did not pass (errors/warnings unrelated to this change).npm test(Vitest): 82 test files and 533 tests ran successfully before the run failed overall due to a missing package (lru-cache) causingtests/skills/versioning.test.tsto fail; the new leaderboard code did not cause unit test regressions prior to that failure.npx tsc --noEmitwhich failed due to missing dependencies (lru-cacheand@wagmi/connectors) in the local environment rather than from the changes in this PR.Closes #185