e533aebacd
- Move lit from dependencies to peerDependencies in web-ui to prevent multiple Lit instances being loaded - Update mini-lit from 0.1.8/0.1.10 to 0.2.0 in root package.json and web-ui/package.json - Install @tailwindcss/vite in web-ui/example - Run biome formatting fixes across codebase This resolves HMR custom element re-registration errors caused by duplicate Lit registries.
214 lines
5.5 KiB
TypeScript
214 lines
5.5 KiB
TypeScript
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`
|
|
<div class="flex items-center gap-1">
|
|
${DownloadButton({
|
|
content: this.decodeBase64(),
|
|
filename: this.filename,
|
|
mimeType: "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
|
|
title: i18n("Download"),
|
|
})}
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
override async updated(changedProperties: Map<string, any>) {
|
|
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`
|
|
<div class="h-full flex items-center justify-center bg-background p-4">
|
|
<div class="bg-destructive/10 border border-destructive text-destructive p-4 rounded-lg max-w-2xl">
|
|
<div class="font-medium mb-1">${i18n("Error loading document")}</div>
|
|
<div class="text-sm opacity-90">${this.error}</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
return html`
|
|
<div class="h-full flex flex-col bg-background overflow-auto">
|
|
<div id="docx-container" class="flex-1 overflow-auto"></div>
|
|
</div>
|
|
`;
|
|
}
|
|
}
|
|
|
|
declare global {
|
|
interface HTMLElementTagNameMap {
|
|
"docx-artifact": DocxArtifact;
|
|
}
|
|
}
|