feat: 相册下载胶囊自适应尺寸(随图块大小缩放)

- AttachmentDownloadPill 新增 adaptive 模式:用容器查询单位 cqw + clamp,
  尺寸随所在容器宽度缩放(图标框 22~30px、图标 13~18px、文字 10~12px)
- 相册图块设 container-type: inline-size 作为查询容器,小缩略图上的下载按钮
  自动缩小;单图/视频默认固定尺寸不受影响

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
TerryM
2026-05-30 00:52:23 +08:00
parent d7e2e56cde
commit 15bcb6bdf0
2 changed files with 35 additions and 6 deletions

View File

@@ -12,6 +12,14 @@ type AttachmentDownloadPillProps = {
attachment: Attachment; attachment: Attachment;
leadingLabel?: string; leadingLabel?: string;
className?: string; className?: string;
/**
* When true, the pill scales with its container's width via container-query
* units (clamped to a min/max). The host element must establish a query
* container (e.g. `style={{ containerType: "inline-size" }}`). Use this on
* album tiles so the pill shrinks on small thumbnails. Defaults to a fixed
* size for standalone images/videos.
*/
adaptive?: boolean;
}; };
export function AttachmentDownloadPill({ export function AttachmentDownloadPill({
@@ -19,6 +27,7 @@ export function AttachmentDownloadPill({
attachment, attachment,
leadingLabel, leadingLabel,
className = "absolute left-2 top-2", className = "absolute left-2 top-2",
adaptive = false,
}: AttachmentDownloadPillProps) { }: AttachmentDownloadPillProps) {
const { t } = useI18n(); const { t } = useI18n();
const { showToast } = useToast(); const { showToast } = useToast();
@@ -38,28 +47,42 @@ export function AttachmentDownloadPill({
} }
}; };
// Fixed default vs. container-query-driven adaptive sizing (clamped).
const fontCls = adaptive ? "text-[clamp(10px,5cqw,12px)]" : "text-[12px]";
const squareCls = adaptive
? "h-[clamp(22px,11cqw,30px)] w-[clamp(22px,11cqw,30px)]"
: "h-[30px] w-[30px]";
const iconCls = adaptive
? "h-[clamp(13px,6.5cqw,18px)] w-[clamp(13px,6.5cqw,18px)]"
: "h-[18px] w-[18px]";
const textBoxCls = adaptive
? "h-[clamp(22px,11cqw,30px)] px-[clamp(6px,3cqw,10px)]"
: "h-[30px] px-2.5";
return ( return (
<button <button
type="button" type="button"
onClick={handleDownload} onClick={handleDownload}
disabled={isDownloading} disabled={isDownloading}
className={`group z-10 inline-flex overflow-hidden rounded-full bg-black/80 text-[12px] text-white shadow-lg ring-1 ring-inset ring-white/20 backdrop-blur-md transition hover:bg-black/90 disabled:cursor-wait ${className}`} className={`group z-10 inline-flex overflow-hidden rounded-full bg-black/80 ${fontCls} text-white shadow-lg ring-1 ring-inset ring-white/20 backdrop-blur-md transition hover:bg-black/90 disabled:cursor-wait ${className}`}
aria-label={ aria-label={
isDownloading ? t("downloading") : `Download ${attachment.filename}` isDownloading ? t("downloading") : `Download ${attachment.filename}`
} }
aria-busy={isDownloading} aria-busy={isDownloading}
> >
<span className="flex h-[30px] w-[30px] items-center justify-center bg-[#545454]/50 transition group-hover:bg-[#545454]/70"> <span
className={`flex ${squareCls} items-center justify-center bg-[#545454]/50 transition group-hover:bg-[#545454]/70`}
>
{isDownloading ? ( {isDownloading ? (
<LoaderCircle <LoaderCircle
className="h-[18px] w-[18px] animate-spin" className={`${iconCls} animate-spin`}
strokeWidth={2.3} strokeWidth={2.3}
/> />
) : ( ) : (
<DownloadCloudIcon className="h-[18px] w-[18px]" /> <DownloadCloudIcon className={iconCls} />
)} )}
</span> </span>
<span className="flex h-[30px] items-center gap-0.5 px-2.5"> <span className={`flex ${textBoxCls} items-center gap-0.5`}>
{isDownloading ? ( {isDownloading ? (
t("downloading") t("downloading")
) : ( ) : (

View File

@@ -51,6 +51,8 @@ export function AlbumBubble({ post }: { post: Post }) {
top: `${tile.top * 100}%`, top: `${tile.top * 100}%`,
width: `calc(${tile.width * 100}% - ${ALBUM_GAP}px)`, width: `calc(${tile.width * 100}% - ${ALBUM_GAP}px)`,
height: `calc(${tile.height * 100}% - ${ALBUM_GAP}px)`, height: `calc(${tile.height * 100}% - ${ALBUM_GAP}px)`,
// Query container so the download pill scales with this tile.
containerType: "inline-size",
}} }}
> >
<button <button
@@ -76,7 +78,11 @@ export function AlbumBubble({ post }: { post: Post }) {
) : null} ) : null}
</button> </button>
{!isLastSlot ? ( {!isLastSlot ? (
<AttachmentDownloadPill postId={post.id} attachment={att} /> <AttachmentDownloadPill
postId={post.id}
attachment={att}
adaptive
/>
) : null} ) : null}
</div> </div>
); );