mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
20 lines
535 B
TypeScript
20 lines
535 B
TypeScript
import { transformDimensionAndPosition } from '@plugin/transformers/partials';
|
|
|
|
import { GroupShape } from '@ui/lib/types/group/groupShape';
|
|
|
|
import { transformSceneNode } from '.';
|
|
|
|
export const transformGroupNode = async (
|
|
node: GroupNode,
|
|
baseX: number,
|
|
baseY: number
|
|
): Promise<GroupShape> => {
|
|
return {
|
|
type: 'group',
|
|
name: node.name,
|
|
children: await Promise.all(
|
|
node.children.map(child => transformSceneNode(child, baseX, baseY))
|
|
),
|
|
...transformDimensionAndPosition(node, baseX, baseY)
|
|
};
|
|
};
|