@retikz/core 0.2.0-alpha.2 → 0.2.0-alpha.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/dist/es/compile/compile.d.ts +8 -1
  2. package/dist/es/compile/compile.d.ts.map +1 -1
  3. package/dist/es/compile/compile.js +89 -14
  4. package/dist/es/compile/node.d.ts +19 -10
  5. package/dist/es/compile/node.d.ts.map +1 -1
  6. package/dist/es/compile/node.js +121 -207
  7. package/dist/es/compile/scope.d.ts.map +1 -1
  8. package/dist/es/compile/scope.js +3 -1
  9. package/dist/es/index.d.ts +3 -1
  10. package/dist/es/index.d.ts.map +1 -1
  11. package/dist/es/index.js +4 -2
  12. package/dist/es/ir/node.d.ts +45 -12
  13. package/dist/es/ir/node.d.ts.map +1 -1
  14. package/dist/es/ir/node.js +10 -3
  15. package/dist/es/ir/path/path.d.ts +3 -0
  16. package/dist/es/ir/path/path.d.ts.map +1 -1
  17. package/dist/es/ir/path/path.js +1 -0
  18. package/dist/es/ir/scope.d.ts +44 -22
  19. package/dist/es/ir/scope.d.ts.map +1 -1
  20. package/dist/es/ir/scope.js +5 -2
  21. package/dist/es/shapes/_shared.d.ts +7 -0
  22. package/dist/es/shapes/_shared.d.ts.map +1 -0
  23. package/dist/es/shapes/_shared.js +11 -0
  24. package/dist/es/shapes/circle.d.ts +8 -0
  25. package/dist/es/shapes/circle.d.ts.map +1 -0
  26. package/dist/es/shapes/circle.js +33 -0
  27. package/dist/es/shapes/diamond.d.ts +8 -0
  28. package/dist/es/shapes/diamond.d.ts.map +1 -0
  29. package/dist/es/shapes/diamond.js +65 -0
  30. package/dist/es/shapes/ellipse.d.ts +8 -0
  31. package/dist/es/shapes/ellipse.d.ts.map +1 -0
  32. package/dist/es/shapes/ellipse.js +45 -0
  33. package/dist/es/shapes/index.d.ts +14 -0
  34. package/dist/es/shapes/index.d.ts.map +1 -0
  35. package/dist/es/shapes/index.js +15 -0
  36. package/dist/es/shapes/rectangle.d.ts +8 -0
  37. package/dist/es/shapes/rectangle.d.ts.map +1 -0
  38. package/dist/es/shapes/rectangle.js +40 -0
  39. package/dist/es/shapes/types.d.ts +44 -0
  40. package/dist/es/shapes/types.d.ts.map +1 -0
  41. package/dist/lib/compile/compile.cjs +91 -16
  42. package/dist/lib/compile/compile.d.ts +8 -1
  43. package/dist/lib/compile/compile.d.ts.map +1 -1
  44. package/dist/lib/compile/node.cjs +121 -207
  45. package/dist/lib/compile/node.d.ts +19 -10
  46. package/dist/lib/compile/node.d.ts.map +1 -1
  47. package/dist/lib/compile/scope.cjs +3 -1
  48. package/dist/lib/compile/scope.d.ts.map +1 -1
  49. package/dist/lib/index.cjs +6 -1
  50. package/dist/lib/index.d.ts +3 -1
  51. package/dist/lib/index.d.ts.map +1 -1
  52. package/dist/lib/ir/node.cjs +10 -3
  53. package/dist/lib/ir/node.d.ts +45 -12
  54. package/dist/lib/ir/node.d.ts.map +1 -1
  55. package/dist/lib/ir/path/path.cjs +1 -0
  56. package/dist/lib/ir/path/path.d.ts +3 -0
  57. package/dist/lib/ir/path/path.d.ts.map +1 -1
  58. package/dist/lib/ir/scope.cjs +5 -2
  59. package/dist/lib/ir/scope.d.ts +44 -22
  60. package/dist/lib/ir/scope.d.ts.map +1 -1
  61. package/dist/lib/shapes/_shared.cjs +11 -0
  62. package/dist/lib/shapes/_shared.d.ts +7 -0
  63. package/dist/lib/shapes/_shared.d.ts.map +1 -0
  64. package/dist/lib/shapes/circle.cjs +33 -0
  65. package/dist/lib/shapes/circle.d.ts +8 -0
  66. package/dist/lib/shapes/circle.d.ts.map +1 -0
  67. package/dist/lib/shapes/diamond.cjs +65 -0
  68. package/dist/lib/shapes/diamond.d.ts +8 -0
  69. package/dist/lib/shapes/diamond.d.ts.map +1 -0
  70. package/dist/lib/shapes/ellipse.cjs +45 -0
  71. package/dist/lib/shapes/ellipse.d.ts +8 -0
  72. package/dist/lib/shapes/ellipse.d.ts.map +1 -0
  73. package/dist/lib/shapes/index.cjs +14 -0
  74. package/dist/lib/shapes/index.d.ts +14 -0
  75. package/dist/lib/shapes/index.d.ts.map +1 -0
  76. package/dist/lib/shapes/rectangle.cjs +40 -0
  77. package/dist/lib/shapes/rectangle.d.ts +8 -0
  78. package/dist/lib/shapes/rectangle.d.ts.map +1 -0
  79. package/dist/lib/shapes/types.d.ts +44 -0
  80. package/dist/lib/shapes/types.d.ts.map +1 -0
  81. package/package.json +1 -1
@@ -1,7 +1,4 @@
1
- import { rect } from "../geometry/rect.js";
2
- import { circle } from "../geometry/circle.js";
3
- import { diamond } from "../geometry/diamond.js";
4
- import { ellipse } from "../geometry/ellipse.js";
1
+ import { BUILTIN_SHAPES } from "../shapes/index.js";
5
2
  import { resolvePosition } from "./position.js";
