@@ -89,7 +89,7 @@ function getMidPoints(
89
89
}
90
90
}
91
91
92
- function getPath (
92
+ function getPartialPath (
93
93
prev : PointTuple ,
94
94
cur : PointTuple ,
95
95
next : PointTuple ,
@@ -120,7 +120,7 @@ function getPath(
120
120
if ( orientation === '-' ) {
121
121
path += `L ${ cur [ 0 ] } ${ cur [ 1 ] } L ${ next [ 0 ] } ${ next [ 1 ] } ` ;
122
122
} else {
123
- const [ mid1 , mid2 ] = getMidPoints ( cur , key , orientation , ( realRadius ) ) || [ ] ;
123
+ const [ mid1 , mid2 ] = getMidPoints ( cur , key , orientation , realRadius ) || [ ] ;
124
124
if ( mid1 && mid2 ) {
125
125
path += `L ${ mid1 [ 0 ] } ${ mid1 [ 1 ] } Q ${ cur [ 0 ] } ${ cur [ 1 ] } ${ mid2 [ 0 ] } ${ mid2 [ 1 ] } ` ;
126
126
[ cur [ 0 ] , cur [ 1 ] ] = mid2 ;
@@ -129,6 +129,24 @@ function getPath(
129
129
return path ;
130
130
}
131
131
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
+
132
150
class CurvedEdge extends PolylineEdge {
133
151
getEdge ( ) {
134
152
const { model } = this . props ;
@@ -138,30 +156,18 @@ class CurvedEdge extends PolylineEdge {
138
156
const points = pointFilter (
139
157
pointsStr . split ( ' ' ) . map ( ( p ) => p . split ( ',' ) . map ( ( a ) => + a ) ) ,
140
158
) ;
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 ) ;
158
160
const attrs = {
159
161
style : isAnimation ? animationStyle : { } ,
160
162
...style ,
161
163
...arrowConfig ,
162
164
fill : 'none' ,
163
165
} ;
164
- console . log ( d ) ;
166
+ console . log (
167
+ pointsStr ,
168
+ pointsStr . split ( ' ' ) . map ( ( p ) => p . split ( ',' ) . map ( ( a ) => + a ) ) ,
169
+ d ,
170
+ ) ;
165
171
return h ( 'path' , {
166
172
d,
167
173
...attrs ,
@@ -179,7 +185,4 @@ const defaultCurvedEdge = {
179
185
180
186
export default defaultCurvedEdge ;
181
187
182
- export {
183
- CurvedEdge ,
184
- CurvedEdgeModel ,
185
- } ;
188
+ export { CurvedEdge , CurvedEdgeModel , getCurvedEdgePath } ;
0 commit comments