import { useEffect, useState } from 'react';
import { api, type SpaceStats, type StatsLeader } from '../../../api/client';
import { Avatar } from '../../ui/Avatar';
import { useT, type TranslationKey } from '../../../i18n';
interface StatsPanelProps {
spaceId: string;
}
const RANGES: { days: number; key: TranslationKey }[] = [
{ days: 7, key: 'stats.range.7' },
{ days: 30, key: 'stats.range.30' },
{ days: 365, key: 'stats.range.365' },
];
function Leaderboard({
title,
rows,
format,
}: {
title: string;
rows: StatsLeader[];
format: (value: number) => string;
}) {
// The bar is relative to the leader, not to the total: with five people the
// share of a total is tiny and every bar looks the same.
const max = rows.length > 0 ? Math.max(...rows.map((r) => r.value)) : 0;
return (