mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -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>
24 lines
753 B
TypeScript
24 lines
753 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { BoolShape } from '@ui/lib/types/shapes/boolShape';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolBlendMode, symbolBoolType, symbolFillGradients } from '@ui/parser/creators/symbols';
|
|
|
|
import { createItems } from '.';
|
|
|
|
export const createBool = (
|
|
file: PenpotFile,
|
|
{ type, fills, boolType, blendMode, figmaId, figmaRelatedId, children = [], ...rest }: BoolShape
|
|
) => {
|
|
file.addBool({
|
|
id: parseFigmaId(file, figmaId),
|
|
shapeRef: parseFigmaId(file, figmaRelatedId, true),
|
|
fills: symbolFillGradients(fills),
|
|
blendMode: symbolBlendMode(blendMode),
|
|
boolType: symbolBoolType(boolType),
|
|
...rest
|
|
});
|
|
|
|
createItems(file, children);
|
|
|
|
file.closeBool();
|
|
};
|