6
3
  //#region src/compile/node.ts
7
4
  var DEFAULT_FONT_SIZE = 14;
@@ -10,7 +7,6 @@ var DEFAULT_LINE_HEIGHT_FACTOR = 1.2;
10
7
  var DEG_TO_RAD = Math.PI / 180;
11
8
  /** Node label 与 node 边界默认距离(TikZ 默认 0pt 视觉太贴) */
12
9
  var DEFAULT_LABEL_DISTANCE = 12;
13
- var SQRT2 = Math.SQRT2;
14
10
  /** dashed 预设:4 px 实线 + 2 px 间隙循环 */
15
11
  var DASHED_PATTERN = [4, 2];
16
12
  /** dotted 预设:1 px 圆点 + 2 px 间隙 */
@@ -23,61 +19,28 @@ var resolveDashArray = (dashArray, dashed, dotted) => {
23
19
  };
24
20
  /** IR align → 文字对齐锚点(start / middle / end) */
25
21
  var alignToTextAnchor = (a) => a === "left" ? "start" : a === "right" ? "end" : "middle";
26
- /** layout 构造 Rect(带 margin 扩张) */
27
- var rectOf = (layout, marginAdd) => ({
28
- x: layout.rect.x,
29
- y: layout.rect.y,
30
- width: layout.rect.width + 2 * marginAdd,
31
- height: layout.rect.height + 2 * marginAdd,
32
- rotate: layout.rect.rotate
33
- });
34
- /** 从 layout 构造 Circle(radius=外接框边长/2 + margin) */
35
- var circleOf = (layout, marginAdd) => ({
36
- x: layout.rect.x,
37
- y: layout.rect.y,
38
- radius: layout.rect.width / 2 + marginAdd,
39
- rotate: layout.rect.rotate
40
- });
41
- /** 从 layout 构造 Ellipse(rx/ry 各加 margin) */
42
- var ellipseOf = (layout, marginAdd) => ({
43
- x: layout.rect.x,
44
- y: layout.rect.y,
45
- rx: layout.rect.width / 2 + marginAdd,
46
- ry: layout.rect.height / 2 + marginAdd,
47
- rotate: layout.rect.rotate
48
- });
49
- /** 从 layout 构造 Diamond(halfA/halfB 各加 margin) */
50
- var diamondOf = (layout, marginAdd) => ({
51
- x: layout.rect.x,
52
- y: layout.rect.y,
53
- halfA: layout.rect.width / 2 + marginAdd,
54
- halfB: layout.rect.height / 2 + marginAdd,
55
- rotate: layout.rect.rotate
56
- });
22
+ /** Rect 各方向外扩 m(margin generic:所有 shape 都 w+2m, h+2m,由 boundaryPointOf 调用前膨胀) */
23
+ var inflateRect = (r, m) => m === 0 ? r : {
24
+ x: r.x,
25
+ y: r.y,
26
+ width: r.width + 2 * m,
27
+ height: r.height + 2 * m,
28
+ rotate: r.rotate
29
+ };
57
30
  /**
58
31
  * 取节点 shape 在 toward 方向的附着点(path 端点贴边用)
59
- * @description shape 多态调用各自 boundaryPoint;margin > 0 时形状先外扩,让 path 在 border 外停 margin
32
+ * @description shapeDef.boundaryPoint;margin > 0 时先膨胀外接 Rect,让 path 在 border 外停 margin
60
33
  */
61
- var boundaryPointOf = (layout, toward) => {
62
- const m = layout.margin;
63
- switch (layout.shape) {
64
- case "rectangle": return rect.boundaryPoint(rectOf(layout, m), toward);
65
- case "circle": return circle.boundaryPoint(circleOf(layout, m), toward);
66
- case "ellipse": return ellipse.boundaryPoint(ellipseOf(layout, m), toward);
67
- case "diamond": return diamond.boundaryPoint(diamondOf(layout, m), toward);
68
- }
69
- };
34
+ var boundaryPointOf = (layout, toward) => layout.shapeDef.boundaryPoint(inflateRect(layout.rect, layout.margin), toward);
70
35
  /**
71
- * 取节点 shape 命名 anchor(center / north / east / north-east 等 9 个)
72
- * @description 不应用 margin——TikZ 语义中 explicit anchor 取视觉边界点不涉及 outer sep;用于 `'A.north'` 落点
36
+ * 取节点 shape 命名 anchor(center / north / east / north-east 等)
37
+ * @description 不应用 margin——TikZ 语义中 explicit anchor 取视觉边界点不涉及 outer sep;用于 `'A.north'` 落点。
38
+ * shapeDef.anchor 不认识的名字返回 undefined,此处抛 Unknown anchor(列出 shape 名)
73
39
  */
74
40
  var anchorOf = (layout, name) => {
75
- switch (layout.shape) {
76
- case "rectangle": return rect.anchor(rectOf(layout, 0), name);
77
- case "circle": return circle.anchor(circleOf(layout, 0), name);
78
- case "ellipse": return ellipse.anchor(ellipseOf(layout, 0), name);
79
- case "diamond": return diamond.anchor(diamondOf(layout, 0), name);
80
- }
41
+ const p = layout.shapeDef.anchor(layout.rect, name);
42
+ if (p === void 0) throw new Error(`Unknown anchor '${name}' for shape '${layout.shapeName}'`);
43
+ return p;
81
44
  };
82
45
  /** 8 方向 label position → (anchorName, 单位向量);above 视觉上方即 y 减小 */
