feat: v1 API + frontend migration
continuous-integration/drone/pr Build is failing

This commit is contained in:
2026-07-03 14:06:33 -04:00
parent ff44db311d
commit c9e4d345b8
212 changed files with 26747 additions and 398 deletions
+234
View File
@@ -0,0 +1,234 @@
import { useState } from 'react';
import { Link } from 'react-router-dom';
import { useGetHome } from '../generated/anthoLumeAPIV1';
import type {
HomeResponse,
LeaderboardData,
LeaderboardEntry,
UserStreak,
} from '../generated/model';
import ReadingHistoryGraph from '../components/ReadingHistoryGraph';
import { formatNumber, formatDuration } from '../utils/formatters';
interface InfoCardProps {
title: string;
size: string | number;
link?: string;
}
function InfoCard({ title, size, link }: InfoCardProps) {
const content = (
<div className="flex w-full gap-4 rounded bg-surface p-4 shadow-lg">
<div className="flex w-full flex-col justify-around text-sm text-content">
<p className="text-2xl font-bold">{size}</p>
<p className="text-sm text-content-subtle">{title}</p>
</div>
</div>
);
if (link) {
return (
<Link to={link} className="w-full">
{content}
</Link>
);
}
return <div className="w-full">{content}</div>;
}
interface StreakCardProps {
window: 'DAY' | 'WEEK';
currentStreak: number;
currentStreakStartDate: string;
currentStreakEndDate: string;
maxStreak: number;
maxStreakStartDate: string;
maxStreakEndDate: string;
}
function StreakCard({
window,
currentStreak,
currentStreakStartDate,
currentStreakEndDate,
maxStreak,
maxStreakStartDate,
maxStreakEndDate,
}: StreakCardProps) {
return (
<div className="w-full">
<div className="relative w-full rounded bg-surface px-4 py-6 text-content shadow-lg">
<p className="w-max border-b border-border text-sm font-semibold text-content-muted">
{window === 'WEEK' ? 'Weekly Read Streak' : 'Daily Read Streak'}
</p>
<div className="my-6 flex items-end space-x-2">
<p className="text-5xl font-bold">{currentStreak}</p>
</div>
<div>
<div className="mb-2 flex items-center justify-between border-b border-border pb-2 text-sm">
<div>
<p>{window === 'WEEK' ? 'Current Weekly Streak' : 'Current Daily Streak'}</p>
<div className="flex items-end text-sm text-content-subtle">
{currentStreakStartDate} {currentStreakEndDate}
</div>
</div>
<div className="flex items-end font-bold">{currentStreak}</div>
</div>
<div className="mb-2 flex items-center justify-between pb-2 text-sm">
<div>
<p>{window === 'WEEK' ? 'Best Weekly Streak' : 'Best Daily Streak'}</p>
<div className="flex items-end text-sm text-content-subtle">
{maxStreakStartDate} {maxStreakEndDate}
</div>
</div>
<div className="flex items-end font-bold">{maxStreak}</div>
</div>
</div>
</div>
</div>
);
}
interface LeaderboardCardProps {
name: string;
data: LeaderboardData;
}
type TimePeriod = 'all' | 'year' | 'month' | 'week';
function LeaderboardCard({ name, data }: LeaderboardCardProps) {
const [selectedPeriod, setSelectedPeriod] = useState<TimePeriod>('all');
const formatValue = (value: number): string => {
switch (name) {
case 'WPM':
return `${value.toFixed(2)} WPM`;
case 'Duration':
return formatDuration(value);
case 'Words':
return formatNumber(value);
default:
return value.toString();
}
};
const currentData = data[selectedPeriod];
const getPeriodClassName = (period: TimePeriod) =>
`cursor-pointer ${selectedPeriod === period ? 'text-content' : 'text-content-subtle hover:text-content'}`;
return (
<div className="w-full">
<div className="flex size-full flex-col justify-between rounded bg-surface px-4 py-6 text-content shadow-lg">
<div>
<div className="flex justify-between">
<p className="w-max border-b border-border text-sm font-semibold text-content-muted">
{name} Leaderboard
</p>
<div className="flex items-center gap-2 text-xs">
<button type="button" onClick={() => setSelectedPeriod('all')} className={getPeriodClassName('all')}>
all
</button>
<button type="button" onClick={() => setSelectedPeriod('year')} className={getPeriodClassName('year')}>
year
</button>
<button type="button" onClick={() => setSelectedPeriod('month')} className={getPeriodClassName('month')}>
month
</button>
<button type="button" onClick={() => setSelectedPeriod('week')} className={getPeriodClassName('week')}>
week
</button>
</div>
</div>
</div>
<div className="my-6 flex items-end space-x-2">
{currentData?.length === 0 ? (
<p className="text-5xl font-bold">N/A</p>
) : (
<p className="text-5xl font-bold">{currentData[0]?.user_id || 'N/A'}</p>
)}
</div>
<div>
{currentData?.slice(0, 3).map((item: LeaderboardEntry, index: number) => (
<div
key={index}
className={`flex items-center justify-between py-2 text-sm ${index > 0 ? 'border-t border-border' : ''}`}
>
<div>
<p>{item.user_id}</p>
</div>
<div className="flex items-end font-bold">{formatValue(item.value)}</div>
</div>
))}
</div>
</div>
</div>
);
}
export default function HomePage() {
const { data: homeData, isLoading: homeLoading } = useGetHome();
const homeResponse = homeData?.status === 200 ? (homeData.data as HomeResponse) : null;
const dbInfo = homeResponse?.database_info;
const streaks = homeResponse?.streaks?.streaks;
const graphData = homeResponse?.graph_data?.graph_data;
const userStats = homeResponse?.user_statistics;
if (homeLoading) {
return <div className="text-content-muted">Loading...</div>;
}
return (
<div className="flex flex-col gap-4">
<div className="w-full">
<div className="relative w-full rounded bg-surface shadow-lg">
<p className="absolute left-5 top-3 w-max border-b border-border text-sm font-semibold text-content-muted">
Daily Read Totals
</p>
<ReadingHistoryGraph data={graphData || []} />
</div>
</div>
<div className="grid grid-cols-2 gap-4 md:grid-cols-4">
<InfoCard title="Documents" size={dbInfo?.documents_size || 0} link="./documents" />
<InfoCard title="Activity Records" size={dbInfo?.activity_size || 0} link="./activity" />
<InfoCard title="Progress Records" size={dbInfo?.progress_size || 0} link="./progress" />
<InfoCard title="Devices" size={dbInfo?.devices_size || 0} />
</div>
<div className="grid grid-cols-1 gap-4 md:grid-cols-2">
{streaks?.map((streak: UserStreak, index: number) => (
<StreakCard
key={index}
window={streak.window as 'DAY' | 'WEEK'}
currentStreak={streak.current_streak}
currentStreakStartDate={streak.current_streak_start_date}
currentStreakEndDate={streak.current_streak_end_date}
maxStreak={streak.max_streak}
maxStreakStartDate={streak.max_streak_start_date}
maxStreakEndDate={streak.max_streak_end_date}
/>
))}
</div>
<div className="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
<LeaderboardCard
name="WPM"
data={userStats?.wpm || { all: [], year: [], month: [], week: [] }}
/>
<LeaderboardCard
name="Duration"
data={userStats?.duration || { all: [], year: [], month: [], week: [] }}
/>
<LeaderboardCard
name="Words"
data={userStats?.words || { all: [], year: [], month: [], week: [] }}
/>
</div>
</div>
);
}