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/converters/createPenpotGroup.ts

22 lines
478 B
TypeScript
Raw Normal View History

import { PenpotFile } from '@ui/lib/penpot';
import { GROUP_TYPE } from '@ui/lib/types/group/groupAttributes';
import { GroupShape } from '@ui/lib/types/group/groupShape';
import { createPenpotItem } from '.';
2024-04-08 10:50:01 -05:00
export const createPenpotGroup = (
file: PenpotFile,
{ type, children = [], ...rest }: GroupShape
2024-04-08 10:50:01 -05:00
) => {
file.addGroup({
type: GROUP_TYPE,
...rest
2024-04-10 06:14:12 -05:00
});
for (const child of children) {
createPenpotItem(file, child);
2024-04-08 10:50:01 -05:00
}
2024-04-10 06:14:12 -05:00
file.closeGroup();
2024-04-08 10:50:01 -05:00
};