Files
vega/src/components/follows/FollowsView.tsx
T
Jure f2546b5af7 Polish pass 7 — sentence case across profile, thread, follows, podcasts
- ProfileView: Cancel/Back, Edit profile, Zap, Follow/Unfollow, Mute/Unmute,
  Message, Notes/Articles/Media tab labels
- ThreadView: Back, Retry, Reply/Posting…/Replied ✓; console.error → debug.error
- ThreadNode: Reply/Posting…/Replied ✓
- FollowsView: Follow/Unfollow, Followers/Following tabs, Follows header
- EpisodeList: Back, Loading episodes…, amber → zap theme token on V4V badge
- AccountSwitcher: Login, Add account, Sign out, Remove
- PodcastCard: + Subscribe / Subscribed
2026-04-09 18:42:03 +02:00

227 lines
8.4 KiB
TypeScript

import { useEffect, useState } from "react";
import { useUIStore } from "../../stores/ui";
import { useUserStore } from "../../stores/user";
import { useNotificationsStore } from "../../stores/notifications";
import { useProfile } from "../../hooks/useProfile";
import { useNip05Verified } from "../../hooks/useNip05Verified";
import { fetchFollowers, ensureConnected } from "../../lib/nostr";
import { dbLoadFollowers, dbSaveFollowers } from "../../lib/db";
import { shortenPubkey, profileName } from "../../lib/utils";
function FollowRow({
pubkey,
followsYou,
isNew,
}: {
pubkey: string;
followsYou?: boolean;
isNew?: boolean;
}) {
const profile = useProfile(pubkey);
const name = profileName(profile, shortenPubkey(pubkey));
const avatar = typeof profile?.picture === "string" ? profile.picture : undefined;
const nip05 = typeof profile?.nip05 === "string" ? profile.nip05 : undefined;
const verified = useNip05Verified(pubkey, nip05);
const { follows, follow, unfollow, pubkey: ownPubkey } = useUserStore();
const { openProfile } = useUIStore();
const isFollowing = follows.includes(pubkey);
const isSelf = pubkey === ownPubkey;
return (
<div className="flex items-center gap-3 px-4 py-2.5 hover:bg-bg-hover transition-colors">
<button className="shrink-0" onClick={() => openProfile(pubkey)}>
{avatar ? (
<img
src={avatar}
alt={`${name}'s avatar`}
className="w-9 h-9 rounded-sm object-cover bg-bg-raised hover:opacity-80 transition-opacity"
loading="lazy"
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
/>
) : (
<div className="w-9 h-9 rounded-sm bg-bg-raised border border-border flex items-center justify-center text-text-dim text-xs hover:border-accent/40 transition-colors">
{name.charAt(0).toUpperCase()}
</div>
)}
</button>
<div className="flex-1 min-w-0">
<div className="flex items-baseline gap-2">
<button
onClick={() => openProfile(pubkey)}
className="text-text font-medium truncate text-[13px] hover:text-accent transition-colors text-left"
>
{name}
</button>
{nip05 && (
<span className={`text-[10px] truncate max-w-40 ${verified === "valid" ? "text-success" : "text-text-dim"}`}>
{verified === "valid" ? "✓ " : ""}{nip05}
</span>
)}
{followsYou && (
<span className="text-[9px] text-text-dim bg-bg-raised px-1.5 py-0.5 rounded-sm">follows you</span>
)}
{isNew && (
<span className="text-[9px] text-accent bg-accent/15 px-1.5 py-0.5 rounded-sm font-medium">new</span>
)}
</div>
</div>
{!isSelf && (
<button
onClick={() => isFollowing ? unfollow(pubkey) : follow(pubkey)}
className={`shrink-0 px-3 py-1 text-[11px] transition-colors ${
isFollowing
? "text-text-dim border border-border hover:text-danger hover:border-danger"
: "bg-accent hover:bg-accent-hover text-accent-text"
}`}
>
{isFollowing ? "Unfollow" : "Follow"}
</button>
)}
</div>
);
}
export function FollowsView() {
const { followsTab, setFollowsTab } = useUIStore();
const { pubkey, follows } = useUserStore();
const { newFollowerPubkeys, clearNewFollowers } = useNotificationsStore();
const [followers, setFollowers] = useState<string[]>([]);
const [followersLoading, setFollowersLoading] = useState(false);
const [followersError, setFollowersError] = useState<string | null>(null);
const [followersFetched, setFollowersFetched] = useState(false);
// Snapshot new follower pubkeys on mount, before clearing
const [newPubkeys] = useState(() => new Set(newFollowerPubkeys));
// Clear badge when view opens
useEffect(() => {
clearNewFollowers();
}, []);
// Load followers: DB cache first (instant), then relay fetch to merge new ones
useEffect(() => {
if (followsTab !== "followers" || !pubkey || followersFetched) return;
let cancelled = false;
setFollowersLoading(true);
setFollowersError(null);
(async () => {
try {
// 1) Instant: load from SQLite cache
const cached = await dbLoadFollowers(pubkey);
if (!cancelled && cached.length > 0) {
setFollowers(cached);
setFollowersLoading(false); // show cached immediately
}
// 2) Background: fetch from relays and merge
await ensureConnected();
let result = await fetchFollowers(pubkey);
if (result.length === 0 && !cancelled) {
await new Promise((r) => setTimeout(r, 3000));
if (cancelled) return;
result = await fetchFollowers(pubkey);
}
if (!cancelled) {
// Merge: union of cached + relay results (relay may return partial set)
const merged = Array.from(new Set([...result, ...cached]));
setFollowers(merged);
setFollowersFetched(true);
// Persist merged set to DB
if (result.length > 0) {
dbSaveFollowers(merged, pubkey);
}
}
} catch (err) {
if (!cancelled && followers.length === 0) {
setFollowersError(`Failed to load followers: ${err}`);
}
} finally {
if (!cancelled) setFollowersLoading(false);
}
})();
return () => { cancelled = true; };
}, [followsTab, pubkey]);
// Build followers set for "follows you" badge on Following tab
const followersSet = new Set(followers);
const tabs: Array<{ id: "followers" | "following"; label: string; count?: number }> = [
{ id: "followers", label: "Followers", count: followersFetched ? followers.length : undefined },
{ id: "following", label: "Following", count: follows.length },
];
return (
<div className="h-full flex flex-col">
{/* Header */}
<div className="border-b border-border px-4 py-2.5 flex items-center gap-4 shrink-0">
<span className="text-text font-medium text-[13px]">Follows</span>
<div className="flex gap-3 ml-auto">
{tabs.map((t) => (
<button
key={t.id}
onClick={() => setFollowsTab(t.id)}
className={`text-[12px] transition-colors flex items-center gap-1 ${
followsTab === t.id
? "text-accent border-b border-accent pb-0.5"
: "text-text-dim hover:text-text"
}`}
>
{t.label}
{t.count !== undefined && (
<span className="text-[10px] text-text-dim">({t.count})</span>
)}
</button>
))}
</div>
</div>
{/* Content */}
<div className="flex-1 overflow-y-auto">
{followsTab === "followers" && (
<>
{followersLoading && (
<div className="px-4 py-8 text-center text-text-dim text-[12px]">
<span className="inline-flex items-center gap-2">
<span className="w-4 h-4 border-2 border-accent border-t-transparent rounded-full animate-spin" />
Loading followers
</span>
</div>
)}
{followersError && (
<p className="px-4 py-4 text-danger text-[12px]">{followersError}</p>
)}
{!followersLoading && !followersError && followers.length === 0 && followersFetched && (
<p className="px-4 py-8 text-text-dim text-[12px] text-center">No followers found yet.</p>
)}
{[...followers]
.sort((a, b) => {
const aNew = newPubkeys.has(a) ? 1 : 0;
const bNew = newPubkeys.has(b) ? 1 : 0;
return bNew - aNew; // new followers first
})
.map((pk) => (
<FollowRow key={pk} pubkey={pk} isNew={newPubkeys.has(pk)} />
))}
</>
)}
{followsTab === "following" && (
<>
{follows.length === 0 && (
<p className="px-4 py-8 text-text-dim text-[12px] text-center">Not following anyone yet.</p>
)}
{follows.map((pk) => (
<FollowRow key={pk} pubkey={pk} followsYou={followersSet.has(pk)} />
))}
</>
)}
</div>
</div>
);
}