computer-scienceangular-roadmapbackend-roadmapblockchain-roadmapdba-roadmapdeveloper-roadmapdevops-roadmapfrontend-roadmapgo-roadmaphactoberfestjava-roadmapjavascript-roadmapnodejs-roadmappython-roadmapqa-roadmapreact-roadmaproadmapstudy-planvue-roadmapweb3-roadmap
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
type ActivityCountersType = { |
|
done: { |
|
today: number; |
|
total: number; |
|
}; |
|
learning: { |
|
today: number; |
|
total: number; |
|
}; |
|
streak: { |
|
count: number; |
|
}; |
|
}; |
|
|
|
type ActivityCounterType = { |
|
text: string; |
|
count: string; |
|
}; |
|
|
|
function ActivityCounter(props: ActivityCounterType) { |
|
const { text, count } = props; |
|
|
|
return ( |
|
<div className="relative flex flex-1 flex-row-reverse sm:flex-col px-0 sm:px-4 py-2 sm:py-4 text-center sm:pt-[1.62rem] items-center gap-2 sm:gap-0 justify-end"> |
|
<h2 className="text-base sm:text-5xl font-bold"> |
|
{count} |
|
</h2> |
|
<p className="mt-0 sm:mt-2 text-sm text-gray-400">{text}</p> |
|
</div> |
|
); |
|
} |
|
|
|
export function ActivityCounters(props: ActivityCountersType) { |
|
const { done, learning, streak } = props; |
|
|
|
return ( |
|
<div className="mx-0 -mt-5 sm:-mx-10 md:-mt-10"> |
|
<div className="flex flex-col sm:flex-row gap-0 sm:gap-2 divide-y sm:divide-y-0 divide-x-0 sm:divide-x border-b"> |
|
<ActivityCounter |
|
text={'Topics Completed'} |
|
count={`${done?.total || 0}`} |
|
/> |
|
|
|
<ActivityCounter |
|
text={'Currently Learning'} |
|
count={`${learning?.total || 0}`} |
|
/> |
|
|
|
<ActivityCounter |
|
text={'Visit Streak'} |
|
count={`${streak?.count || 0}d`} |
|
/> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|