Add generic file attachments to chat messages

Messages can now carry an arbitrary file (MessageFile), parallel to the
existing MessageImage feature rather than a refactor of it. Files serve
with Content-Disposition: attachment to force a download and prevent an
uploaded HTML/SVG from executing same-origin. No content-type allowlist,
same 8MB cap as images for now (a separate size-limit redesign is tracked
as its own issue).

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 08:02:55 -06:00
co-authored by Claude Sonnet 5
parent 89be497fdb
commit c78d7454b6
21 changed files with 697 additions and 55 deletions
+32
View File
@@ -130,6 +130,38 @@
object-fit: cover;
}
.composer-attachment-file {
display: flex;
align-items: center;
gap: 6px;
background: var(--ds-surface-2);
border: 1px solid var(--ds-border);
border-radius: var(--radius);
padding: 6px 28px 6px 10px;
color: var(--ds-text);
max-width: 260px;
}
.composer-attachment-file svg {
flex: none;
color: var(--ds-muted);
}
.composer-attachment-filename {
font-size: 0.82rem;
font-weight: 600;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.composer-attachment-size {
font-size: 0.72rem;
color: var(--ds-muted);
font-family: var(--mono);
flex: none;
}
.composer-attachment-remove {
position: absolute;
top: -6px;