mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2025-02-02 20:58:47 -05:00
738ebfeffe
* remove symbols for blend mode * remove symbol for gradients * optimize symbols for path contents * optimize code * remove symbols
32 lines
995 B
TypeScript
32 lines
995 B
TypeScript
import { PenpotFile } from '@ui/lib/types/penpotFile';
|
|
import { TextContent, TextShape } from '@ui/lib/types/shapes/textShape';
|
|
import { parseFigmaId } from '@ui/parser';
|
|
import { symbolFills, symbolStrokes } from '@ui/parser/creators/symbols';
|
|
|
|
export const createText = (
|
|
file: PenpotFile,
|
|
{ type, figmaId, figmaRelatedId, ...shape }: TextShape
|
|
) => {
|
|
shape.id = parseFigmaId(file, figmaId);
|
|
shape.shapeRef = parseFigmaId(file, figmaRelatedId, true);
|
|
shape.content = parseContent(shape.content);
|
|
shape.strokes = symbolStrokes(shape.strokes);
|
|
|
|
file.createText(shape);
|
|
};
|
|
|
|
const parseContent = (content: TextContent | undefined): TextContent | undefined => {
|
|
if (!content) return;
|
|
|
|
content.children?.forEach(paragraphSet => {
|
|
paragraphSet.children.forEach(paragraph => {
|
|
paragraph.children.forEach(textNode => {
|
|
textNode.fills = symbolFills(textNode.fills);
|
|
});
|
|
|
|
paragraph.fills = symbolFills(paragraph.fills);
|
|
});
|
|
});
|
|
|
|
return content;
|
|
};
|