import { DownloadButton } from "@mariozechner/mini-lit/dist/DownloadButton.js"; import { renderAsync } from "docx-preview"; import { html, type TemplateResult } from "lit"; import { customElement, property, state } from "lit/decorators.js"; import { i18n } from "../../utils/i18n.js"; import { ArtifactElement } from "./ArtifactElement.js"; @customElement("docx-artifact") export class DocxArtifact extends ArtifactElement { @property({ type: String }) private _content = ""; @state() private error: string | null = null; get content(): string { return this._content; } set content(value: string) { this._content = value; this.error = null; this.requestUpdate(); } protected override createRenderRoot(): HTMLElement | DocumentFragment { return this; } override connectedCallback(): void { super.connectedCallback(); this.style.display = "block"; this.style.height = "100%"; } private base64ToArrayBuffer(base64: string): ArrayBuffer { // Remove data URL prefix if present let base64Data = base64; if (base64.startsWith("data:")) { const base64Match = base64.match(/base64,(.+)/); if (base64Match) { base64Data = base64Match[1]; } } const binaryString = atob(base64Data); const bytes = new Uint8Array(binaryString.length); for (let i = 0; i < binaryString.length; i++) { bytes[i] = binaryString.charCodeAt(i); } return bytes.buffer; } private decodeBase64(): Uint8Array { let base64Data = this._content; if (this._content.startsWith("data:")) { const base64Match = this._content.match(/base64,(.+)/); if (base64Match) { base64Data = base64Match[1]; } } const binaryString = atob(base64Data); 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`
${DownloadButton({ content: this.decodeBase64(), filename: this.filename, mimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document", title: i18n("Download"), })}
`; } override async updated(changedProperties: Map) { super.updated(changedProperties); if (changedProperties.has("_content") && this._content && !this.error) { await this.renderDocx(); } } private async renderDocx() { const container = this.querySelector("#docx-container"); if (!container || !this._content) return; try { const arrayBuffer = this.base64ToArrayBuffer(this._content); // Clear container first container.innerHTML = ""; // Create a wrapper div for the document const wrapper = document.createElement("div"); wrapper.className = "docx-wrapper-custom"; container.appendChild(wrapper); // Render the DOCX file into the wrapper await renderAsync(arrayBuffer, wrapper as HTMLElement, undefined, { className: "docx", inWrapper: true, ignoreWidth: true, ignoreHeight: false, ignoreFonts: false, breakPages: true, ignoreLastRenderedPageBreak: true, experimental: false, trimXmlDeclaration: true, useBase64URL: false, renderHeaders: true, renderFooters: true, renderFootnotes: true, renderEndnotes: true, }); // Apply custom styles to match theme and fix sizing const style = document.createElement("style"); style.textContent = ` #docx-container { padding: 0; } #docx-container .docx-wrapper-custom { max-width: 100%; overflow-x: auto; } #docx-container .docx-wrapper { max-width: 100% !important; margin: 0 !important; background: transparent !important; padding: 0em !important; } #docx-container .docx-wrapper > section.docx { box-shadow: none !important; border: none !important; border-radius: 0 !important; margin: 0 !important; padding: 2em !important; background: white !important; color: black !important; max-width: 100% !important; width: 100% !important; min-width: 0 !important; overflow-x: auto !important; } /* Fix tables and wide content */ #docx-container table { max-width: 100% !important; width: auto !important; overflow-x: auto !important; display: block !important; } #docx-container img { max-width: 100% !important; height: auto !important; } /* Fix paragraphs and text */ #docx-container p, #docx-container span, #docx-container div { max-width: 100% !important; word-wrap: break-word !important; overflow-wrap: break-word !important; } /* Hide page breaks in web view */ #docx-container .docx-page-break { display: none !important; } `; container.appendChild(style); } catch (error: any) { console.error("Error rendering DOCX:", error); this.error = error?.message || i18n("Failed to load document"); } } override render(): TemplateResult { if (this.error) { return html`
${i18n("Error loading document")}
${this.error}
`; } return html`
`; } } declare global { interface HTMLElementTagNameMap { "docx-artifact": DocxArtifact; } }