2026-05-27 15:28:51 +08:00
|
|
|
import { ArrowDownToLine, LoaderCircle, X } from "lucide-react";
|
|
|
|
|
import { useEffect, useState } from "react";
|
|
|
|
|
import { createPortal } from "react-dom";
|
2026-05-26 12:07:13 +08:00
|
|
|
import { useI18n } from "../../../i18n";
|
2026-05-25 05:25:57 +08:00
|
|
|
import type { Attachment, Post } from "../../../types/post";
|
2026-05-27 15:30:40 +08:00
|
|
|
import { AttachmentDownloadPill } from "../AttachmentDownloadPill";
|
2026-05-25 05:25:57 +08:00
|
|
|
import { useLightbox } from "../overlays/ImageLightbox";
|
|
|
|
|
import { autolink } from "../utils/autolink";
|
2026-05-27 15:28:51 +08:00
|
|
|
import { downloadAttachment } from "../utils/downloadFile";
|
|
|
|
|
import { formatBytes } from "../utils/formatBytes";
|
2026-05-26 12:07:13 +08:00
|
|
|
import { postDisplayText } from "../utils/postText";
|
2026-05-25 05:25:57 +08:00
|
|
|
|
|
|
|
|
const MAX_VISIBLE = 4;
|
|
|
|
|
|
|
|
|
|
function imageRatio(att: Attachment) {
|
|
|
|
|
return att.width && att.height ? `${att.width} / ${att.height}` : "4 / 3";
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-27 15:28:51 +08:00
|
|
|
function ImageListDownloadButton({
|
|
|
|
|
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 ImageListDialog({
|
|
|
|
|
postId,
|
|
|
|
|
images,
|
|
|
|
|
onClose,
|
|
|
|
|
onPick,
|
|
|
|
|
}: {
|
|
|
|
|
postId: string;
|
|
|
|
|
images: Attachment[];
|
|
|
|
|
onClose: () => void;
|
|
|
|
|
onPick: (index: number) => 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="Image 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">
|
|
|
|
|
{images.map((image, index) => (
|
|
|
|
|
<div
|
|
|
|
|
key={image.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(index)}
|
|
|
|
|
className="flex min-w-0 flex-1 items-center gap-3 text-left"
|
|
|
|
|
>
|
|
|
|
|
<div className="h-16 w-16 shrink-0 overflow-hidden rounded-lg bg-black">
|
|
|
|
|
<img
|
|
|
|
|
src={image.thumbnailUrl ?? image.url}
|
|
|
|
|
alt=""
|
|
|
|
|
className="h-full w-full object-cover"
|
|
|
|
|
/>
|
|
|
|
|
</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">
|
|
|
|
|
{formatBytes(image.sizeBytes)}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</button>
|
|
|
|
|
<ImageListDownloadButton postId={postId} attachment={image} />
|
|
|
|
|
</div>
|
|
|
|
|
))}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>,
|
|
|
|
|
document.body,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-25 05:25:57 +08:00
|
|
|
export function AlbumBubble({ post }: { post: Post }) {
|
|
|
|
|
const { openLightbox } = useLightbox();
|
2026-05-26 12:07:13 +08:00
|
|
|
const { lang } = useI18n();
|
2026-05-27 15:28:51 +08:00
|
|
|
const [listOpen, setListOpen] = useState(false);
|
2026-05-25 05:25:57 +08:00
|
|
|
const images = post.attachments;
|
2026-05-26 12:07:13 +08:00
|
|
|
const text = postDisplayText(post, lang);
|
2026-05-25 05:25:57 +08:00
|
|
|
const shouldMerge = images.length > MAX_VISIBLE;
|
|
|
|
|
|
|
|
|
|
if (!shouldMerge) {
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-1.5">
|
|
|
|
|
{images.map((att, i) => (
|
2026-05-27 15:30:40 +08:00
|
|
|
<div
|
2026-05-25 05:25:57 +08:00
|
|
|
key={att.id}
|
2026-05-27 15:30:40 +08:00
|
|
|
className="relative max-h-[180px] w-full overflow-hidden rounded-xl min-[440px]:max-h-[200px] md:max-h-[240px] lg:max-h-[280px]"
|
2026-05-25 05:25:57 +08:00
|
|
|
>
|
2026-05-27 15:30:40 +08:00
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => openLightbox(images, i, text, post.id)}
|
|
|
|
|
className="block w-full"
|
|
|
|
|
aria-label={att.filename}
|
|
|
|
|
>
|
|
|
|
|
<img
|
|
|
|
|
src={att.url}
|
|
|
|
|
alt={att.filename}
|
|
|
|
|
loading="lazy"
|
|
|
|
|
className="h-full w-full object-cover"
|
|
|
|
|
style={{ aspectRatio: imageRatio(att) }}
|
|
|
|
|
/>
|
|
|
|
|
</button>
|
|
|
|
|
<AttachmentDownloadPill postId={post.id} attachment={att} />
|
|
|
|
|
</div>
|
2026-05-25 05:25:57 +08:00
|
|
|
))}
|
2026-05-26 12:07:13 +08:00
|
|
|
{text ? (
|
2026-05-26 18:03:07 +08:00
|
|
|
<div className="message-stream-copyable-text select-text whitespace-pre-wrap break-words text-[14px] leading-snug text-neutral-100">
|
2026-05-26 12:07:13 +08:00
|
|
|
{autolink(text)}
|
2026-05-25 05:25:57 +08:00
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const visible = images.slice(0, MAX_VISIBLE);
|
|
|
|
|
const extra = images.length - MAX_VISIBLE;
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="flex flex-col gap-1.5">
|
|
|
|
|
<div className="grid h-[220px] grid-cols-2 grid-rows-2 gap-[2px] overflow-hidden rounded-xl min-[440px]:h-[250px] md:h-[300px] lg:h-[340px]">
|
|
|
|
|
{visible.map((att, i) => {
|
|
|
|
|
const isLastSlot = i === MAX_VISIBLE - 1 && extra > 0;
|
|
|
|
|
return (
|
2026-05-27 15:30:40 +08:00
|
|
|
<div
|
2026-05-25 05:25:57 +08:00
|
|
|
key={att.id}
|
2026-05-27 15:30:40 +08:00
|
|
|
className="relative h-full w-full overflow-hidden"
|
2026-05-25 05:25:57 +08:00
|
|
|
>
|
2026-05-27 15:30:40 +08:00
|
|
|
<button
|
|
|
|
|
type="button"
|
|
|
|
|
onClick={() => {
|
|
|
|
|
if (isLastSlot) setListOpen(true);
|
|
|
|
|
else openLightbox(images, i, text, post.id);
|
|
|
|
|
}}
|
|
|
|
|
className="block h-full w-full"
|
|
|
|
|
aria-label={isLastSlot ? "Open image list" : att.filename}
|
|
|
|
|
>
|
|
|
|
|
<img
|
|
|
|
|
src={att.thumbnailUrl ?? att.url}
|
|
|
|
|
alt={att.filename}
|
|
|
|
|
loading="lazy"
|
|
|
|
|
className={`h-full w-full object-cover ${
|
|
|
|
|
isLastSlot ? "blur-sm scale-105" : ""
|
|
|
|
|
}`}
|
|
|
|
|
/>
|
|
|
|
|
{isLastSlot ? (
|
|
|
|
|
<div className="absolute inset-0 flex items-center justify-center bg-black/45 text-3xl font-semibold text-white">
|
|
|
|
|
+{extra}
|
|
|
|
|
</div>
|
|
|
|
|
) : null}
|
|
|
|
|
</button>
|
|
|
|
|
{!isLastSlot ? (
|
|
|
|
|
<AttachmentDownloadPill postId={post.id} attachment={att} />
|
2026-05-25 05:25:57 +08:00
|
|
|
) : null}
|
2026-05-27 15:30:40 +08:00
|
|
|
</div>
|
2026-05-25 05:25:57 +08:00
|
|
|
);
|
|
|
|
|
})}
|
|
|
|
|
</div>
|
2026-05-26 12:07:13 +08:00
|
|
|
{text ? (
|
2026-05-26 18:03:07 +08:00
|
|
|
<div className="message-stream-copyable-text select-text whitespace-pre-wrap break-words text-[14px] leading-snug text-neutral-100">
|
2026-05-26 12:07:13 +08:00
|
|
|
{autolink(text)}
|
2026-05-25 05:25:57 +08:00
|
|
|
</div>
|
|
|
|
|
) : null}
|
2026-05-27 15:28:51 +08:00
|
|
|
{listOpen ? (
|
|
|
|
|
<ImageListDialog
|
|
|
|
|
postId={post.id}
|
|
|
|
|
images={images}
|
|
|
|
|
onClose={() => setListOpen(false)}
|
|
|
|
|
onPick={(index) => {
|
|
|
|
|
setListOpen(false);
|
|
|
|
|
openLightbox(images, index, text, post.id);
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
) : null}
|
2026-05-25 05:25:57 +08:00
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
}
|