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/plugin-src/transformers/transformEllipseNode.ts

20 lines
694 B
TypeScript
Raw Normal View History

2024-04-15 06:58:51 -05:00
import { transformDimensionAndPosition } from '@plugin/transformers/partials';
2024-04-15 08:47:41 -05:00
import { translateBlendMode, translateFills } from '@plugin/translators';
import { CircleShape } from '@ui/lib/types/circle/circleShape';
export const transformEllipseNode = (
node: EllipseNode,
baseX: number,
baseY: number
): CircleShape => {
return {
type: 'circle',
name: node.name,
2024-04-15 06:58:51 -05:00
fills: translateFills(node.fills, node.width, node.height),
2024-04-15 08:47:41 -05:00
blendMode: translateBlendMode(node.blendMode),
opacity: !node.visible ? 0 : node.opacity, //@TODO: check this. If we use the property hidden and it's hidden, it won't export
2024-04-15 06:58:51 -05:00
...transformDimensionAndPosition(node, baseX, baseY)
};
};