mirror of
https://github.com/hoornet/vega.git
synced 2026-05-06 20:29:12 -07:00
- Article cover: aspect-video replaces max-h-72 for consistent 16:9 - NIP-05 verification badge on note cards with 1-hour TTL cache - Dedicated hashtag feed pages (clicking #tag opens live feed, not search) - Keyword muting: word-boundary matching, applied across all feed views - Follow suggestion dismissal: persistent "don't suggest again" per person - Background notification poller (60s): mentions, zaps, new followers - All notification types independently toggleable in settings - Centralized notification firing (removed inline store notifications)
559 lines
21 KiB
TypeScript
559 lines
21 KiB
TypeScript
import { ReactNode, useEffect, useState } from "react";
|
|
import { NDKEvent, nip19 } from "@nostr-dev-kit/ndk";
|
|
import { useUIStore } from "../../stores/ui";
|
|
import { fetchNoteById } from "../../lib/nostr";
|
|
import { useProfile } from "../../hooks/useProfile";
|
|
import { shortenPubkey } from "../../lib/utils";
|
|
import { ImageLightbox } from "../shared/ImageLightbox";
|
|
import { parseContent } from "../../lib/parsing";
|
|
|
|
function ImageGrid({ images, onImageClick }: { images: string[]; onImageClick: (index: number) => void }) {
|
|
const count = images.length;
|
|
if (count === 0) return null;
|
|
|
|
const maxVisible = Math.min(count, 4);
|
|
const extraCount = count - 4;
|
|
const visible = images.slice(0, maxVisible);
|
|
|
|
if (count === 1) {
|
|
return (
|
|
<div className="mt-2">
|
|
<img
|
|
src={images[0]}
|
|
alt=""
|
|
loading="lazy"
|
|
className="max-w-full max-h-80 rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(0); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (count === 2) {
|
|
return (
|
|
<div className="mt-2 grid grid-cols-2 gap-1">
|
|
{visible.map((src, idx) => (
|
|
<img
|
|
key={idx}
|
|
src={src}
|
|
alt=""
|
|
loading="lazy"
|
|
className="w-full aspect-[4/3] rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(idx); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (count === 3) {
|
|
return (
|
|
<div className="mt-2 grid grid-cols-2 grid-rows-2 gap-1" style={{ gridTemplateRows: "1fr 1fr" }}>
|
|
<img
|
|
src={visible[0]}
|
|
alt=""
|
|
loading="lazy"
|
|
className="w-full h-full rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in row-span-2"
|
|
style={{ aspectRatio: "3/4" }}
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(0); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
<img
|
|
src={visible[1]}
|
|
alt=""
|
|
loading="lazy"
|
|
className="w-full aspect-[4/3] rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(1); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
<img
|
|
src={visible[2]}
|
|
alt=""
|
|
loading="lazy"
|
|
className="w-full aspect-[4/3] rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(2); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// 4+ images: 2x2 grid with "+N more" overlay on 4th
|
|
return (
|
|
<div className="mt-2 grid grid-cols-2 gap-1">
|
|
{visible.map((src, idx) => (
|
|
<div key={idx} className="relative">
|
|
<img
|
|
src={src}
|
|
alt=""
|
|
loading="lazy"
|
|
className="w-full aspect-[4/3] rounded-sm object-cover bg-bg-raised border border-border cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(idx); }}
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }}
|
|
/>
|
|
{idx === 3 && extraCount > 0 && (
|
|
<div
|
|
className="absolute inset-0 bg-black/50 flex items-center justify-center rounded-sm cursor-zoom-in"
|
|
onClick={(e) => { e.stopPropagation(); onImageClick(idx); }}
|
|
>
|
|
<span className="text-white text-lg font-semibold">+{extraCount}</span>
|
|
</div>
|
|
)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
|
|
// Returns true if we handled the URL internally (njump.me interception).
|
|
function tryHandleUrlInternally(url: string): boolean {
|
|
try {
|
|
const u = new URL(url);
|
|
if (u.hostname === "njump.me") {
|
|
const entity = u.pathname.replace(/^\//, "");
|
|
if (entity) return tryOpenNostrEntity(entity);
|
|
}
|
|
} catch { /* not a valid URL */ }
|
|
return false;
|
|
}
|
|
|
|
// Decodes a NIP-19 bech32 string and navigates internally where possible.
|
|
// Returns true if handled, false if the caller should fall back to a browser open.
|
|
function tryOpenNostrEntity(raw: string): boolean {
|
|
try {
|
|
const decoded = nip19.decode(raw);
|
|
const { openProfile, openArticle } = useUIStore.getState();
|
|
if (decoded.type === "npub") {
|
|
openProfile(decoded.data as string);
|
|
return true;
|
|
}
|
|
if (decoded.type === "nprofile") {
|
|
openProfile((decoded.data as { pubkey: string }).pubkey);
|
|
return true;
|
|
}
|
|
if (decoded.type === "naddr") {
|
|
const { kind } = decoded.data as { kind: number; pubkey: string; identifier: string };
|
|
if (kind === 30023) {
|
|
openArticle(raw);
|
|
return true;
|
|
}
|
|
}
|
|
// note / nevent / other naddr kinds — fall through to njump.me
|
|
} catch { /* invalid entity */ }
|
|
return false;
|
|
}
|
|
|
|
function QuotePreview({ eventId }: { eventId: string }) {
|
|
const [event, setEvent] = useState<NDKEvent | null>(null);
|
|
const { openThread, currentView } = useUIStore();
|
|
const profile = useProfile(event?.pubkey ?? "");
|
|
|
|
useEffect(() => {
|
|
if (!eventId) return;
|
|
fetchNoteById(eventId).then(setEvent);
|
|
}, [eventId]);
|
|
|
|
if (!event) return null;
|
|
|
|
const name = profile?.displayName || profile?.name || shortenPubkey(event.pubkey);
|
|
const preview = event.content.slice(0, 160) + (event.content.length > 160 ? "…" : "");
|
|
|
|
return (
|
|
<div
|
|
className="mt-2 border border-border bg-bg-raised px-3 py-2 cursor-pointer hover:bg-bg-hover transition-colors"
|
|
onClick={(e) => { e.stopPropagation(); openThread(event, currentView as "feed" | "profile"); }}
|
|
>
|
|
<div className="flex items-center gap-2 mb-1">
|
|
{profile?.picture && (
|
|
<img src={profile.picture} alt="" className="w-4 h-4 rounded-sm object-cover shrink-0"
|
|
onError={(e) => { (e.target as HTMLImageElement).style.display = "none"; }} />
|
|
)}
|
|
<span className="text-text-muted text-[11px] font-medium truncate">{name}</span>
|
|
</div>
|
|
<p className="text-text-dim text-[11px] leading-relaxed whitespace-pre-wrap break-words">{preview}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function MentionName({ pubkey, fallback }: { pubkey?: string; fallback: string }) {
|
|
const profile = useProfile(pubkey ?? "");
|
|
if (!pubkey) return <>{fallback}</>;
|
|
const name = profile?.displayName || profile?.name;
|
|
return <>{name || fallback}</>;
|
|
}
|
|
|
|
interface NoteContentProps {
|
|
content: string;
|
|
/** Render only inline text (no media blocks). Used inside the clickable area. */
|
|
inline?: boolean;
|
|
/** Render only media blocks (videos, embeds, quotes). Used outside the clickable area. */
|
|
mediaOnly?: boolean;
|
|
}
|
|
|
|
export function NoteContent({ content, inline, mediaOnly }: NoteContentProps) {
|
|
const { openHashtag } = useUIStore();
|
|
const segments = parseContent(content);
|
|
const images: string[] = segments.filter((s) => s.type === "image").map((s) => s.value);
|
|
const videos: string[] = segments.filter((s) => s.type === "video").map((s) => s.value);
|
|
const audios: string[] = segments.filter((s) => s.type === "audio").map((s) => s.value);
|
|
const youtubes = segments.filter((s) => s.type === "youtube");
|
|
const vimeos = segments.filter((s) => s.type === "vimeo");
|
|
const spotifys = segments.filter((s) => s.type === "spotify");
|
|
const tidals = segments.filter((s) => s.type === "tidal");
|
|
const quoteIds: string[] = segments.filter((s) => s.type === "quote").map((s) => s.value);
|
|
const [lightboxIndex, setLightboxIndex] = useState<number | null>(null);
|
|
|
|
// --- Inline text + images (safe inside clickable wrapper) ---
|
|
if (inline) {
|
|
const inlineElements: ReactNode[] = [];
|
|
segments.forEach((seg, i) => {
|
|
switch (seg.type) {
|
|
case "text":
|
|
inlineElements.push(<span key={i}>{seg.value}</span>);
|
|
break;
|
|
case "link":
|
|
inlineElements.push(
|
|
<a
|
|
key={i}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-accent hover:text-accent-hover underline underline-offset-2 decoration-accent/40"
|
|
onClick={(e) => {
|
|
if (tryHandleUrlInternally(seg.value)) e.preventDefault();
|
|
}}
|
|
>
|
|
{seg.display}
|
|
</a>
|
|
);
|
|
break;
|
|
case "mention":
|
|
inlineElements.push(
|
|
<span
|
|
key={i}
|
|
className="text-accent cursor-pointer hover:text-accent-hover"
|
|
onClick={(e) => { e.stopPropagation(); tryOpenNostrEntity(seg.value); }}
|
|
>
|
|
@<MentionName pubkey={seg.mentionPubkey} fallback={seg.display ?? seg.value.slice(0, 12) + "…"} />
|
|
</span>
|
|
);
|
|
break;
|
|
case "hashtag":
|
|
inlineElements.push(
|
|
<span
|
|
key={i}
|
|
className="text-accent/80 cursor-pointer hover:text-accent"
|
|
onClick={(e) => { e.stopPropagation(); openHashtag(seg.value); }}
|
|
>
|
|
{seg.display}
|
|
</span>
|
|
);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
return (
|
|
<div>
|
|
<div className="note-content text-text text-[13px] break-words whitespace-pre-wrap leading-relaxed">
|
|
{inlineElements}
|
|
</div>
|
|
{/* Images stay inside the clickable area (they have their own stopPropagation) */}
|
|
<ImageGrid images={images} onImageClick={setLightboxIndex} />
|
|
{lightboxIndex !== null && (
|
|
<ImageLightbox
|
|
images={images}
|
|
index={lightboxIndex}
|
|
onClose={() => setLightboxIndex(null)}
|
|
onNavigate={setLightboxIndex}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// --- Media blocks only (rendered OUTSIDE the clickable wrapper) ---
|
|
if (mediaOnly) {
|
|
const hasMedia = videos.length > 0 || audios.length > 0 || youtubes.length > 0
|
|
|| vimeos.length > 0 || spotifys.length > 0 || tidals.length > 0 || quoteIds.length > 0;
|
|
if (!hasMedia) return null;
|
|
|
|
return (
|
|
<div onClick={(e) => e.stopPropagation()}>
|
|
{/* Videos */}
|
|
{videos.length > 0 && (
|
|
<div className="mt-2 flex flex-col gap-2">
|
|
{videos.map((src, i) => (
|
|
<video
|
|
key={i}
|
|
src={src}
|
|
controls
|
|
playsInline
|
|
preload="metadata"
|
|
className="max-w-full max-h-80 rounded-sm bg-bg-raised border border-border"
|
|
onError={(e) => { (e.target as HTMLVideoElement).style.display = "none"; }}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{/* Audio */}
|
|
{audios.length > 0 && (
|
|
<div className="mt-2 flex flex-col gap-2">
|
|
{audios.map((src, i) => {
|
|
const filename = src.split("/").pop()?.split("?")[0] ?? src;
|
|
return (
|
|
<div key={i} className="rounded-sm bg-bg-raised border border-border p-2">
|
|
<div className="text-[11px] text-text-muted mb-1 truncate">{filename}</div>
|
|
<audio controls preload="metadata" className="w-full h-8" src={src} />
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
|
|
{/* YouTube — open in browser (WebKitGTK can't play YouTube iframes) */}
|
|
{youtubes.map((seg, i) => (
|
|
<a
|
|
key={`yt-${i}`}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer"
|
|
>
|
|
<img
|
|
src={`https://img.youtube.com/vi/${seg.mediaId}/hqdefault.jpg`}
|
|
alt=""
|
|
className="w-28 h-16 rounded-sm object-cover shrink-0"
|
|
loading="lazy"
|
|
/>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">YouTube</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{/* Vimeo — open in browser */}
|
|
{vimeos.map((seg, i) => (
|
|
<a
|
|
key={`vim-${i}`}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer"
|
|
>
|
|
<div className="w-10 h-10 rounded-full bg-black/40 flex items-center justify-center shrink-0">
|
|
<svg width="14" height="14" viewBox="0 0 20 20" fill="white"><polygon points="6,3 17,10 6,17" /></svg>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Vimeo</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{/* Spotify — open in browser/app */}
|
|
{spotifys.map((seg, i) => (
|
|
<a
|
|
key={`sp-${i}`}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer"
|
|
>
|
|
<div className="w-10 h-10 rounded-full bg-[#1DB954]/20 flex items-center justify-center shrink-0">
|
|
<span className="text-[#1DB954] text-lg font-bold">S</span>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Spotify · {seg.mediaType}</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{/* Tidal — open in browser/app */}
|
|
{tidals.map((seg, i) => (
|
|
<a
|
|
key={`td-${i}`}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer"
|
|
>
|
|
<div className="w-10 h-10 rounded-full bg-white/10 flex items-center justify-center shrink-0">
|
|
<span className="text-white text-lg font-bold">T</span>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Tidal · {seg.mediaType}</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{/* Quoted notes */}
|
|
{quoteIds.map((id) => (
|
|
<QuotePreview key={id} eventId={id} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
// --- Default: full render (used in ThreadView, SearchView, etc.) ---
|
|
const inlineElements: ReactNode[] = [];
|
|
segments.forEach((seg, i) => {
|
|
switch (seg.type) {
|
|
case "text":
|
|
inlineElements.push(<span key={i}>{seg.value}</span>);
|
|
break;
|
|
case "link":
|
|
inlineElements.push(
|
|
<a
|
|
key={i}
|
|
href={seg.value}
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
className="text-accent hover:text-accent-hover underline underline-offset-2 decoration-accent/40"
|
|
onClick={(e) => {
|
|
if (tryHandleUrlInternally(seg.value)) e.preventDefault();
|
|
}}
|
|
>
|
|
{seg.display}
|
|
</a>
|
|
);
|
|
break;
|
|
case "mention":
|
|
inlineElements.push(
|
|
<span
|
|
key={i}
|
|
className="text-accent cursor-pointer hover:text-accent-hover"
|
|
onClick={(e) => { e.stopPropagation(); tryOpenNostrEntity(seg.value); }}
|
|
>
|
|
@{seg.display}
|
|
</span>
|
|
);
|
|
break;
|
|
case "hashtag":
|
|
inlineElements.push(
|
|
<span
|
|
key={i}
|
|
className="text-accent/80 cursor-pointer hover:text-accent"
|
|
onClick={(e) => { e.stopPropagation(); openHashtag(seg.value); }}
|
|
>
|
|
{seg.display}
|
|
</span>
|
|
);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
|
|
return (
|
|
<div>
|
|
<div className="note-content text-text text-[13px] break-words whitespace-pre-wrap leading-relaxed">
|
|
{inlineElements}
|
|
</div>
|
|
|
|
<ImageGrid images={images} onImageClick={setLightboxIndex} />
|
|
|
|
{lightboxIndex !== null && (
|
|
<ImageLightbox
|
|
images={images}
|
|
index={lightboxIndex}
|
|
onClose={() => setLightboxIndex(null)}
|
|
onNavigate={setLightboxIndex}
|
|
/>
|
|
)}
|
|
|
|
{videos.length > 0 && (
|
|
<div className="mt-2 flex flex-col gap-2">
|
|
{videos.map((src, i) => (
|
|
<video
|
|
key={i}
|
|
src={src}
|
|
controls
|
|
playsInline
|
|
preload="metadata"
|
|
className="max-w-full max-h-80 rounded-sm bg-bg-raised border border-border"
|
|
onError={(e) => { (e.target as HTMLVideoElement).style.display = "none"; }}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
|
|
{audios.length > 0 && (
|
|
<div className="mt-2 flex flex-col gap-2">
|
|
{audios.map((src, i) => {
|
|
const filename = src.split("/").pop()?.split("?")[0] ?? src;
|
|
return (
|
|
<div key={i} className="rounded-sm bg-bg-raised border border-border p-2">
|
|
<div className="text-[11px] text-text-muted mb-1 truncate">{filename}</div>
|
|
<audio controls preload="metadata" className="w-full h-8" src={src} />
|
|
</div>
|
|
);
|
|
})}
|
|
</div>
|
|
)}
|
|
|
|
{youtubes.map((seg, i) => (
|
|
<a key={`yt-${i}`} href={seg.value} target="_blank" rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer">
|
|
<img src={`https://img.youtube.com/vi/${seg.mediaId}/hqdefault.jpg`} alt=""
|
|
className="w-28 h-16 rounded-sm object-cover shrink-0" loading="lazy" />
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">YouTube</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{vimeos.map((seg, i) => (
|
|
<a key={`vim-${i}`} href={seg.value} target="_blank" rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer">
|
|
<div className="w-10 h-10 rounded-full bg-black/40 flex items-center justify-center shrink-0">
|
|
<svg width="14" height="14" viewBox="0 0 20 20" fill="white"><polygon points="6,3 17,10 6,17" /></svg>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Vimeo</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{spotifys.map((seg, i) => (
|
|
<a key={`sp-${i}`} href={seg.value} target="_blank" rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer">
|
|
<div className="w-10 h-10 rounded-full bg-[#1DB954]/20 flex items-center justify-center shrink-0">
|
|
<span className="text-[#1DB954] text-lg font-bold">S</span>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Spotify · {seg.mediaType}</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{tidals.map((seg, i) => (
|
|
<a key={`td-${i}`} href={seg.value} target="_blank" rel="noopener noreferrer"
|
|
className="mt-2 flex items-center gap-3 rounded-sm bg-bg-raised border border-border p-3 hover:bg-bg-hover transition-colors cursor-pointer">
|
|
<div className="w-10 h-10 rounded-full bg-white/10 flex items-center justify-center shrink-0">
|
|
<span className="text-white text-lg font-bold">T</span>
|
|
</div>
|
|
<div className="min-w-0">
|
|
<div className="text-[11px] text-text-muted">Tidal · {seg.mediaType}</div>
|
|
<div className="text-[12px] text-accent truncate">{seg.value}</div>
|
|
</div>
|
|
</a>
|
|
))}
|
|
|
|
{quoteIds.map((id) => (
|
|
<QuotePreview key={id} eventId={id} />
|
|
))}
|
|
</div>
|
|
);
|
|
}
|