120k

附件

显示包含媒体、元数据、上传状态和操作的文件或图像附件。

Workspace
workspace.pngPNG · 820 KB
Desk
desk-reference.jpgJPG · 1.1 MB
Office
office-reference.jpgJPG · 940 KB
sales-dashboard.pdfUploading · 64%
message-renderer.tsxTypeScript · 12 KB
import { FileCodeIcon, XIcon } from "lucide-react"

import {

Attachment 组件显示文件或图像附件及其媒体、名称和元数据,并支持可选操作和上传状态。可将其用于聊天编辑器、消息线程和上传列表中的文件与图像。

安装

pnpm dlx shadcn@latest add attachment

用法

import {
  Attachment,
  AttachmentAction,
  AttachmentActions,
  AttachmentContent,
  AttachmentDescription,
  AttachmentMedia,
  AttachmentTitle,
} from "@/components/ui/attachment"
<Attachment>
  <AttachmentMedia>
    <FileTextIcon />
  </AttachmentMedia>
  <AttachmentContent>
    <AttachmentTitle>sales-dashboard.pdf</AttachmentTitle>
    <AttachmentDescription>PDF · 2.4 MB</AttachmentDescription>
  </AttachmentContent>
  <AttachmentActions>
    <AttachmentAction aria-label="移除 sales-dashboard.pdf">
      <XIcon />
    </AttachmentAction>
  </AttachmentActions>
</Attachment>

组合

使用以下组合来构建附件:

Attachment
├── AttachmentMedia
├── AttachmentContent
│   ├── AttachmentTitle
│   └── AttachmentDescription
├── AttachmentActions
│   └── AttachmentAction
└── AttachmentTrigger

使用 AttachmentGroup 将多个附件排列在可滚动的行中:

AttachmentGroup
├── Attachment
└── Attachment

功能

  • 通过 AttachmentMedia 支持图标和图片媒体
  • 上传状态:idleuploadingprocessingerrordone,内置样式,并在进行中显示闪烁效果
  • 三种尺寸,以及水平或垂直方向
  • 全卡片式 AttachmentTrigger,可打开链接或对话框,同时操作按钮仍可独立点击
  • 可滚动、带吸附效果的 AttachmentGroup,并带有边缘渐隐效果
  • 通过每个部分的 className 属性自定义样式

图像

AttachmentMedia 上设置 variant="image",并在其中渲染一个 <img>。使用 orientation="vertical" 将媒体堆叠在内容上方。

Workspace
workspace.pngPNG · 820 KB
Desk
desk-reference.jpgJPG · 1.1 MB
Office
office-reference.jpgJPG · 940 KB
import { XIcon } from "lucide-react"

import {

状态

设置 state 以反映上传生命周期。uploadingprocessing 会使标题呈现闪烁效果,而 error 则会切换为破坏性样式。

selected-file.pdfReady to upload
design-system.zipUploading · 64%
market-research.pdfProcessing document
financial-model.xlsxUpload failed. Try again.
uploaded-report.pdfUploaded · 1.8 MB
import {
  CheckIcon,
  ClockIcon,

尺寸

使用 sizedefaultsmxs 之间切换。

Default attachmentPDF · 2.4 MB
Small attachmentPDF · 2.4 MB
Extra small attachment
import { FileTextIcon } from "lucide-react"

import {

将附件包裹在 AttachmentGroup 中,以将它们排列成一行支持水平滚动、自动吸附并带有边缘渐隐效果的布局。

briefing-notes.pdfPDF · 1.4 MB
workspace.png
workspace.pngPNG · 820 KB
customers.csvCSV · 18 KB
renderer.tsxTSX · 12 KB
import {
  FileCodeIcon,
  FileTextIcon,

触发器

添加一个 AttachmentTrigger,使整个卡片打开链接或对话框。它会填充操作区域后面的卡片空间,因此操作仍然可以点击。

research-summary.pdfOpen preview dialog
import { CopyIcon, FileSearchIcon, XIcon } from "lucide-react"

import {
<Dialog>
  <Attachment>
    {/* 媒体、内容、操作 */}
    <DialogTrigger>
      <AttachmentTrigger aria-label="预览 research-summary.pdf" />
    </DialogTrigger>
  </Attachment>
  <DialogContent>{/* ... */}</DialogContent>
</Dialog>

无障碍

AttachmentAction 渲染一个 Button,而 AttachmentTrigger 渲染一个真正的 <button>(或者通过 render 使用你提供的元素)。请遵循以下指南,确保两者都可操作且能被正确播报。

为仅包含图标的操作添加标签

AttachmentAction 通常仅包含图标,因此请为每个操作添加描述操作及其目标的 aria-label

<AttachmentAction aria-label="移除 sales-dashboard.pdf">
  <XIcon />
</AttachmentAction>

为触发器添加标签

AttachmentTrigger 会覆盖整个卡片且自身没有文本,因此请为其添加一个 aria-label,说明激活它会执行什么操作。

<AttachmentTrigger
  render={(props) => (
    <a
      {...props}
      href={url}
      target="_blank"
      rel="noreferrer"
      aria-label="打开 workspace.png"
    />
  )}
/>

触发器在堆叠顺序中位于操作之后,因此 AttachmentActionAttachmentTrigger 不会互相造成焦点陷阱——两者都可以分别聚焦和点击。

键盘滚动

AttachmentGroup 支持水平滚动。当其中的附件具有交互功能时,例如包含触发器或操作,键盘用户可以通过 Tab 键移动到它们,从而访问屏幕外的项目。对于一行仅用于展示的附件,请为组本身添加 tabIndex={0}role="group"aria-label",使其可聚焦并支持滚动。

不仅依赖颜色传达含义

error 状态使用具有破坏性的颜色。请将失败原因保留在 AttachmentDescription 中,确保该状态并非仅通过颜色传达。

API 参考

Attachment

附件的根容器。

PropTypeDefaultDescription
state"idle" | "uploading" | "processing" | "error" | "done""done"上传状态。驱动样式和闪烁效果。
size"default" | "sm" | "xs""default"附件尺寸。
orientation"horizontal" | "vertical""horizontal"将媒体内容放置在内容旁边或上方。
classNamestring-应用于根元素的其他类名。

AttachmentMedia

用于图标或图片预览的媒体插槽。

PropTypeDefaultDescription
variant"icon" | "image""icon"媒体内容是图标还是 <img>
classNamestring-应用于媒体插槽的其他类名。

AttachmentContent

包裹标题和描述。

PropTypeDefaultDescription
classNamestring-应用于内容插槽的其他类名。

AttachmentTitle

附件名称。当附件处于 uploadingprocessing 状态时显示闪烁效果。

PropTypeDefaultDescription
classNamestring-应用于标题的其他类名。

AttachmentDescription

次要元数据,例如文件类型、大小或上传状态。

PropTypeDefaultDescription
classNamestring-应用于描述的其他类名。

AttachmentActions

用于容纳一个或多个操作的容器,排列在附件末端。

PropTypeDefaultDescription
classNamestring-应用于操作的其他类名。

AttachmentAction

操作按钮。渲染一个 Button,并接受其所有属性。

PropTypeDefaultDescription
sizeButton["size"]"icon-xs"按钮尺寸。
...propsReact.ComponentProps<typeof Button>-传递给底层 Button 的属性。

AttachmentTrigger

用于激活附件的全卡片覆盖层。默认渲染为 <button>

PropTypeDefaultDescription
renderReactElement | function-渲染为其他元素,例如链接。
...propsReact.ComponentProps<"button">-传递给触发元素的属性。

AttachmentGroup

将附件排列为可水平滚动并支持吸附的行。

PropTypeDefaultDescription
classNamestring-应用于组的其他类名。