mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
import {
|
|
transformBlend,
|
|
transformConstraints,
|
|
transformEffects,
|
|
transformFigmaIds,
|
|
transformLayoutAttributes,
|
|
transformOverrides,
|
|
transformProportion,
|
|
transformSceneNode,
|
|
transformStrokes
|
|
} from '@plugin/transformers/partials';
|
|
import { translateCommands } from '@plugin/translators/vectors';
|
|
|
|
import { PathShape } from '@ui/lib/types/shapes/pathShape';
|
|
import { Segment } from '@ui/lib/types/shapes/pathShape';
|
|
|
|
/**
|
|
* In order to match the normal representation of a line in Penpot, we will assume that
|
|
* the line is never rotated, so we calculate its normal position.
|
|
*
|
|
* To represent the line rotated we do take into account the rotation of the line, but only in its content.
|
|
*/
|
|
export const transformLineNode = (node: LineNode): PathShape => {
|
|
return {
|
|
type: 'path',
|
|
name: node.name,
|
|
content: translateLineNode(node),
|
|
...transformFigmaIds(node),
|
|
...transformStrokes(node),
|
|
...transformEffects(node),
|
|
...transformSceneNode(node),
|
|
...transformBlend(node),
|
|
...transformProportion(node),
|
|
...transformLayoutAttributes(node),
|
|
...transformConstraints(node),
|
|
...transformOverrides(node)
|
|
};
|
|
};
|
|
|
|
const translateLineNode = (node: LineNode): Segment[] => {
|
|
return translateCommands(node, [
|
|
{
|
|
x: 0,
|
|
y: 0,
|
|
command: 'moveto',
|
|
code: 'M'
|
|
},
|
|
{
|
|
x: node.width,
|
|
y: 0,
|
|
command: 'lineto',
|
|
code: 'L'
|
|
}
|
|
]);
|
|
};
|