The Results View page (Documentation Index
Fetch the complete documentation index at: https://mintlify.com/SdazaP/ruTournament/llms.txt
Use this file to discover all available pages before exploring further.
/dashboard/tournament/:id/view/results) is the public-facing display of all competition data. It is accessible from the tournament sidebar under Ver Resultados and is intentionally read-only — no edit controls, no authentication prompts. Competitors and spectators can open it on any device to follow results in real time as the organiser enters data on the same app instance.
WCA Results View
The WCA tab shows a ranked leaderboard for each category and round. Data is loaded directly from IndexedDB using the samecalculateRulesStats and sortWCA functions used in the entry page, so the displayed ranking always matches what the organiser sees.
Table columns (desktop):
| Column | Description |
|---|---|
| # | Rank badge — gold for 1st, silver for 2nd, bronze for 3rd |
| Competitor | Full name |
| T1 – T5 (or T1 – T3) | Individual solve times with penalty display |
| Best | Fastest valid solve in blue |
| Avg | Calculated average in green |
- Clean solve — plain time string, e.g.
9.74. +2penalty — shown as9.74 +2 = 11.74on desktop; the penalised total only on mobile.DNF— shown as(9.74) DNFon desktop (base time in parentheses); plainDNFin red on mobile.- Best single in a row is additionally bolded in green to distinguish it from the other solves.
Red Bull Results View
The Red Bull tab displays the elimination bracket round by round. Each bracket round is rendered as a responsive grid of match cards. Match cards show:- Competitor 1 and Competitor 2 names with their individual solve times (T1, T2, T3).
- Per-solve win highlighting — the winning time in each solve slot gets a green background.
- Win count badges for each competitor (
N victorias). - A green winner banner at the bottom of the card once a match is resolved.
- Cards for completed matches have a green top border (
border-t-4 border-green-500).
Navigating results
Both the WCA and Red Bull tabs provide Categoría and Ronda selectors at the top of their respective views. Use these to switch between events without leaving the page. The URL does not change when you switch categories or rounds — all navigation is in-memory. The Results View reads a?tab=WCA / ?tab=RedBull query parameter on load to set the initial active tab, and an optional ?category=<id> parameter to pre-select a specific category in the WCA view. Pass these in the URL to deep-link to a particular event.
Sharing results
Because ruTournament stores all data in the browser’s local IndexedDB, results are only visible on the device and browser that was used to enter them. Sharing the URL with someone on a different device will show an empty tournament unless the app is hosted and the data has been exported/imported.
vite dev or served locally):
Only the organiser’s machine can access the results view.
