forked from MergeFi/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathActivityList.tsx
More file actions
43 lines (41 loc) · 2 KB
/
Copy pathActivityList.tsx
File metadata and controls
43 lines (41 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { Avatar } from "@/components/ui/Avatar";
import { formatCurrency } from "@/lib/utils";
import type { ActivityEvent } from "@/lib/mock-data";
function timeAgo(minutes: number) {
if (minutes < 60) return `${minutes}m ago`;
const hours = Math.floor(minutes / 60);
if (hours < 24) return `${hours}h ago`;
return `${Math.floor(hours / 24)}d ago`;
}
export function ActivityList({ events }: { events: ActivityEvent[] }) {
return (
<div className="divide-y divide-slate-100 rounded-2xl border border-slate-200 bg-white shadow-sm dark:divide-slate-800 dark:border-slate-800 dark:bg-slate-900">
{events.map((event) => (
<div key={event.id} className="flex items-center justify-between gap-4 px-5 py-4">
<div className="flex items-center gap-3">
<Avatar seed={event.handle} size={32} />
<p className="text-sm text-slate-600 dark:text-slate-300">
<span className="font-medium text-slate-900 dark:text-white">{event.handle}</span>{" "}
{event.action}{" "}
<span className="font-medium text-slate-900 dark:text-white">{event.target}</span>
</p>
</div>
<div className="flex shrink-0 items-center gap-3 text-xs text-slate-400 dark:text-slate-500">
{/* `event.amount && (...)` would render a bare "0" text node for
a genuine amount: 0 event, since `0 && x` evaluates to `0`
itself, not `false` — React renders that. Guard on presence/
type instead, matching StatCard's trend rendering (#87). A
codebase-wide grep for the same bare-truthiness-on-a-number
pattern found no other occurrences. */}
{typeof event.amount === "number" && (
<span className="font-semibold text-emerald-600 dark:text-emerald-400">
{formatCurrency(event.amount, event.asset)}
</span>
)}
{timeAgo(event.minutesAgo)}
</div>
</div>
))}
</div>
);
}