Enhance canvas functionality by adding media preview capabilities and image upload handling. Introduce compressed image previews during uploads, improve media library integration, and implement retry logic for bridge edge creation. Update dashboard to display media previews and optimize image node handling.

This commit is contained in:
Matthias
2026-04-08 20:44:31 +02:00
parent a7eb2bc99c
commit b7f24223f2
43 changed files with 4064 additions and 148 deletions

View File

@@ -298,4 +298,61 @@ describe("loadSourceBitmap", () => {
await expect(loadSourceBitmap(sourceUrl)).resolves.toBe(secondBitmap);
expect(fetch).toHaveBeenCalledTimes(2);
});
it("extracts the first decodable frame for video sources", async () => {
const response = {
ok: true,
status: 200,
headers: {
get: vi.fn().mockReturnValue("video/mp4"),
},
blob: vi.fn().mockResolvedValue(blob),
};
const fakeVideo: Partial<HTMLVideoElement> & {
onloadeddata: ((event: Event) => void) | null;
onerror: ((event: Event) => void) | null;
load: () => void;
} = {
muted: false,
playsInline: false,
preload: "none",
onloadeddata: null,
onerror: null,
load() {
this.onloadeddata?.(new Event("loadeddata"));
},
pause: vi.fn(),
removeAttribute: vi.fn(),
};
const createObjectUrl = vi.fn().mockReturnValue("blob:video-source");
const revokeObjectUrl = vi.fn();
const nativeCreateElement = document.createElement.bind(document);
vi.stubGlobal(
"URL",
Object.assign(URL, {
createObjectURL: createObjectUrl,
revokeObjectURL: revokeObjectUrl,
}),
);
vi.spyOn(document, "createElement").mockImplementation((tagName: string) => {
if (tagName.toLowerCase() === "video") {
return fakeVideo as HTMLVideoElement;
}
return nativeCreateElement(tagName);
});
vi.stubGlobal("fetch", vi.fn().mockResolvedValue(response));
const { loadSourceBitmap } = await importSubject();
await expect(loadSourceBitmap("https://cdn.example.com/video.mp4")).resolves.toBe(bitmap);
expect(response.headers.get).toHaveBeenCalledWith("content-type");
expect(createObjectUrl).toHaveBeenCalledWith(blob);
expect(createImageBitmap).toHaveBeenCalledWith(fakeVideo);
expect(revokeObjectUrl).toHaveBeenCalledWith("blob:video-source");
});
});