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';
|
2024-04-12 09:52:36 -05:00
|
|
|
|
|
|
|
import { CircleShape } from '@ui/lib/types/circle/circleShape';
|
2024-04-12 06:55:42 -05:00
|
|
|
|
|
|
|
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)
|
2024-04-12 06:55:42 -05:00
|
|
|
};
|
|
|
|
};
|