0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-01-18 13:32:28 -05:00
penpot-exporter-figma-plugin/ui-src/converters/createPenpotGroup.ts

22 lines
516 B
TypeScript
Raw Normal View History

2024-05-13 10:12:58 +02:00
import { PenpotFile } from '@ui/lib/types/penpotFile';
2024-05-06 08:06:14 +02:00
import { GroupShape } from '@ui/lib/types/shapes/groupShape';
2024-04-16 09:24:53 +00:00
import { translateUiBlendMode } from '@ui/translators';
import { createPenpotItem } from '.';
2024-04-08 17:50:01 +02:00
export const createPenpotGroup = (
file: PenpotFile,
2024-04-16 09:24:53 +00:00
{ type, blendMode, children = [], ...rest }: GroupShape
2024-04-08 17:50:01 +02:00
) => {
file.addGroup({
2024-04-16 09:24:53 +00:00
blendMode: translateUiBlendMode(blendMode),
...rest
2024-04-10 11:14:12 +00:00
});
for (const child of children) {
createPenpotItem(file, child);
2024-04-08 17:50:01 +02:00
}
2024-04-10 11:14:12 +00:00
file.closeGroup();
2024-04-08 17:50:01 +02:00
};