mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
42 lines
891 B
TypeScript
42 lines
891 B
TypeScript
import { toArray } from '@common/map';
|
|
import { sleep } from '@common/sleep';
|
|
|
|
import { images as imagesLibrary } from '@plugin/libraries';
|
|
|
|
export const processImages = async (): Promise<Record<string, Uint8Array>> => {
|
|
const imageToDownload = toArray(imagesLibrary);
|
|
const images: Record<string, Uint8Array> = {};
|
|
|
|
if (imageToDownload.length === 0) return images;
|
|
|
|
let currentImage = 1;
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_TOTAL_ITEMS',
|
|
data: imageToDownload.length
|
|
});
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_STEP',
|
|
data: 'images'
|
|
});
|
|
|
|
for (const [key, image] of imageToDownload) {
|
|
const bytes = await image?.getBytesAsync();
|
|
|
|
if (bytes) {
|
|
images[key] = bytes;
|
|
}
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_PROCESSED_ITEMS',
|
|
data: currentImage++
|
|
});
|
|
|
|
await sleep(0);
|
|
}
|
|
|
|
await sleep(20);
|
|
|
|
return images;
|
|
};
|