0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/ui-src/parser/creators/createComponentInstance.ts
2024-06-26 08:11:57 +02:00

48 lines
1.1 KiB
TypeScript

import { PenpotFile } from '@ui/lib/types/penpotFile';
import { components, parseFigmaId } from '@ui/parser';
import { ComponentInstance } from '@ui/types';
import { createArtboard } from '.';
export const createComponentInstance = (
file: PenpotFile,
{
type,
mainComponentFigmaId,
figmaId,
figmaRelatedId,
isComponentRoot,
...shape
}: ComponentInstance
) => {
const uiComponent =
components.get(mainComponentFigmaId) ?? createUiComponent(file, mainComponentFigmaId);
if (!uiComponent) {
return;
}
shape.shapeRef = uiComponent.mainInstanceId;
shape.componentFile = file.getId();
shape.componentRoot = isComponentRoot;
shape.componentId = uiComponent.componentId;
createArtboard(file, shape);
};
const createUiComponent = (file: PenpotFile, mainComponentFigmaId: string) => {
const mainInstanceId = parseFigmaId(file, mainComponentFigmaId);
if (!mainInstanceId) {
return;
}
const uiComponent = {
componentId: file.newId(),
componentFigmaId: mainComponentFigmaId,
mainInstanceId
};
components.set(mainComponentFigmaId, uiComponent);
return uiComponent;
};