mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
7895daaea8
* Improve UX for larger files, when the download also takes time to process * add changelog
37 lines
851 B
TypeScript
37 lines
851 B
TypeScript
import { componentsLibrary } from '@plugin/ComponentLibrary';
|
|
import { imagesLibrary } from '@plugin/ImageLibrary';
|
|
import { sleep } from '@plugin/utils';
|
|
|
|
import { PenpotDocument } from '@ui/types';
|
|
|
|
import { transformPageNode } from '.';
|
|
|
|
export const transformDocumentNode = async (node: DocumentNode): Promise<PenpotDocument> => {
|
|
const children = [];
|
|
let currentPage = 1;
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_TOTAL_PAGES',
|
|
data: node.children.length
|
|
});
|
|
|
|
for (const page of node.children) {
|
|
await page.loadAsync();
|
|
|
|
children.push(await transformPageNode(page));
|
|
|
|
figma.ui.postMessage({
|
|
type: 'PROGRESS_PROCESSED_PAGES',
|
|
data: currentPage++
|
|
});
|
|
|
|
await sleep(0);
|
|
}
|
|
|
|
return {
|
|
name: node.name,
|
|
children,
|
|
components: componentsLibrary.all(),
|
|
images: imagesLibrary.all()
|
|
};
|
|
};
|