mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
import { CurveToCommand, LineToCommand, MoveToCommand, parseSVG } from 'svg-path-parser';
|
|
|
|
import { Segment } from '@ui/lib/types/shapes/pathShape';
|
|
|
|
export const translateVectorPaths = (
|
|
paths: VectorPaths,
|
|
baseX: number,
|
|
baseY: number
|
|
): Segment[] => {
|
|
let segments: Segment[] = [];
|
|
|
|
for (const path of paths) {
|
|
segments = [...segments, ...translateVectorPath(path, baseX, baseY)];
|
|
}
|
|
|
|
return segments;
|
|
};
|
|
|
|
const translateVectorPath = (path: VectorPath, baseX: number, baseY: number): Segment[] => {
|
|
const normalizedPaths = parseSVG(path.data);
|
|
|
|
return normalizedPaths.map(command => {
|
|
switch (command.command) {
|
|
case 'moveto':
|
|
return translateMoveToCommand(command, baseX, baseY);
|
|
case 'lineto':
|
|
return translateLineToCommand(command, baseX, baseY);
|
|
case 'curveto':
|
|
return translateCurveToCommand(command, baseX, baseY);
|
|
case 'closepath':
|
|
default:
|
|
return {
|
|
command: 'close-path'
|
|
};
|
|
}
|
|
});
|
|
};
|
|
|
|
const translateMoveToCommand = (command: MoveToCommand, baseX: number, baseY: number): Segment => {
|
|
return {
|
|
command: 'move-to',
|
|
params: { x: command.x + baseX, y: command.y + baseY }
|
|
};
|
|
};
|
|
|
|
const translateLineToCommand = (command: LineToCommand, baseX: number, baseY: number): Segment => {
|
|
return {
|
|
command: 'line-to',
|
|
params: { x: command.x + baseX, y: command.y + baseY }
|
|
};
|
|
};
|
|
|
|
const translateCurveToCommand = (
|
|
command: CurveToCommand,
|
|
baseX: number,
|
|
baseY: number
|
|
): Segment => {
|
|
return {
|
|
command: 'curve-to',
|
|
params: {
|
|
c1x: command.x1 + baseX,
|
|
c1y: command.y1 + baseY,
|
|
c2x: command.x2 + baseX,
|
|
c2y: command.y2 + baseY,
|
|
x: command.x + baseX,
|
|
y: command.y + baseY
|
|
}
|
|
};
|
|
};
|