mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-08-24 09:55:57 +02:00
Add streaks for lifetime
This commit is contained in:
@@ -9,7 +9,10 @@ export type LeadeboardUserDetails = {
|
||||
};
|
||||
|
||||
export type ListLeaderboardStatsResponse = {
|
||||
longestStreaks: LeadeboardUserDetails[];
|
||||
streaks: {
|
||||
active: LeadeboardUserDetails[];
|
||||
lifetime: LeadeboardUserDetails[];
|
||||
};
|
||||
projectSubmissions: {
|
||||
currentMonth: LeadeboardUserDetails[];
|
||||
lifetime: LeadeboardUserDetails[];
|
||||
|
@@ -34,8 +34,14 @@ export function LeaderboardPage(props: LeaderboardPageProps) {
|
||||
title="Longest Visit Streak"
|
||||
tabs={[
|
||||
{
|
||||
title: 'All Time',
|
||||
users: stats.longestStreaks,
|
||||
title: 'Active',
|
||||
users: stats.streaks?.active || [],
|
||||
emptyIcon: <Zap className="size-16 text-gray-300" />,
|
||||
emptyText: 'No users with streaks yet',
|
||||
},
|
||||
{
|
||||
title: 'Lifetime',
|
||||
users: stats.streaks?.lifetime || [],
|
||||
emptyIcon: <Zap className="size-16 text-gray-300" />,
|
||||
emptyText: 'No users with streaks yet',
|
||||
},
|
||||
|
Reference in New Issue
Block a user