83
46
  var LABEL_DIRECTION_MAP = {
@@ -115,19 +78,51 @@ var LABEL_DIRECTION_MAP = {
115
78
  }
116
79
  };
117
80
  /**
118
- * 算 label 中心点
119
- * @description 8 方向:节点对应 anchor 出发按单位向量 × distance 外推;数字角度:先取 angleBoundary 边界点再沿 (cos,sin) × distance 外推
81
+ * 算 label 中心点(节点局部坐标系,未旋转)
82
+ * @description 8 方向:节点对应 anchor 出发按单位向量 × distance 外推;数字角度:先取 angleBoundary 边界点再沿 (cos,sin) × distance 外推。
83
+ * 两个分支都在 **axis-aligned rect(rotate=0)** 上算——node 自身 rotate 由外层 GroupPrim 统一施加;
84
+ * 若用带 rotate 的 rect,label 位置会被 anchorOf / angleBoundaryOf 旋转一次、再被外层 group 旋转一次(双重旋转)。
85
+ * anchorOf / angleBoundaryOf 本身不改(path anchor `'A.north'` / `'A.30'` 仍需带 rotate 的 rect)。
120
86
  */
121
87
  var labelCenter = (layout, label) => {
88
+ const aaLayout = {
89
+ ...layout,
90
+ rect: {
91
+ ...layout.rect,
92
+ rotate: 0
93
+ }
94
+ };
122
95
  if (typeof label.position === "number") {
123
96
  const rad = label.position * Math.PI / 180;
124
- const [bx, by] = angleBoundaryOf(layout, label.position);
97
+ const [bx, by] = angleBoundaryOf(aaLayout, label.position);
125
98
  return [bx + Math.cos(rad) * label.distance, by + Math.sin(rad) * label.distance];
126
99
  }
127
100
  const { anchor, vec } = LABEL_DIRECTION_MAP[label.position];
128
- const [bx, by] = anchorOf(layout, anchor);
101
+ const [bx, by] = anchorOf(aaLayout, anchor);
129
102
  return [bx + vec[0] * label.distance, by + vec[1] * label.distance];
130
103
  };
104
+ /** 角度换算常量(弧度 → 度) */
105
+ var RAD_TO_DEG = 180 / Math.PI;
106
+ /**
107
+ * 算 label 文本自旋角度(度,屏幕 y-down,节点局部系)
108
+ * @description radial = atan2(label中心 − node中心);tangent = radial + 90;number = 原值;none / 缺省 = 0。
109
+ * keepUpright 时把"偏离正立 > 90°"的角度翻 180° 保阅读方向。方向向量在局部坐标算,node 自身 rotate 由外层 group 叠加。
110
+ */
111
+ var resolveLabelRotateDeg = (label, lx, ly, cx, cy) => {
112
+ const mode = label.rotate;
113
+ if (mode === void 0 || mode === "none") return 0;
114
+ let deg;
115
+ if (typeof mode === "number") deg = mode;
116
+ else {
117
+ const radial = Math.atan2(ly - cy, lx - cx) * RAD_TO_DEG;
118
+ deg = mode === "tangent" ? radial + 90 : radial;
119
+ }
120
+ if (label.keepUpright) {
121
+ const norm = (deg % 360 + 360) % 360;
122
+ if (norm > 90 && norm < 270) deg += 180;
123
+ }
124
+ return deg;
125
+ };
131
126
  /**
132
127
  * 取节点 shape 在指定角度方向的边界点
133
128
  * @description 角度是节点**局部坐标系**下的极角(度数:0°=局部 +x,90°=局部 +y)。layout.rect.rotate 把局部基绕中心旋转,得到世界系下的视觉方向;shape boundaryPoint 内部用 rotate-aware 投影,所以这里把局部 (cos, sin) 经 rect.rotate 旋转后加到中心当作世界系 toward 传入。不应用 margin(同 anchorOf);用于 `'A.30'` 落点
@@ -140,12 +135,7 @@ var angleBoundaryOf = (layout, angleDeg) => {
140
135
  const cosR = Math.cos(rot);
141
136
  const sinR = Math.sin(rot);
142
137
  const toward = [layout.rect.x + lx * cosR - ly * sinR, layout.rect.y + lx * sinR + ly * cosR];
143
- switch (layout.shape) {
144
- case "rectangle": return rect.boundaryPoint(rectOf(layout, 0), toward);
145
- case "circle": return circle.boundaryPoint(circleOf(layout, 0), toward);
146
- case "ellipse": return ellipse.boundaryPoint(ellipseOf(layout, 0), toward);
147
- case "diamond": return diamond.boundaryPoint(diamondOf(layout, 0), toward);
148
- }
138
+ return layout.shapeDef.boundaryPoint(layout.rect, toward);
149
139
  };
150
140
  /**
151
141
  * IR Node → 内部 NodeLayout
@@ -154,7 +144,10 @@ var angleBoundaryOf = (layout, angleDeg) => {
154
144
  * scope 局部度量),调用方负责后续 `projectLayoutToGlobal` / `applyTransformChain` 投回全局;
155
145
  * 笛卡尔字面量 `Position` 已在 scope 局部度量,行为延续 v0.1。
156
146
  */
