mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-01-05 06:10:52 -05:00
7b3192936e
* wip * wip * wipo * more structure * wip * id library wip * wip * main instance working * improvements * fix node order * refactor * remove not used method * refactor * fix component set translation * refactor * add changelog * penpot lib update --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
28 lines
819 B
TypeScript
28 lines
819 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { FrameShape } from '@ui/lib/types/shapes/frameShape';
|
|
import { Uuid } from '@ui/lib/types/utils/uuid';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolBlendMode, symbolFillGradients } from '@ui/parser/creators/symbols';
|
|
|
|
import { createItems } from '.';
|
|
|
|
export const createArtboard = (
|
|
file: PenpotFile,
|
|
{ type, fills, blendMode, children = [], figmaId, figmaRelatedId, shapeRef, ...rest }: FrameShape
|
|
): Uuid | undefined => {
|
|
const id = parseFigmaId(file, figmaId);
|
|
|
|
file.addArtboard({
|
|
id,
|
|
shapeRef: shapeRef ?? parseFigmaId(file, figmaRelatedId, true),
|
|
fills: symbolFillGradients(fills),
|
|
blendMode: symbolBlendMode(blendMode),
|
|
...rest
|
|
});
|
|
|
|
createItems(file, children);
|
|
|
|
file.closeArtboard();
|
|
|
|
return id;
|
|
};
|