mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-16 01:03:49 +00:00
- Add ImageArtifact component for displaying images (.png, .jpg, .jpeg, .gif, .webp, .bmp, .ico) - Images stored as base64, displayed via data URLs - Download button properly decodes base64 to Uint8Array for valid binary downloads - Fix Lit ChildPart error: use CSS rotation instead of innerHTML manipulation in collapsible headers Changes: - web-ui/src/tools/artifacts/ImageArtifact.ts: New image artifact component - web-ui/src/tools/artifacts/artifacts.ts: Add "image" file type support - web-ui/src/tools/renderer-registry.ts: Fix collapsible chevron to use CSS rotation - web-ui/src/index.ts: Export ImageArtifact
116 lines
3.1 KiB
TypeScript
116 lines
3.1 KiB
TypeScript
import { DownloadButton } from "@mariozechner/mini-lit";
|
|
import { html, type TemplateResult } from "lit";
|
|
import { customElement, property } from "lit/decorators.js";
|
|
import { i18n } from "../../utils/i18n.js";
|
|
import { ArtifactElement } from "./ArtifactElement.js";
|
|
|
|
@customElement("image-artifact")
|
|
export class ImageArtifact extends ArtifactElement {
|
|
@property({ type: String }) private _content = "";
|
|
|
|
get content(): string {
|
|
return this._content;
|
|
}
|
|
|
|
set content(value: string) {
|
|
this._content = value;
|
|
this.requestUpdate();
|
|
}
|
|
|
|
protected override createRenderRoot(): HTMLElement | DocumentFragment {
|
|
return this;
|
|
}
|
|
|
|
override connectedCallback(): void {
|
|
super.connectedCallback();
|
|
this.style.display = "block";
|
|
this.style.height = "100%";
|
|
}
|
|
|
|
private getMimeType(): string {
|
|
const ext = this.filename.split(".").pop()?.toLowerCase();
|
|
if (ext === "jpg" || ext === "jpeg") return "image/jpeg";
|
|
if (ext === "gif") return "image/gif";
|
|
if (ext === "webp") return "image/webp";
|
|
if (ext === "svg") return "image/svg+xml";
|
|
if (ext === "bmp") return "image/bmp";
|
|
if (ext === "ico") return "image/x-icon";
|
|
return "image/png";
|
|
}
|
|
|
|
private getImageUrl(): string {
|
|
// If content is already a data URL, use it directly
|
|
if (this._content.startsWith("data:")) {
|
|
return this._content;
|
|
}
|
|
// Otherwise assume it's base64 and construct data URL
|
|
return `data:${this.getMimeType()};base64,${this._content}`;
|
|
}
|
|
|
|
private decodeBase64(): Uint8Array {
|
|
let base64Data: string;
|
|
|
|
// If content is a data URL, extract the base64 part
|
|
if (this._content.startsWith("data:")) {
|
|
const base64Match = this._content.match(/base64,(.+)/);
|
|
if (base64Match) {
|
|
base64Data = base64Match[1];
|
|
} else {
|
|
// Not a base64 data URL, return empty
|
|
return new Uint8Array(0);
|
|
}
|
|
} else {
|
|
// Otherwise use content as-is
|
|
base64Data = this._content;
|
|
}
|
|
|
|
// Decode base64 to binary string
|
|
const binaryString = atob(base64Data);
|
|
|
|
// Convert binary string to Uint8Array
|
|
const bytes = new Uint8Array(binaryString.length);
|
|
for (let i = 0; i < binaryString.length; i++) {
|
|
bytes[i] = binaryString.charCodeAt(i);
|
|
}
|
|
|
|
return bytes;
|
|
}
|
|
|
|
public getHeaderButtons() {
|
|
return html`
|
|
<div class="flex items-center gap-1">
|
|
${DownloadButton({
|
|
content: this.decodeBase64(),
|
|
filename: this.filename,
|
|
mimeType: this.getMimeType(),
|
|
title: i18n("Download"),
|
|
})}
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
override render(): TemplateResult {
|
|
return html`
|
|
<div class="h-full flex flex-col bg-background overflow-auto">
|
|
<div class="flex-1 flex items-center justify-center p-4">
|
|
<img
|
|
src="${this.getImageUrl()}"
|
|
alt="${this.filename}"
|
|
class="max-w-full max-h-full object-contain"
|
|
@error=${(e: Event) => {
|
|
const target = e.target as HTMLImageElement;
|
|
target.src =
|
|
"data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ctext x='50' y='50' text-anchor='middle' dominant-baseline='middle' fill='%23999'%3EImage Error%3C/text%3E%3C/svg%3E";
|
|
}}
|
|
/>
|
|
</div>
|
|
</div>
|
|
`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"image-artifact": ImageArtifact;
|
|
}
|
|
}
|