feat: add media overflow pickers

This commit is contained in:
TerryM
2026-05-27 15:28:51 +08:00
parent 23a7807bef
commit f5e858659f
2 changed files with 311 additions and 6 deletions

View File

@@ -1,10 +1,13 @@
import { Play } from "lucide-react";
import { useRef, useState } from "react";
import { ArrowDownToLine, LoaderCircle, Play, X } from "lucide-react";
import { useEffect, useRef, useState } from "react";
import { createPortal } from "react-dom";
import { useI18n } from "../../../i18n";
import type { Attachment, Post } from "../../../types/post";
import { AttachmentDownloadPill } from "../AttachmentDownloadPill";
import { useVideoPlayer } from "../overlays/VideoPlayer";
import { autolink } from "../utils/autolink";
import { downloadAttachment } from "../utils/downloadFile";
import { formatBytes } from "../utils/formatBytes";
import { postDisplayText } from "../utils/postText";
const MAX_VISIBLE = 4;
@@ -29,11 +32,13 @@ function VideoAttachmentCard({
attachment,
compact = false,
overlayCount,
onMoreClick,
}: {
postId: string;
attachment: Attachment;
compact?: boolean;
overlayCount?: number;
onMoreClick?: () => void;
}) {
const { openVideo } = useVideoPlayer();
const [playing, setPlaying] = useState(false);
@@ -103,10 +108,10 @@ function VideoAttachmentCard({
type="button"
onClick={(e) => {
e.stopPropagation();
openVideo(attachment, 0);
onMoreClick?.();
}}
className="absolute inset-0 flex items-center justify-center bg-black/45 text-3xl font-semibold text-white"
aria-label="Open more videos"
aria-label="Open video list"
>
+{overlayCount}
</button>
@@ -140,8 +145,156 @@ function VideoAttachmentCard({
);
}
function AttachmentListDownloadButton({
postId,
attachment,
}: {
postId: string;
attachment: Attachment;
}) {
const { t } = useI18n();
const [isDownloading, setIsDownloading] = useState(false);
const handleDownload = () => {
if (isDownloading) return;
setIsDownloading(true);
void downloadAttachment(postId, attachment.id, attachment.filename)
.finally(() => setIsDownloading(false))
.catch(() => {});
};
return (
<button
type="button"
onClick={(e) => {
e.stopPropagation();
handleDownload();
}}
disabled={isDownloading}
className="flex h-9 w-9 shrink-0 items-center justify-center rounded-full bg-white/10 text-white transition hover:bg-white/20 disabled:cursor-wait"
aria-label={
isDownloading ? t("downloading") : `Download ${attachment.filename}`
}
aria-busy={isDownloading}
>
{isDownloading ? (
<LoaderCircle className="h-4 w-4 animate-spin" strokeWidth={2.3} />
) : (
<ArrowDownToLine className="h-4 w-4" strokeWidth={2.3} />
)}
</button>
);
}
function VideoListDialog({
postId,
videos,
onClose,
onPick,
}: {
postId: string;
videos: Attachment[];
onClose: () => void;
onPick: (attachment: Attachment) => void;
}) {
useEffect(() => {
const onKey = (event: KeyboardEvent) => {
if (event.key === "Escape") onClose();
};
window.addEventListener("keydown", onKey);
return () => window.removeEventListener("keydown", onKey);
}, [onClose]);
return createPortal(
<div
className="fixed inset-0 z-[100] flex items-center justify-center bg-black/75 px-4 backdrop-blur-sm"
onClick={onClose}
role="dialog"
aria-modal="true"
aria-label="Video list"
>
<div
className="w-full max-w-md overflow-hidden rounded-2xl border border-ark-line bg-ark-panel shadow-2xl"
onClick={(e) => e.stopPropagation()}
>
<div className="flex items-center justify-between border-b border-ark-line px-4 py-3">
<div className="text-sm font-semibold text-neutral-100"></div>
<button
type="button"
onClick={onClose}
className="flex h-8 w-8 items-center justify-center rounded-full bg-white/10 text-white transition hover:bg-white/20"
aria-label="Close"
>
<X className="h-4 w-4" />
</button>
</div>
<div className="max-h-[70vh] overflow-y-auto p-2 [-ms-overflow-style:none] [scrollbar-width:none] [&::-webkit-scrollbar]:hidden">
{videos.map((video, index) => {
const thumb = video.posterUrl ?? video.thumbnailUrl;
const previewVideoUrl = video.url.includes("#")
? video.url
: `${video.url}#t=0.1`;
const duration = formatDuration(video.durationSec);
return (
<div
key={video.id}
className="flex w-full items-center gap-3 rounded-xl p-2 text-left transition hover:bg-white/5"
>
<button
type="button"
onClick={() => onPick(video)}
className="flex min-w-0 flex-1 items-center gap-3 text-left"
>
<div className="relative h-16 w-24 shrink-0 overflow-hidden rounded-lg bg-black">
{thumb ? (
<img
src={thumb}
alt=""
className="h-full w-full object-cover"
/>
) : (
<video
src={previewVideoUrl}
preload="metadata"
muted
playsInline
className="h-full w-full object-cover"
aria-hidden="true"
/>
)}
<div className="absolute inset-0 flex items-center justify-center bg-black/20 text-white">
<Play className="h-4 w-4 fill-white" />
</div>
</div>
<div className="min-w-0 flex-1">
<div className="truncate text-sm font-medium text-neutral-100">
{index + 1}
</div>
<div className="mt-1 truncate text-xs text-neutral-400">
{[duration, formatBytes(video.sizeBytes)]
.filter(Boolean)
.join(" · ")}
</div>
</div>
</button>
<AttachmentListDownloadButton
postId={postId}
attachment={video}
/>
</div>
);
})}
</div>
</div>
</div>,
document.body,
);
}
export function VideoBubble({ post }: { post: Post }) {
const { lang } = useI18n();
const { openVideo } = useVideoPlayer();
const [listOpen, setListOpen] = useState(false);
const videos = post.attachments.filter(isVideoAttachment);
const text = postDisplayText(post, lang);
const shouldMerge = videos.length > MAX_VISIBLE;
@@ -163,6 +316,7 @@ export function VideoBubble({ post }: { post: Post }) {
attachment={att}
compact
overlayCount={isLastSlot ? extra : undefined}
onMoreClick={() => setListOpen(true)}
/>
);
})}
@@ -172,6 +326,17 @@ export function VideoBubble({ post }: { post: Post }) {
{autolink(text)}
</div>
) : null}
{listOpen ? (
<VideoListDialog
postId={post.id}
videos={videos}
onClose={() => setListOpen(false)}
onPick={(att) => {
setListOpen(false);
openVideo(att, 0);
}}
/>
) : null}
</div>
);
}