mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-20 11:28:30 +08:00
* unfinished implementation * Add frontend for the empty panel screen * Add an icon for Folder based on NodeFolder * fixed messages causing peicees of ui not to render on new document * Standardize nextTick syntax * WIP generisization of component subscriptions (not compiling yet) * Fix crash when loading font and there is no active document * Only advertise tool actions with a document * Fix failure to create new document * Initalise the properties panel * Fix highlight tab, canvas jump, warns and layer tree * Fix tests * Possibly fix some things? * Move WorkingColors layout definition to backend * Standardize action macro formatting * Provide typing for widgets in TS/Vue and associated cleanup * Fix viewport positioning initialization * Fix menu bar init at startup not document creation * Fix no viewport bounds bug * Change !=0 to >0 * Simplify the init system Closes #656 Co-authored-by: Keavon Chambers <keavon@keavon.com> Co-authored-by: 0hypercube <0hypercube@gmail.com>
19 lines
732 B
TypeScript
19 lines
732 B
TypeScript
import { Editor } from "@/wasm-communication/editor";
|
|
import { UpdateImageData } from "@/wasm-communication/messages";
|
|
|
|
export function createBlobManager(editor: Editor): void {
|
|
// Subscribe to process backend event
|
|
editor.subscriptions.subscribeJsMessage(UpdateImageData, (updateImageData) => {
|
|
updateImageData.image_data.forEach(async (element) => {
|
|
// Using updateImageData.image_data.buffer returns undefined for some reason?
|
|
const blob = new Blob([new Uint8Array(element.image_data.values()).buffer], { type: element.mime });
|
|
|
|
const url = URL.createObjectURL(blob);
|
|
|
|
const image = await createImageBitmap(blob);
|
|
|
|
editor.instance.set_image_blob_url(element.path, url, image.width, image.height);
|
|
});
|
|
});
|
|
}
|