aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/client/pages/HomePage.tsx
diff options
context:
space:
mode:
authornsfisis <54318333+nsfisis@users.noreply.github.com>2026-01-12 18:09:14 +0900
committerGitHub <noreply@github.com>2026-01-12 18:09:14 +0900
commit188c49e6ae0dfa0af052a001bc40c26d448b1583 (patch)
treef0cebd927c2292a40f123a694c6aa561768ad7a3 /src/client/pages/HomePage.tsx
parentf8e4be9b36a16969ac53bd9ce12ce8064be10196 (diff)
parent1732c543f4bc98ec6a4c7ea13c3e4762933421d8 (diff)
downloadkioku-188c49e6ae0dfa0af052a001bc40c26d448b1583.tar.gz
kioku-188c49e6ae0dfa0af052a001bc40c26d448b1583.tar.zst
kioku-188c49e6ae0dfa0af052a001bc40c26d448b1583.zip
Merge pull request #9 from nsfisis/claude/show-daily-card-count-6dJ6tHEADmain
Display daily card count on deck list page
Diffstat (limited to 'src/client/pages/HomePage.tsx')
-rw-r--r--src/client/pages/HomePage.tsx23
1 files changed, 15 insertions, 8 deletions
diff --git a/src/client/pages/HomePage.tsx b/src/client/pages/HomePage.tsx
index e0e9e9e..ad6ece4 100644
--- a/src/client/pages/HomePage.tsx
+++ b/src/client/pages/HomePage.tsx
@@ -57,14 +57,21 @@ function DeckList({
>
<div className="flex items-start justify-between gap-4">
<div className="flex-1 min-w-0">
- <Link
- href={`/decks/${deck.id}`}
- className="block group-hover:text-primary transition-colors"
- >
- <h3 className="font-display text-lg font-medium text-slate truncate">
- {deck.name}
- </h3>
- </Link>
+ <div className="flex items-center gap-3">
+ <Link
+ href={`/decks/${deck.id}`}
+ className="block group-hover:text-primary transition-colors flex-1 min-w-0"
+ >
+ <h3 className="font-display text-lg font-medium text-slate truncate">
+ {deck.name}
+ </h3>
+ </Link>
+ {deck.dueCardCount > 0 && (
+ <span className="shrink-0 inline-flex items-center justify-center min-w-[1.5rem] h-6 px-2 bg-primary text-white text-sm font-medium rounded-full">
+ {deck.dueCardCount}
+ </span>
+ )}
+ </div>
{deck.description && (
<p className="text-muted text-sm mt-1 line-clamp-2">
{deck.description}