0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/plugin-src/transformers/transformGroupNode.ts

21 lines
535 B
TypeScript
Raw Normal View History

2024-04-15 06:58:51 -05:00
import { transformDimensionAndPosition } from '@plugin/transformers/partials';
import { GroupShape } from '@ui/lib/types/group/groupShape';
2024-04-15 06:58:51 -05:00
import { transformSceneNode } from '.';
export const transformGroupNode = async (
node: GroupNode,
baseX: number,
baseY: number
): Promise<GroupShape> => {
return {
type: 'group',
name: node.name,
2024-04-15 06:58:51 -05:00
children: await Promise.all(
node.children.map(child => transformSceneNode(child, baseX, baseY))
),
...transformDimensionAndPosition(node, baseX, baseY)
};
};