Skip to content

Commit c2a92dc

Browse files
wumailboyongjiong
authored andcommittedOct 19, 2023
feat(extension): add test for curved-edge
1 parent 79203f1 commit c2a92dc

File tree

2 files changed

+70
-24
lines changed

2 files changed

+70
-24
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import { getCurvedEdgePath } from '../index';
2+
3+
describe('test curved edge ', () => {
4+
test('path calculation', () => {
5+
const radius = 5;
6+
7+
const points1 = '460,150 670,150';
8+
const path1 = 'M460 150 L 670 150';
9+
expect(
10+
getCurvedEdgePath(
11+
points1.split(' ').map((p) => p.split(',').map((a) => +a)),
12+
radius,
13+
),
14+
).toBe(path1);
15+
16+
const points2 = '510,250 540,250 540,175 490,175 490,100 520,100';
17+
const path2 = 'M510 250L 510 250L 535 250 Q 540 250 540 245L 540 245L 540 180 Q 540 175 535 175L 535 175L 495 175 Q 490 175 490 170L 490 170L 490 105 Q 490 100 495 100L 520 100';
18+
expect(
19+
getCurvedEdgePath(
20+
points2.split(' ').map((p) => p.split(',').map((a) => +a)),
21+
radius,
22+
),
23+
).toBe(path2);
24+
25+
const points3 = '690,120 720,120 720,50 560,50 560,260 690,260';
26+
const path3 = 'M690 120L 690 120L 715 120 Q 720 120 720 115L 720 115L 720 55 Q 720 50 715 50L 715 50L 565 50 Q 560 50 560 55L 560 55L 560 255 Q 560 260 565 260L 690 260';
27+
expect(
28+
getCurvedEdgePath(
29+
points3.split(' ').map((p) => p.split(',').map((a) => +a)),
30+
radius,
31+
),
32+
).toBe(path3);
33+
34+
const point4 = '690,180 690,210 660,210 660,190 630,190 630,220';
35+
const path4 = 'M690 180L 690 180L 690 205 Q 690 210 685 210L 685 210L 665 210 Q 660 210 660 205L 660 205L 660 195 Q 660 190 655 190L 655 190L 635 190 Q 630 190 630 195L 630 220';
36+
expect(
37+
getCurvedEdgePath(
38+
point4.split(' ').map((p) => p.split(',').map((a) => +a)),
39+
radius,
40+
),
41+
).toBe(path4);
42+
});
43+
});

‎packages/extension/src/materials/curved-edge/index.ts

+27-24
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ function getMidPoints(
8989
}
9090
}
9191

92-
function getPath(
92+
function getPartialPath(
9393
prev: PointTuple,
9494
cur: PointTuple,
9595
next: PointTuple,
@@ -120,7 +120,7 @@ function getPath(
120120
if (orientation === '-') {
121121
path += `L ${cur[0]} ${cur[1]} L ${next[0]} ${next[1]}`;
122122
} else {
123-
const [mid1, mid2] = getMidPoints(cur, key, orientation, (realRadius)) || [];
123+
const [mid1, mid2] = getMidPoints(cur, key, orientation, realRadius) || [];
124124
if (mid1 && mid2) {
125125
path += `L ${mid1[0]} ${mid1[1]} Q ${cur[0]} ${cur[1]} ${mid2[0]} ${mid2[1]}`;
126126
[cur[0], cur[1]] = mid2;
@@ -129,6 +129,24 @@ function getPath(
129129
return path;
130130
}
131131

132+
function getCurvedEdgePath(points: number[][], radius: number): string {
133+
let i = 0;
134+
let d = '';
135+
if (points.length === 2) {
136+
d += `M${points[i][0]} ${points[i++][1]} L ${points[i][0]} ${points[i][1]}`;
137+
} else {
138+
d += `M${points[i][0]} ${points[i++][1]}`;
139+
for (; i + 1 < points.length;) {
140+
const prev = points[i - 1] as PointTuple;
141+
const cur = points[i] as PointTuple;
142+
const next = points[i++ + 1] as PointTuple;
143+
d += getPartialPath(prev, cur, next, radius as number);
144+
}
145+
d += `L ${points[i][0]} ${points[i][1]}`;
146+
}
147+
return d;
148+
}
149+
132150
class CurvedEdge extends PolylineEdge {
133151
getEdge() {
134152
const { model } = this.props;
@@ -138,30 +156,18 @@ class CurvedEdge extends PolylineEdge {
138156
const points = pointFilter(
139157
pointsStr.split(' ').map((p) => p.split(',').map((a) => +a)),
140158
);
141-
let i = 0;
142-
let d = '';
143-
if (points.length === 2) {
144-
d += `M${points[i][0]} ${points[i++][1]} L ${points[i][0]} ${
145-
points[i][1]
146-
}`;
147-
} else {
148-
d += `M${points[i][0]} ${points[i++][1]}`;
149-
for (; i + 1 < points.length;) {
150-
const prev = points[i - 1] as PointTuple;
151-
const cur = points[i] as PointTuple;
152-
const next = points[i++ + 1] as PointTuple;
153-
d += getPath(prev, cur, next, radius as number);
154-
}
155-
d += `L ${points[i][0]} ${points[i][1]}`;
156-
}
157-
159+
const d = getCurvedEdgePath(points, radius as number);
158160
const attrs = {
159161
style: isAnimation ? animationStyle : {},
160162
...style,
161163
...arrowConfig,
162164
fill: 'none',
163165
};
164-
console.log(d);
166+
console.log(
167+
pointsStr,
168+
pointsStr.split(' ').map((p) => p.split(',').map((a) => +a)),
169+
d,
170+
);
165171
return h('path', {
166172
d,
167173
...attrs,
@@ -179,7 +185,4 @@ const defaultCurvedEdge = {
179185

180186
export default defaultCurvedEdge;
181187

182-
export {
183-
CurvedEdge,
184-
CurvedEdgeModel,
185-
};
188+
export { CurvedEdge, CurvedEdgeModel, getCurvedEdgePath };

0 commit comments

Comments
 (0)
Please sign in to comment.