157
- var layoutNode = (node, measureText, nameStack, nodeDistance, scopeChain = [], labelDefault) => {
147
+ var layoutNode = (node, measureText, nameStack, nodeDistance, scopeChain = [], labelDefault, shapes = BUILTIN_SHAPES) => {
148
+ const shapeName = node.shape ?? "rectangle";
149
+ const shapeDef = Object.prototype.hasOwnProperty.call(shapes, shapeName) ? shapes[shapeName] : void 0;
150
+ if (!shapeDef) throw new Error(`Unknown shape '${shapeName}'; registered shapes: ${Object.keys(shapes).sort().join(", ")}`);
158
151
  const sx = node.xScale ?? node.scale ?? 1;
159
152
  const sy = node.yScale ?? node.scale ?? 1;
160
153
  const fontScale = Math.min(sx, sy);
@@ -201,29 +194,7 @@ var layoutNode = (node, measureText, nameStack, nodeDistance, scopeChain = [], l
201
194
  const minH = node.minimumHeight ?? node.minimumSize ?? 0;
202
195
  const innerHalfW = Math.max(textWidth / 2 + xSep, xSep, minW / 2);
203
196
  const innerHalfH = Math.max(textHeight / 2 + ySep, ySep, minH / 2);
204
- const shape = node.shape ?? "rectangle";
205
- let boundsHalfW;
206
- let boundsHalfH;
207
- switch (shape) {
208
- case "rectangle":
209
- boundsHalfW = innerHalfW;
210
- boundsHalfH = innerHalfH;
211
- break;
212
- case "circle": {
213
- const r = Math.sqrt(innerHalfW * innerHalfW + innerHalfH * innerHalfH);
214
- boundsHalfW = r;
215
- boundsHalfH = r;
216
- break;
217
- }
218
- case "ellipse":
219
- boundsHalfW = innerHalfW * SQRT2;
220
- boundsHalfH = innerHalfH * SQRT2;
221
- break;
222
- case "diamond":
223
- boundsHalfW = innerHalfW * 2;
224
- boundsHalfH = innerHalfH * 2;
225
- break;
226
- }
197
+ const { halfWidth: boundsHalfW, halfHeight: boundsHalfH } = shapeDef.circumscribe(innerHalfW, innerHalfH);
227
198
  const rotateDeg = node.rotate ?? 0;
228
199
  const center = resolvePosition(node.position, nameStack, nodeDistance, scopeChain);
229
200
  if (!center) throw new Error(`Cannot resolve position for node ${node.id ?? "(unnamed)"}; polar.origin or at.of may reference an undefined node`);
@@ -238,12 +209,15 @@ var layoutNode = (node, measureText, nameStack, nodeDistance, scopeChain = [], l
238
209
  fontSize: (labFont?.size ?? labelDefault?.font?.size ?? baseFontSize) * fontScale,
239
210
  fontFamily: labFont?.family ?? labelDefault?.font?.family ?? fontFamily,
240
211
  fontWeight: labFont?.weight ?? labelDefault?.font?.weight ?? fontWeight,
241
- fontStyle: labFont?.style ?? labelDefault?.font?.style ?? fontStyle
212
+ fontStyle: labFont?.style ?? labelDefault?.font?.style ?? fontStyle,
213
+ rotate: lab.rotate,
214
+ keepUpright: lab.keepUpright
242
215
  };
243
216
  });
244
217
  return {
245
218
  id: node.id,
246
- shape,
219
+ shapeName,
220
+ shapeDef,
247
221
  rect: {
248
222
  x: center[0],
249
223
  y: center[1],
@@ -274,97 +248,28 @@ var layoutNode = (node, measureText, nameStack, nodeDistance, scopeChain = [], l
274
248
  labels
275
249
  };
276
250
  };
277
- /** rectangle RectPrim */
278
- var emitRectShape = (layout, round) => {
279
- const halfW = layout.rect.width / 2;
280
- const halfH = layout.rect.height / 2;
281
- return {
282
- type: "rect",
283
- x: round(layout.rect.x - halfW),
284
- y: round(layout.rect.y - halfH),
285
- width: round(layout.rect.width),
286
- height: round(layout.rect.height),
287
- fill: layout.fill ?? "transparent",
288
- fillOpacity: layout.fillOpacity,
289
- stroke: layout.stroke ?? "currentColor",
290
- strokeOpacity: layout.strokeOpacity,
291
- strokeWidth: layout.strokeWidth ?? 1,
292
- dashPattern: layout.dashPattern,
293
- cornerRadius: layout.roundedCorners,
294
- opacity: layout.opacity
295
- };
296
- };
297
- /** circle/ellipse → EllipsePrim(圆形 rx=ry) */
298
- var emitEllipseShape = (layout, round) => ({
299
- type: "ellipse",
300
- cx: round(layout.rect.x),
301
- cy: round(layout.rect.y),
302
- rx: round(layout.rect.width / 2),
303
- ry: round(layout.rect.height / 2),
304
- fill: layout.fill ?? "transparent",
251
+ /** NodeLayout 收敛 emit 所需的视觉样式子集(ShapeStyle,不含几何 / 文本) */
252
+ var toShapeStyle = (layout) => ({
253
+ fill: layout.fill,
305
254
  fillOpacity: layout.fillOpacity,
306
- stroke: layout.stroke ?? "currentColor",
255
+ stroke: layout.stroke,
307
256
  strokeOpacity: layout.strokeOpacity,
308
- strokeWidth: layout.strokeWidth ?? 1,
257
+ strokeWidth: layout.strokeWidth,
309
258
  dashPattern: layout.dashPattern,
259
+ roundedCorners: layout.roundedCorners,
310
260
  opacity: layout.opacity
311
261
  });
312
- /** diamond → PathPrim(4 顶点 + close 闭合) */
313
- var emitDiamondShape = (layout, round) => {
314
- const diam = diamondOf(layout, 0);
315
- const e = diamond.anchor(diam, "east");
316
- const n = diamond.anchor(diam, "north");
317
- const w = diamond.anchor(diam, "west");
318
- const s = diamond.anchor(diam, "south");
319
- return {
320
- type: "path",
321
- commands: [
322
- {
323
- kind: "move",
324
- to: [round(e[0]), round(e[1])]
325
- },
326
- {
327
- kind: "line",
328
- to: [round(n[0]), round(n[1])]
329
- },
330
- {
331
- kind: "line",
332
- to: [round(w[0]), round(w[1])]
333
- },
334
- {
335
- kind: "line",
336
- to: [round(s[0]), round(s[1])]
337
- },
338
- { kind: "close" }
339
- ],
340
- fill: layout.fill ?? "transparent",
341
- fillOpacity: layout.fillOpacity,
342
- stroke: layout.stroke ?? "currentColor",
343
- strokeOpacity: layout.strokeOpacity,
344
- strokeWidth: layout.strokeWidth ?? 1,
345
- dashPattern: layout.dashPattern,
346
- opacity: layout.opacity
347
- };
348
- };
349
262
  /**
350
263
  * NodeLayout → Scene primitives
351
- * @description shape 主体按 shape 分发(rect/ellipse/path);text 始终走 TextPrim;有旋转时外层 GroupPrim 用 `rotate(deg cx cy)` 统一包裹(text 必须靠 group 旋转)
264
+ * @description shape 主体走 `shapeDef.emit`(收轴对齐 rect、可出多 primitive);text 始终走 TextPrim
265
+ * 有旋转时外层 GroupPrim 用 `rotate(deg cx cy)` 统一包裹 shape + text(diamond 顶点 / text 都靠 group 旋转)
352
266
  */
353
267
  var emitNodePrimitives = (layout, round) => {
354
- let shapePrim;
355
- switch (layout.shape) {
356
- case "rectangle":
357
- shapePrim = emitRectShape(layout, round);
358
- break;
359
- case "circle":
360
- case "ellipse":
361
- shapePrim = emitEllipseShape(layout, round);
362
- break;
363
- case "diamond":
364
- shapePrim = emitDiamondShape(unrotated(layout), round);
365
- break;
366
- }
367
- const inner = [shapePrim];
268
+ const axisAlignedRect = {
269
+ ...layout.rect,
270
+ rotate: 0
271
+ };
272
+ const inner = [...layout.shapeDef.emit(axisAlignedRect, toShapeStyle(layout), round)];
368
273
  if (layout.lines) {
369
274
  const halfBlockW = layout.textWidth / 2;
370
275
  const xOffset = layout.align === "start" ? -halfBlockW : layout.align === "end" ? halfBlockW : 0;
@@ -386,45 +291,54 @@ var emitNodePrimitives = (layout, round) => {
386
291
  measuredHeight: round(layout.textHeight)
387
292
  });
388
293
  }
389
- if (layout.labels) for (const lab of layout.labels) {
390
- const [lx, ly] = labelCenter(layout, lab);
391
- inner.push({
392
- type: "text",
393
- x: round(lx),
394
- y: round(ly),
395
- lines: [{ text: lab.text }],
396
- fontSize: lab.fontSize,
397
- fontFamily: lab.fontFamily,
398
- fontWeight: lab.fontWeight,
399
- fontStyle: lab.fontStyle,
400
- align: "middle",
401
- baseline: "middle",
402
- lineHeight: round(lab.fontSize * DEFAULT_LINE_HEIGHT_FACTOR),
403
- fill: lab.textColor ?? "currentColor",
404
- opacity: lab.opacity ?? layout.opacity,
405
- measuredWidth: 0,
406
- measuredHeight: round(lab.fontSize)
407
- });
294
+ if (layout.labels) {
295
+ const cx = layout.rect.x;
296
+ const cy = layout.rect.y;
297
+ for (const lab of layout.labels) {
298
+ const [lx, ly] = labelCenter(layout, lab);
299
+ const textPrim = {
300
+ type: "text",
301
+ x: round(lx),
302
+ y: round(ly),
303
+ lines: [{ text: lab.text }],
304
+ fontSize: lab.fontSize,
305
+ fontFamily: lab.fontFamily,
306
+ fontWeight: lab.fontWeight,
307
+ fontStyle: lab.fontStyle,
308
+ align: "middle",
309
+ baseline: "middle",
310
+ lineHeight: round(lab.fontSize * DEFAULT_LINE_HEIGHT_FACTOR),
311
+ fill: lab.textColor ?? "currentColor",
312
+ opacity: lab.opacity ?? layout.opacity,
313
+ measuredWidth: 0,
314
+ measuredHeight: round(lab.fontSize)
315
+ };
316
+ const deg = resolveLabelRotateDeg(lab, lx, ly, cx, cy);
317
+ if (deg === 0) inner.push(textPrim);
318
+ else inner.push({
319
+ type: "group",
320
+ transforms: [{
321
+ kind: "rotate",
322
+ degrees: round(deg),
323
+ cx: round(lx),
324
+ cy: round(ly)
325
+ }],
326
+ children: [textPrim]
327
+ });
328
+ }
408
329
  }
409
- if (layout.rotateDeg === 0) return inner;
410
- return [{
330
+ if (!(layout.rotateDeg !== 0 || layout.lines !== void 0)) return inner;
331
+ const group = {
411
332
  type: "group",
412
- transforms: [{
413
- kind: "rotate",
414
- degrees: round(layout.rotateDeg),
415
- cx: round(layout.rect.x),
416
- cy: round(layout.rect.y)
417
- }],
418
333
  children: inner
334
+ };
335
+ if (layout.rotateDeg !== 0) group.transforms = [{
336
+ kind: "rotate",
337
+ degrees: round(layout.rotateDeg),
338
+ cx: round(layout.rect.x),
339
+ cy: round(layout.rect.y)
419
340
  }];
341
+ return [group];
420
342
  };
421
- /** layout 的"未旋转"副本,让 diamond 顶点先按未旋转算,外层 group 统一旋转 */
422
- var unrotated = (layout) => ({
423
- ...layout,
424
- rect: {
425
- ...layout.rect,
426
- rotate: 0
427
- }
428
- });
429
343
  //#endregion
430
344
  export { anchorOf, angleBoundaryOf, boundaryPointOf, emitNodePrimitives, layoutNode };
@@ -1 +1 @@
1
- {"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/compile/scope.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAGV,UAAU,EACV,WAAW,EAEZ,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAGzC;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,GAC/B,YAAY,aAAa,CAAC,WAAW,CAAC,EACtC,WAAW,SAAS,EACpB,eAAe,MAAM,KACpB,KAAK,CAAC,SAAS,CAAC,GAAG,IAiDrB,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,GAC9B,OAAO,UAAU,EACjB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAyBF,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,qBAAqB,GAChC,QAAQ,UAAU,EAClB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAgCF,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,qBAAqB,GAChC,QAAQ,UAAU,EAClB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAuBF,CAAC;AAEF,8EAA8E;AAC9E,MAAM,MAAM,gBAAgB,GAAG;IAC7B,wBAAwB;IACxB,CAAC,EAAE,MAAM,CAAC;IACV,wBAAwB;IACxB,CAAC,EAAE,MAAM,CAAC;IACV,qCAAqC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,uBAAuB,GAClC,SAAS,aAAa,CAAC,UAAU,CAAC,KACjC,gBAAgB,GAAG,IA2BrB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAChC,IAAI,MAAM,EACV,MAAM,gBAAgB,GAAG,IAAI,EAC7B,gBAAgB,UAAU,KACzB,UAeF,CAAC"}
1
+ {"version":3,"file":"scope.d.ts","sourceRoot":"","sources":["../../../src/compile/scope.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAGV,UAAU,EACV,WAAW,EAEZ,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAC9C,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,QAAQ,CAAC;AAGzC;;;;;GAKG;AACH,eAAO,MAAM,oBAAoB,GAC/B,YAAY,aAAa,CAAC,WAAW,CAAC,EACtC,WAAW,SAAS,EACpB,eAAe,MAAM,KACpB,KAAK,CAAC,SAAS,CAAC,GAAG,IAiDrB,CAAC;AAEF;;;;;;GAMG;AACH,eAAO,MAAM,mBAAmB,GAC9B,OAAO,UAAU,EACjB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAyBF,CAAC;AAEF;;;;;;;;GAQG;AACH,eAAO,MAAM,qBAAqB,GAChC,QAAQ,UAAU,EAClB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAgCF,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,qBAAqB,GAChC,QAAQ,UAAU,EAClB,OAAO,aAAa,CAAC,SAAS,CAAC,KAC9B,UAuBF,CAAC;AAEF,8EAA8E;AAC9E,MAAM,MAAM,gBAAgB,GAAG;IAC7B,wBAAwB;IACxB,CAAC,EAAE,MAAM,CAAC;IACV,wBAAwB;IACxB,CAAC,EAAE,MAAM,CAAC;IACV,qCAAqC;IACrC,KAAK,EAAE,MAAM,CAAC;IACd,qCAAqC;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF;;;;;;;GAOG;AACH,eAAO,MAAM,uBAAuB,GAClC,SAAS,aAAa,CAAC,UAAU,CAAC,KACjC,gBAAgB,GAAG,IA2BrB,CAAC;AAEF;;;;;GAKG;AACH,eAAO,MAAM,qBAAqB,GAChC,IAAI,MAAM,EACV,MAAM,gBAAgB,GAAG,IAAI,EAC7B,gBAAgB,UAAU,KACzB,UAgBF,CAAC"}
@@ -1,4 +1,5 @@
1
1
  import { rect } from "../geometry/rect.js";
2
+ import { BUILTIN_SHAPES } from "../shapes/index.js";
2
3
  import { resolvePosition } from "./position.js";
3
4
  //#region src/compile/scope.ts
4
5
  /**
@@ -235,7 +236,8 @@ var registerScopeAsLayout = (id, bbox, fallbackOrigin) => {
235
236
  };
236
237
  return {
237
238
  id,
238
- shape: "rectangle",
239
+ shapeName: "rectangle",
240
+ shapeDef: BUILTIN_SHAPES.rectangle,
239
241
  rect: {
240
242
  x: box.x,
241
243
  y: box.y,
@@ -3,7 +3,7 @@
3
3
  * @description 任何 framework adapter(@retikz/react、@retikz/vue、@retikz/canvas、@retikz/ssr)只能 import 本文件导出内容,不准走子路径。本包零 React/零 DOM 依赖
4
4
  */
5
5
  export { PositionSchema, PolarPositionSchema, AtPositionSchema, OffsetPositionSchema, AT_DIRECTIONS, TargetSchema, RelativeTargetSchema, RelativeAccumulateTargetSchema, MoveStepSchema, LineStepSchema, FoldStepSchema, CycleStepSchema, CurveStepSchema, CubicStepSchema, BendStepSchema, ArcStepSchema, CirclePathStepSchema, EllipsePathStepSchema, ControlPointSchema, StepLabelSchema, StepSchema, NodeSchema, NodeLabelSchema, CoordinateSchema, FontSchema, TextBlockSchema, LineSpecSchema, PathSchema, ArrowDetailSchema, ArrowEndDetailSchema, ScopeSchema, NodeDefaultSchema, PathDefaultSchema, LabelDefaultSchema, ArrowDefaultSchema, TransformSchema, ChildSchema, SceneSchema, CURRENT_IR_VERSION, } from './ir';
6
- export type { IRPosition, IRAtPosition, IROffsetPosition, AtDirection, IRTarget, IRRelativeTarget, IRRelativeAccumulateTarget, IRMoveStep, IRLineStep, IRFoldStep, IRCycleStep, IRCurveStep, IRCubicStep, IRBendStep, IRArcStep, IRCirclePathStep, IREllipsePathStep, IRControlPoint, IRStepLabel, IRStep, IRNode, IRNodeLabel, IRCoordinate, IRFont, IRLineSpec, IRTextBlock, IRPath, IRScope, IRNodeDefault, IRPathDefault, IRLabelDefault, IRArrowDefault, StyleChannel, IRTransform, IRTranslateTransform, IRPolarTranslateTransform, IRAtTranslateTransform, IROffsetTranslateTransform, IRRotateTransform, IRScaleTransform, IRChild, IR, ArrowShape, IRArrowDetail, IRArrowEndDetail, NodeShape, NodeTextAlign, } from './ir';
6
+ export type { IRPosition, IRAtPosition, IROffsetPosition, AtDirection, IRTarget, IRRelativeTarget, IRRelativeAccumulateTarget, IRMoveStep, IRLineStep, IRFoldStep, IRCycleStep, IRCurveStep, IRCubicStep, IRBendStep, IRArcStep, IRCirclePathStep, IREllipsePathStep, IRControlPoint, IRStepLabel, IRStep, IRNode, IRNodeLabel, IRCoordinate, IRFont, IRLineSpec, IRTextBlock, IRPath, IRScope, IRNodeDefault, IRPathDefault, IRLabelDefault, IRArrowDefault, StyleChannel, IRTransform, IRTranslateTransform, IRPolarTranslateTransform, IRAtTranslateTransform, IROffsetTranslateTransform, IRRotateTransform, IRScaleTransform, IRChild, IR, ArrowShape, IRArrowDetail, IRArrowEndDetail, NodeShape, BuiltinShapeName, NodeTextAlign, } from './ir';
7
7
  export { ARROW_SHAPES, DEFAULT_ARROW_SHAPE, HOLLOW_ARROW_SHAPES, ARROW_MARKER_DEFAULT_SIZE, ARROW_MARKER_HOLLOW_DEFAULT_LINE_WIDTH, NODE_SHAPES, NODE_TEXT_ALIGNS, } from './ir';
8
8
  export type { ScenePrimitive, RectPrim, EllipsePrim, TextPrim, TextLine, PathPrim, PathCommand,
9
9
  /** 7 个 named PathCommand 分支(便于 wrapper / Pick<>) */
@@ -16,5 +16,7 @@ export type { WayItem, WayDSL, WayCycle, WayVia, WayRelativeItem, WayLabel, WayL
16
16
  export { parseWay, DrawWay, parseTargetSugar } from './parsers';
17
17
  export type { Position, Rect, RectAnchor, Circle, Ellipse, Diamond, PolarPosition, } from './geometry';
18
18
  export { point, rect, circle, ellipse, diamond, RECT_ANCHORS, polar } from './geometry';
19
+ export type { ShapeDefinition, ShapeStyle } from './shapes';
20
+ export { BUILTIN_SHAPES, worldToLocal, localToWorld } from './shapes';
19
21
  export type { ValueOf, AssertEqual } from './types';
20
22
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAGH,OAAO,EACL,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,oBAAoB,EACpB,aAAa,EACb,YAAY,EACZ,oBAAoB,EACpB,8BAA8B,EAC9B,cAAc,EACd,cAAc,EACd,cAAc,EACd,eAAe,EACf,eAAe,EACf,eAAe,EACf,cAAc,EACd,aAAa,EACb,oBAAoB,EACpB,qBAAqB,EACrB,kBAAkB,EAClB,eAAe,EACf,UAAU,EACV,UAAU,EACV,eAAe,EACf,gBAAgB,EAChB,UAAU,EACV,eAAe,EACf,cAAc,EACd,UAAU,EACV,iBAAiB,EACjB,oBAAoB,EACpB,WAAW,EACX,iBAAiB,EACjB,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,eAAe,EACf,WAAW,EACX,WAAW,EACX,kBAAkB,GACnB,MAAM,MAAM,CAAC;AACd,YAAY,EACV,UAAU,EACV,YAAY,EACZ,gBAAgB,EAChB,WAAW,EACX,QAAQ,EACR,gBAAgB,EAChB,0BAA0B,EAC1B,UAAU,EACV,UAAU,EACV,UAAU,EACV,WAAW,EACX,WAAW,EACX,WAAW,EACX,UAAU,EACV,SAAS,EACT,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,WAAW,EACX,MAAM,EACN,MAAM,EACN,WAAW,EACX,YAAY,EACZ,MAAM,EACN,UAAU,EACV,WAAW,EACX,MAAM,EACN,OAAO,EACP,aAAa,EACb,aAAa,EACb,cAAc,EACd,cAAc,EACd,YAAY,EACZ,WAAW,EACX,oBAAoB,EACpB,yBAAyB,EACzB,sBAAsB,EACtB,0BAA0B,EAC1B,iBAAiB,EACjB,gBAAgB,EAChB,OAAO,EACP,EAAE,EACF,UAAU,EACV,aAAa,EACb,gBAAgB,EAChB,SAAS,EACT,aAAa,GACd,MAAM,MAAM,CAAC;AACd,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,yBAAyB,EACzB,sCAAsC,EACtC,WAAW,EACX,gBAAgB,GACjB,MAAM,MAAM,CAAC;AAGd,YAAY,EACV,cAAc,EACd,QAAQ,EACR,WAAW,EACX,QAAQ,EACR,QAAQ,EACR,QAAQ,EACR,WAAW;AACX,oDAAoD;AACpD,eAAe,EACf,eAAe,EACf,eAAe,EACf,gBAAgB,EAChB,cAAc,EACd,qBAAqB,EACrB,gBAAgB,EAChB,YAAY,EACZ,SAAS,EACT,SAAS;AACT,6BAA6B;AAC7B,kBAAkB,EAClB,eAAe,EACf,cAAc,EACd,MAAM,EACN,KAAK,GACN,MAAM,aAAa,CAAC;AAGrB,YAAY,EACV,QAAQ,EACR,WAAW,EACX,YAAY,EACZ,cAAc,EACd,cAAc,GACf,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,aAAa,EAAE,gBAAgB,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAG5E,YAAY,EACV,OAAO,EACP,MAAM,EACN,QAAQ,EACR,MAAM,EACN,eAAe,EACf,QAAQ,EACR,UAAU,GACX,MAAM,WAAW,CAAC;AACnB,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,gBAAgB,EAAE,MAAM,WAAW,CAAC;AAIhE,YAAY,EACV,QAAQ,EACR,IAAI,EACJ,UAAU,EACV,MAAM,EACN,OAAO,EACP,OAAO,EACP,aAAa,GACd,MAAM,YAAY,CAAC;AACpB,OAAO,EAAE,KAAK,EAAE,IAAI,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,YAAY,EAAE,KAAK,EAAE,MAAM,YAAY,CAAC;AAGxF,YAAY,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
package/dist/es/index.js CHANGED
@@ -13,10 +13,12 @@ import { CoordinateSchema } from "./ir/coordinate.js";
13
13
  import { TransformSchema } from "./ir/transform.js";
14
14
  import { ArrowDefaultSchema, LabelDefaultSchema, NodeDefaultSchema, PathDefaultSchema, ScopeSchema } from "./ir/scope.js";
15
15
  import { CURRENT_IR_VERSION, ChildSchema, SceneSchema } from "./ir/scene.js";
16
+ import { localToWorld, worldToLocal } from "./geometry/_transform.js";
16
17
  import { RECT_ANCHORS, rect } from "./geometry/rect.js";
17
18
  import { circle } from "./geometry/circle.js";
18
- import { diamond } from "./geometry/diamond.js";
19
19
  import { ellipse } from "./geometry/ellipse.js";
20
+ import { diamond } from "./geometry/diamond.js";
21
+ import { BUILTIN_SHAPES } from "./shapes/index.js";
20
22
  import { fallbackMeasurer } from "./compile/text-metrics.js";
21
23
  import { computeLayout } from "./compile/layout.js";
22
24
  import { compileToScene } from "./compile/compile.js";
@@ -24,4 +26,4 @@ import { parseTargetSugar } from "./parsers/parseTargetSugar.js";
24
26
  import { DrawWay, parseWay } from "./parsers/parseWay.js";
25
27
  import { polar } from "./geometry/polar.js";
26
28
  import { point } from "./geometry/point.js";
27
- export { ARROW_MARKER_DEFAULT_SIZE, ARROW_MARKER_HOLLOW_DEFAULT_LINE_WIDTH, ARROW_SHAPES, AT_DIRECTIONS, ArcStepSchema, ArrowDefaultSchema, ArrowDetailSchema, ArrowEndDetailSchema, AtPositionSchema, BendStepSchema, CURRENT_IR_VERSION, ChildSchema, CirclePathStepSchema, ControlPointSchema, CoordinateSchema, CubicStepSchema, CurveStepSchema, CycleStepSchema, DEFAULT_ARROW_SHAPE, DrawWay, EllipsePathStepSchema, FoldStepSchema, FontSchema, HOLLOW_ARROW_SHAPES, LabelDefaultSchema, LineSpecSchema, LineStepSchema, MoveStepSchema, NODE_SHAPES, NODE_TEXT_ALIGNS, NodeDefaultSchema, NodeLabelSchema, NodeSchema, OffsetPositionSchema, PathDefaultSchema, PathSchema, PolarPositionSchema, PositionSchema, RECT_ANCHORS, RelativeAccumulateTargetSchema, RelativeTargetSchema, SceneSchema, ScopeSchema, StepLabelSchema, StepSchema, TargetSchema, TextBlockSchema, TransformSchema, circle, compileToScene, computeLayout, diamond, ellipse, fallbackMeasurer, parseTargetSugar, parseWay, point, polar, rect };
29
+ export { ARROW_MARKER_DEFAULT_SIZE, ARROW_MARKER_HOLLOW_DEFAULT_LINE_WIDTH, ARROW_SHAPES, AT_DIRECTIONS, ArcStepSchema, ArrowDefaultSchema, ArrowDetailSchema, ArrowEndDetailSchema, AtPositionSchema, BUILTIN_SHAPES, BendStepSchema, CURRENT_IR_VERSION, ChildSchema, CirclePathStepSchema, ControlPointSchema, CoordinateSchema, CubicStepSchema, CurveStepSchema, CycleStepSchema, DEFAULT_ARROW_SHAPE, DrawWay, EllipsePathStepSchema, FoldStepSchema, FontSchema, HOLLOW_ARROW_SHAPES, LabelDefaultSchema, LineSpecSchema, LineStepSchema, MoveStepSchema, NODE_SHAPES, NODE_TEXT_ALIGNS, NodeDefaultSchema, NodeLabelSchema, NodeSchema, OffsetPositionSchema, PathDefaultSchema, PathSchema, PolarPositionSchema, PositionSchema, RECT_ANCHORS, RelativeAccumulateTargetSchema, RelativeTargetSchema, SceneSchema, ScopeSchema, StepLabelSchema, StepSchema, TargetSchema, TextBlockSchema, TransformSchema, circle, compileToScene, computeLayout, diamond, ellipse, fallbackMeasurer, localToWorld, parseTargetSugar, parseWay, point, polar, rect, worldToLocal };