import { type ReactNode, useState } from 'react'; import type { LeaderboardUserDetails, ListLeaderboardStatsResponse, } from '../../api/leaderboard'; import { cn } from '../../lib/classname'; import { FolderKanban, GitPullRequest, Users2, Zap } from 'lucide-react'; import { TrophyEmoji } from '../ReactIcons/TrophyEmoji'; import { SecondPlaceMedalEmoji } from '../ReactIcons/SecondPlaceMedalEmoji'; import { ThirdPlaceMedalEmoji } from '../ReactIcons/ThirdPlaceMedalEmoji'; type LeaderboardPageProps = { stats: ListLeaderboardStatsResponse; }; export function LeaderboardPage(props: LeaderboardPageProps) { const { stats } = props; return (

Leaderboard

, emptyText: 'No users with streaks yet', }, { title: 'Lifetime', users: stats.streaks?.lifetime || [], emptyIcon: , emptyText: 'No users with streaks yet', }, ]} /> , emptyText: 'No projects submitted this month', }, { title: 'Lifetime', users: stats.projectSubmissions.lifetime, emptyIcon: , emptyText: 'No projects submitted yet', }, ]} /> , emptyText: 'No contributors this month', }, ]} />
); } type LeaderboardLaneProps = { title: string; subtitle?: string; tabs: { title: string; users: LeaderboardUserDetails[]; emptyIcon?: ReactNode; emptyText?: string; }[]; }; function LeaderboardLane(props: LeaderboardLaneProps) { const { title, subtitle, tabs } = props; const [activeTab, setActiveTab] = useState(tabs[0]); const { users: usersToShow, emptyIcon, emptyText } = activeTab; return (

{title}{' '} {subtitle && ( {subtitle} )}

{tabs.length > 1 && (
{tabs.map((tab) => { const isActive = tab === activeTab; return ( ); })}
)}
{usersToShow.length === 0 && emptyText && (
{emptyIcon}

{emptyText}

)} {usersToShow.length > 0 && ( )}
); }