@orbcharts/plugins-basic 3.0.0-beta.1 → 3.0.0-beta.10

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 (212) hide show
  1. package/LICENSE +200 -200
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  9. package/dist/{src/base/BaseBarStack.d.ts → orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts} +6 -6
  10. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
  11. package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +4 -4
  12. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  13. package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +2 -2
  14. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
  15. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  16. package/dist/orbcharts-plugins-basic/src/index.d.ts +7 -0
  17. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +4 -4
  18. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +3 -3
  19. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
  20. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  21. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  23. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  24. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  25. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  26. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  27. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  28. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  29. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  30. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  31. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  32. package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +6 -0
  33. package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +5 -0
  34. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
  35. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  36. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  37. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  38. package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
  39. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  40. package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +1 -1
  41. package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +2 -2
  42. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  43. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  44. package/dist/orbcharts-plugins-basic.es.js +13264 -10298
  45. package/dist/orbcharts-plugins-basic.umd.js +105 -55
  46. package/dist/src/index.d.ts +1 -5
  47. package/lib/core-types.ts +7 -7
  48. package/lib/core.ts +6 -6
  49. package/lib/plugins-basic-types.ts +6 -6
  50. package/package.json +44 -44
  51. package/src/base/BaseBars.ts +765 -765
  52. package/src/base/BaseBarsTriangle.ts +676 -674
  53. package/src/base/BaseDots.ts +464 -515
  54. package/src/base/BaseGroupAxis.ts +679 -679
  55. package/src/base/BaseLegend.ts +684 -680
  56. package/src/base/BaseLineAreas.ts +629 -629
  57. package/src/base/BaseLines.ts +706 -706
  58. package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +782 -780
  59. package/src/base/BaseTooltip.ts +385 -382
  60. package/src/base/BaseValueAxis.ts +583 -580
  61. package/src/base/types.ts +2 -2
  62. package/src/const.ts +30 -30
  63. package/src/grid/defaults.ts +246 -244
  64. package/src/grid/gridObservables.ts +554 -545
  65. package/src/grid/index.ts +16 -16
  66. package/src/grid/plugins/Bars.ts +69 -69
  67. package/src/grid/plugins/BarsPN.ts +66 -66
  68. package/src/grid/plugins/BarsTriangle.ts +73 -73
  69. package/src/grid/plugins/Dots.ts +68 -68
  70. package/src/grid/plugins/GridLegend.ts +107 -107
  71. package/src/grid/plugins/GridTooltip.ts +66 -66
  72. package/src/grid/plugins/GridZoom.ts +218 -218
  73. package/src/grid/plugins/GroupAux.ts +1103 -1098
  74. package/src/grid/plugins/GroupAxis.ts +97 -97
  75. package/src/grid/plugins/LineAreas.ts +65 -65
  76. package/src/grid/plugins/Lines.ts +59 -59
  77. package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +64 -64
  78. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
  79. package/src/grid/plugins/ValueAxis.ts +94 -93
  80. package/src/index.ts +6 -9
  81. package/src/multiGrid/defaults.ts +224 -224
  82. package/src/multiGrid/index.ts +15 -15
  83. package/src/multiGrid/multiGridObservables.ts +49 -49
  84. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  85. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  86. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  87. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  88. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  89. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  90. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  91. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  92. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +106 -106
  93. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
  94. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  95. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +299 -298
  96. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  97. package/src/multiValue/defaults.ts +167 -0
  98. package/src/multiValue/index.ts +9 -0
  99. package/src/multiValue/multiValueObservables.ts +297 -0
  100. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  101. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  102. package/src/multiValue/plugins/Scatter.ts +426 -0
  103. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  104. package/src/multiValue/plugins/XYAux.ts +682 -0
  105. package/src/multiValue/plugins/XYAxes.ts +685 -0
  106. package/src/multiValue/plugins/XYZoom.ts +300 -0
  107. package/src/noneData/defaults.ts +102 -102
  108. package/src/noneData/index.ts +3 -3
  109. package/src/noneData/plugins/Container.ts +28 -28
  110. package/src/noneData/plugins/Tooltip.ts +374 -374
  111. package/src/relationship/defaults.ts +196 -0
  112. package/src/relationship/index.ts +5 -0
  113. package/src/relationship/plugins/ForceDirected.ts +1167 -0
  114. package/src/relationship/plugins/ForceDirectedBubbles.ts +1391 -0
  115. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  116. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  117. package/src/relationship/relationshipObservables.ts +50 -0
  118. package/src/series/defaults.ts +206 -206
  119. package/src/series/index.ts +9 -9
  120. package/src/series/plugins/Bubbles.ts +606 -603
  121. package/src/series/plugins/Pie.ts +623 -623
  122. package/src/series/plugins/PieEventTexts.ts +284 -283
  123. package/src/series/plugins/PieLabels.ts +640 -640
  124. package/src/series/plugins/Rose.ts +516 -516
  125. package/src/series/plugins/RoseLabels.ts +600 -600
  126. package/src/series/plugins/SeriesLegend.ts +107 -107
  127. package/src/series/plugins/SeriesTooltip.ts +66 -66
  128. package/src/series/seriesObservables.ts +145 -145
  129. package/src/series/seriesUtils.ts +51 -51
  130. package/src/tree/defaults.ts +78 -78
  131. package/src/tree/index.ts +4 -4
  132. package/src/tree/plugins/TreeLegend.ts +100 -107
  133. package/src/tree/plugins/TreeMap.ts +333 -333
  134. package/src/tree/plugins/TreeTooltip.ts +66 -66
  135. package/src/utils/commonUtils.ts +21 -21
  136. package/src/utils/d3Graphics.ts +174 -174
  137. package/src/utils/d3Utils.ts +74 -73
  138. package/src/utils/observables.ts +14 -14
  139. package/src/utils/orbchartsUtils.ts +116 -100
  140. package/tsconfig.base.json +13 -13
  141. package/tsconfig.json +2 -2
  142. package/vite.config.js +22 -22
  143. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  144. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  145. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  146. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  147. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  148. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  149. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  150. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  151. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  152. package/dist/src/relationship/index.d.ts +0 -0
  153. package/dist/src/relationship/plugins/Relationship.d.ts +0 -0
  154. package/src/base/BaseGroupArea.ts +0 -0
  155. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  156. package/src/relationship/plugins/Relationship.ts +0 -0
  157. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  158. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  159. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  160. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  161. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  162. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  163. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  164. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  165. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  166. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  167. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  168. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  169. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  170. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  171. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  172. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  173. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  174. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  175. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  176. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  177. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  178. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  179. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  180. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  181. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  182. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  183. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  184. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  185. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  186. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  187. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  188. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  189. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  190. /package/dist/{src/base/BaseGroupArea.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts} +0 -0
  191. /package/dist/{src/multiValue/index.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts} +0 -0
  192. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  193. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  194. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  195. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  196. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  197. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  198. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  199. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  200. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  201. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  202. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  203. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  204. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  205. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  206. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  207. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  208. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  209. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  210. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  211. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  212. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -0,0 +1,1167 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ of,
4
+ combineLatest,
5
+ map,
6
+ switchMap,
7
+ first,
8
+ takeUntil,
9
+ Subject,
10
+ BehaviorSubject,
11
+ Observable,
12
+ distinctUntilChanged,
13
+ shareReplay,
14
+ take,
15
+ share,
16
+ filter,
17
+ iif,
18
+ EMPTY
19
+ } from 'rxjs'
20
+ import type { DefinePluginConfig } from '../../../lib/core-types'
21
+ import type {
22
+ ChartParams,
23
+ DatumValue,
24
+ DataSeries,
25
+ EventName,
26
+ EventRelationship,
27
+ ComputedDataSeries,
28
+ ComputedNode,
29
+ ComputedEdge,
30
+ ContainerPosition,
31
+ Layout
32
+ } from '../../../lib/core-types'
33
+ import {
34
+ defineRelationshipPlugin } from '../../../lib/core'
35
+ import type { BubblesParams, ArcScaleType, ForceDirectedParams } from '../../../lib/plugins-basic-types'
36
+ import { getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
37
+ import { DEFAULT_FORCE_DIRECTED_PARAMS } from '../defaults'
38
+ // import { renderCircleText } from '../../utils/d3Graphics'
39
+ import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
40
+ import { d3EventObservable } from '../../utils/observables'
41
+
42
+ // interface BubblesDatum extends ComputedNode {
43
+ // x: number
44
+ // y: number
45
+ // r: number
46
+ // _originR: number // 紀錄變化前的r
47
+ // }
48
+
49
+ type Zoom = {
50
+ xOffset: number
51
+ yOffset: number
52
+ scaleExtent: {
53
+ min: number
54
+ max: number
55
+ }
56
+ }
57
+
58
+ // d3 forceSimulation使用的node資料
59
+ type RenderNode = d3.SimulationNodeDatum & ComputedNode
60
+
61
+ // d3 forceSimulation使用的edge資料
62
+ interface RenderEdge extends ComputedEdge {
63
+ source: RenderNode
64
+ target: RenderNode
65
+ }
66
+
67
+ // d3 forceSimulation使用的資料
68
+ type RenderData = {
69
+ nodes: (ComputedNode | RenderNode)[] // 經過d3 forceSimulation計算後的node才有座標資訊
70
+ edges: RenderEdge[]
71
+ }
72
+
73
+ interface D3DragEvent {
74
+ active: number
75
+ dx: number
76
+ dy: number
77
+ identifier: string
78
+ sourceEvent: MouseEvent
79
+ subject: RenderNode
80
+ target: any
81
+ type: string
82
+ x: number
83
+ y: number
84
+ }
85
+
86
+ type DragStatus = 'start' | 'drag' | 'end'
87
+
88
+ // type BubblesSimulationDatum = BubblesDatum & d3.SimulationNodeDatum
89
+
90
+ const pluginName = 'ForceDirected'
91
+
92
+ const gSelectionClassName = getClassName(pluginName, 'zoom-area')
93
+ const defsArrowMarkerId = getUniID(pluginName, 'arrow')
94
+ const defsArrowMarkerClassName = getClassName(pluginName, 'arrow-marker')
95
+ const edgeListGClassName = getClassName(pluginName, 'edge-list-g')
96
+ const edgeGClassName = getClassName(pluginName, 'edge-g')
97
+ const edgeArrowPathClassName = getClassName(pluginName, 'edge-arrow-path')
98
+ const edgeLabelGClassName = getClassName(pluginName, 'edge-label-g')
99
+ const edgeLabelClassName = getClassName(pluginName, 'edge-label')
100
+ const nodeListGClassName = getClassName(pluginName, 'node-list-g')
101
+ const nodeGClassName = getClassName(pluginName, 'node-g')
102
+ const nodeCircleClassName = getClassName(pluginName, 'node-circle')
103
+ const nodeLabelGClassName = getClassName(pluginName, 'node-label-g')
104
+ const nodeLabelClassName = getClassName(pluginName, 'node-label')
105
+
106
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_FORCE_DIRECTED_PARAMS> = {
107
+ name: pluginName,
108
+ defaultParams: DEFAULT_FORCE_DIRECTED_PARAMS,
109
+ layerIndex: LAYER_INDEX_OF_GRAPHIC,
110
+ validator: (params, { validateColumns }) => {
111
+ const result = validateColumns(params, {
112
+ dot: {
113
+ toBeTypes: ['object']
114
+ },
115
+ dotLabel: {
116
+ toBeTypes: ['object']
117
+ },
118
+ arrow: {
119
+ toBeTypes: ['object']
120
+ },
121
+ arrowLabel: {
122
+ toBeTypes: ['object']
123
+ },
124
+ force: {
125
+ toBeTypes: ['object']
126
+ },
127
+ zoomable: {
128
+ toBeTypes: ['boolean']
129
+ },
130
+ transform: {
131
+ toBeTypes: ['object']
132
+ },
133
+ scaleExtent: {
134
+ toBeTypes: ['object']
135
+ }
136
+ })
137
+ if (params.dot) {
138
+ const dotResult = validateColumns(params.dot, {
139
+ radius: {
140
+ toBeTypes: ['number']
141
+ },
142
+ fillColorType: {
143
+ toBeOption: 'ColorType'
144
+ },
145
+ strokeColorType: {
146
+ toBeOption: 'ColorType'
147
+ },
148
+ strokeWidth: {
149
+ toBeTypes: ['number']
150
+ },
151
+ styleFn: {
152
+ toBeTypes: ['Function']
153
+ },
154
+ })
155
+ if (dotResult.status === 'error') {
156
+ return dotResult
157
+ }
158
+ }
159
+ if (params.dotLabel) {
160
+ const dotLabelResult = validateColumns(params.dotLabel, {
161
+ colorType: {
162
+ toBeOption: 'ColorType'
163
+ },
164
+ sizeFixed: {
165
+ toBeTypes: ['boolean']
166
+ },
167
+ styleFn: {
168
+ toBeTypes: ['Function']
169
+ },
170
+ })
171
+ if (dotLabelResult.status === 'error') {
172
+ return dotLabelResult
173
+ }
174
+ }
175
+ if (params.arrow) {
176
+ const arrowResult = validateColumns(params.arrow, {
177
+ colorType: {
178
+ toBeOption: 'ColorType'
179
+ },
180
+ strokeWidth: {
181
+ toBeTypes: ['number']
182
+ },
183
+ pointerWidth: {
184
+ toBeTypes: ['number']
185
+ },
186
+ pointerHeight: {
187
+ toBeTypes: ['number']
188
+ },
189
+ styleFn: {
190
+ toBeTypes: ['Function']
191
+ },
192
+ })
193
+ if (arrowResult.status === 'error') {
194
+ return arrowResult
195
+ }
196
+ }
197
+ if (params.arrowLabel) {
198
+ const arrowLabelResult = validateColumns(params.arrowLabel, {
199
+ colorType: {
200
+ toBeOption: 'ColorType'
201
+ },
202
+ sizeFixed: {
203
+ toBeTypes: ['boolean']
204
+ },
205
+ styleFn: {
206
+ toBeTypes: ['Function']
207
+ },
208
+ })
209
+ if (arrowLabelResult.status === 'error') {
210
+ return arrowLabelResult
211
+ }
212
+ }
213
+ if (params.force) {
214
+ const forceResult = validateColumns(params.force, {
215
+ nodeStrength: {
216
+ toBeTypes: ['number']
217
+ },
218
+ linkDistance: {
219
+ toBeTypes: ['number']
220
+ },
221
+ velocityDecay: {
222
+ toBeTypes: ['number']
223
+ },
224
+ alphaDecay: {
225
+ toBeTypes: ['number']
226
+ },
227
+ })
228
+ if (forceResult.status === 'error') {
229
+ return forceResult
230
+ }
231
+ }
232
+ if (params.transform) {
233
+ const transformResult = validateColumns(params.transform, {
234
+ x: {
235
+ toBeTypes: ['number']
236
+ },
237
+ y: {
238
+ toBeTypes: ['number']
239
+ },
240
+ k: {
241
+ toBeTypes: ['number']
242
+ },
243
+ })
244
+ if (transformResult.status === 'error') {
245
+ return transformResult
246
+ }
247
+ }
248
+ if (params.scaleExtent) {
249
+ const scaleExtentResult = validateColumns(params.scaleExtent, {
250
+ min: {
251
+ toBeTypes: ['number']
252
+ },
253
+ max: {
254
+ toBeTypes: ['number']
255
+ },
256
+ })
257
+ if (scaleExtentResult.status === 'error') {
258
+ return scaleExtentResult
259
+ }
260
+ }
261
+ return result
262
+ }
263
+ }
264
+
265
+ // let force: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
266
+
267
+ function createSimulation (layout: Layout, fullParams: ForceDirectedParams) {
268
+ return d3.forceSimulation()
269
+ .velocityDecay(fullParams.force.velocityDecay)
270
+ .alphaDecay(fullParams.force.alphaDecay)
271
+ .force(
272
+ "link",
273
+ d3.forceLink()
274
+ .id((d: d3.SimulationNodeDatum & ComputedNode) => d.id)
275
+ .strength(1)
276
+ .distance((d: d3.SimulationLinkDatum<d3.SimulationNodeDatum & ComputedNode>) => {
277
+ // if (d.direction === 'top') {
278
+ // return 200
279
+ // } else {
280
+ // return 250
281
+ // }
282
+ return fullParams.force.linkDistance
283
+ })
284
+ )
285
+ .force("charge", d3.forceManyBody().strength(fullParams.force.nodeStrength))
286
+ .force("collision", d3.forceCollide(fullParams.dot.radius).strength(1))
287
+ .force("center", d3.forceCenter(layout.width / 2, layout.height / 2))
288
+
289
+ }
290
+
291
+ function translateFn (d: any): string {
292
+ // console.log('translateFn', d)
293
+ return "translate(" + d.x + "," + d.y + ")";
294
+ }
295
+
296
+ function translateCenterFn (d: any): string {
297
+ // console.log('translateCenterFn', d)
298
+ const x = d.source.x + ((d.target.x - d.source.x) / 2) // 置中的話除2
299
+ const y = d.source.y + ((d.target.y - d.source.y) / 2) // 置中的話除2
300
+ return "translate(" + x + "," + y + ")";
301
+ }
302
+
303
+ function linkArcFn (d: RenderEdge): string {
304
+ // console.log('linkArcFn', d)
305
+
306
+ // var dx = d.target.x - d.source.x,
307
+ // dy = d.target.y - d.source.y
308
+ // dr讓方向線變成有弧度的
309
+ // dr = Math.sqrt(dx * dx + dy * dy);
310
+ // return "M" + d.source.x + "," + d.source.y + "A" + dr + "," + dr + " 0 0,1 " + d.target.x + "," + d.target.y;
311
+
312
+ // 直線
313
+ return "M" + d.source.x + "," + d.source.y + " L" + d.target.x + "," + d.target.y;
314
+
315
+
316
+ }
317
+
318
+
319
+
320
+ function renderArrowMarker (defsSelection: d3.Selection<SVGDefsElement, any, any, unknown>, fullParams: ForceDirectedParams) {
321
+ return defsSelection
322
+ .selectAll<SVGMarkerElement, any>(`marker.${defsArrowMarkerClassName}`)
323
+ .data([fullParams])
324
+ .join(
325
+ enter => {
326
+ const enterSelection = enter
327
+ .append("marker")
328
+ .classed(defsArrowMarkerClassName, true)
329
+ .attr('id', defsArrowMarkerId)
330
+ .attr("viewBox", d => `-${d.arrow.pointerWidth} -${d.arrow.pointerHeight / 2} ${d.arrow.pointerWidth} ${d.arrow.pointerHeight}`)
331
+ .attr("orient", "auto")
332
+ enterSelection.append("path")
333
+ .attr("d", d => `M${-d.arrow.pointerWidth},${-d.arrow.pointerHeight / 2}L0,0L${-d.arrow.pointerWidth},${d.arrow.pointerHeight / 2}`) // 箭頭的尖端為(0,0)
334
+ return enterSelection
335
+ },
336
+ update => {
337
+ return update
338
+ },
339
+ exit => {
340
+ return exit.remove()
341
+ }
342
+ )
343
+ .attr("markerWidth", d => d.arrow.pointerWidth)
344
+ .attr("markerHeight", d => d.arrow.pointerHeight)
345
+ /* refX:修正marker位置(計算出和circle半徑相等的寬度)
346
+ (1)circle半徑需加上 strokeWidth/2 是因為框線是以 circle 的邊緣往內及往外擴展,所以 stroke 多出來的寬度是一半而已
347
+ (2)circle半徑需除以 path 寬度是因為「marker 的位置會受到 path 的stroke-width影響」,所以要進行修正
348
+ (3)- 1 是要修正奇怪的誤差(不知原因)
349
+ */
350
+ .attr('refX', d => ((d.dot.radius + (fullParams.dot.strokeWidth / 2)) / d.arrow.strokeWidth) - 1)
351
+ .attr("refY", 0)
352
+
353
+ }
354
+
355
+ // function drag (): d3.DragBehavior<Element, unknown, unknown> {
356
+ // let originHighlightLockMode: boolean // 拖拽前的highlightLockMode
357
+
358
+ // return d3.drag()
359
+ // .on("start", (event: D3DragEvent) => {
360
+ // console.log('start', event.sourceEvent)
361
+ // // if (this.params.lockMode) {
362
+ // // return
363
+ // // }
364
+ // // if (!d3.event.active) {
365
+ // // this.forceRestart()
366
+ // // }
367
+ // // d.fx = d.x
368
+ // // d.fy = d.y
369
+
370
+ // // // 鎖定模式才不會在拖拽過程式觸發到其他事件造成衝突
371
+ // // originHighlightLockMode = this.highlightLockMode
372
+ // // this.highlightLockMode = true
373
+ // // this.noneStopMode = true
374
+ // // // 動畫會有點卡住所以乾脆拿掉
375
+ // // if(this.tooltip != null) {
376
+ // // this.tooltip.remove()
377
+ // // }
378
+ // })
379
+ // .on("drag", function (event: D3DragEvent) {
380
+ // console.log('drag', event)
381
+ // // if (this.params.lockMode) {
382
+ // // return
383
+ // // }
384
+ // // if (!d3.event.active) {
385
+ // // this.force.alphaTarget(0)
386
+ // // }
387
+ // // d.fx = d3.event.x
388
+ // // d.fy = d3.event.y
389
+ // // d3.select(this).attr({
390
+ // // 'cx': event.x,
391
+ // // 'cy': event.y,
392
+ // // })
393
+ // d3.select(this)
394
+ // .attr('fx', event.x)
395
+ // .attr('fy', event.y)
396
+ // })
397
+ // .on("end", (event: D3DragEvent) => {
398
+ // console.log('end', event)
399
+ // // if (this.params.lockMode) {
400
+ // // return
401
+ // // }
402
+ // // d.fx = null
403
+ // // d.fy = null
404
+
405
+ // // this.highlightLockMode = originHighlightLockMode // 還原拖拽前的highlightLockMode
406
+ // // this.noneStopMode = false
407
+ // // if (this.highlightLockMode) {
408
+ // // this.forceStop()
409
+ // // }
410
+ // })
411
+ // }
412
+
413
+ function drag (simulation: d3.Simulation<d3.SimulationNodeDatum, undefined>, dragStatus$: BehaviorSubject<DragStatus>) {
414
+ function dragstarted (event: D3DragEvent) {
415
+ if (!event.active) simulation.alphaTarget(0.3).restart();
416
+ event.subject.fx = event.subject.x;
417
+ event.subject.fy = event.subject.y;
418
+
419
+ dragStatus$.next('start')
420
+ }
421
+
422
+ function dragged (event: D3DragEvent) {
423
+ event.subject.fx = event.x;
424
+ event.subject.fy = event.y;
425
+
426
+ dragStatus$.next('drag')
427
+ }
428
+
429
+ function dragended (event: D3DragEvent) {
430
+ if (!event.active) simulation.alphaTarget(0);
431
+ event.subject.fx = null;
432
+ event.subject.fy = null;
433
+
434
+ dragStatus$.next('end')
435
+ }
436
+
437
+ return d3.drag()
438
+ .on("start", dragstarted)
439
+ .on("drag", dragged)
440
+ .on("end", dragended);
441
+ }
442
+
443
+ function renderNodeG ({ nodeListGSelection, nodes }: {
444
+ nodeListGSelection: d3.Selection<SVGGElement, any, any, unknown>
445
+ nodes: RenderNode[]
446
+ }) {
447
+ return nodeListGSelection.selectAll<SVGGElement, RenderNode>('g')
448
+ .data(nodes, d => d.id)
449
+ .join(
450
+ enter => {
451
+ const enterSelection = enter
452
+ .append('g')
453
+ .classed(nodeGClassName, true)
454
+ // .attr('cursor', 'pointer')
455
+ return enterSelection
456
+ },
457
+ update => {
458
+ return update
459
+ },
460
+ exit => {
461
+ return exit.remove()
462
+ }
463
+ )
464
+ }
465
+
466
+ function renderNodeCircle ({ nodeGSelection, fullParams, fullChartParams }: {
467
+ nodeGSelection: d3.Selection<SVGGElement, RenderNode, any, unknown>
468
+ fullParams: ForceDirectedParams
469
+ fullChartParams: ChartParams
470
+ }) {
471
+ nodeGSelection.each((data,i,g) => {
472
+ const gSelection = d3.select(g[i])
473
+ gSelection.selectAll<SVGCircleElement, ComputedEdge>('circle')
474
+ .data([data])
475
+ .join(
476
+ enter => {
477
+ const enterSelection = enter
478
+ .append('circle')
479
+ .classed(nodeCircleClassName, true)
480
+ .attr('cursor', 'pointer')
481
+ return enterSelection
482
+ },
483
+ update => {
484
+ return update
485
+ },
486
+ exit => {
487
+ return exit.remove()
488
+ }
489
+ )
490
+ .attr('r', fullParams.dot.radius)
491
+ .attr('fill', d => getDatumColor({ datum: d, colorType: fullParams.dot.fillColorType, fullChartParams }))
492
+ .attr('stroke', d => getDatumColor({ datum: d, colorType: fullParams.dot.strokeColorType, fullChartParams }))
493
+ .attr('stroke-width', fullParams.dot.strokeWidth)
494
+ .attr('style', d => fullParams.dot.styleFn(d))
495
+ })
496
+
497
+ return nodeGSelection.select<SVGCircleElement>(`circle.${nodeCircleClassName}`)
498
+ }
499
+
500
+ function renderNodeLabelG ({ nodeGSelection, fullParams }: {
501
+ nodeGSelection: d3.Selection<SVGGElement, any, any, unknown>
502
+ fullParams: ForceDirectedParams
503
+ }) {
504
+ nodeGSelection.each((data,i,g) => {
505
+ const gSelection = d3.select(g[i])
506
+ gSelection.selectAll<SVGGElement, RenderNode>('g')
507
+ .data([data])
508
+ .join(
509
+ enter => {
510
+ const enterSelection = enter
511
+ .append('g')
512
+ .classed(nodeLabelGClassName, true)
513
+ // .attr('cursor', 'pointer')
514
+ return enterSelection
515
+ },
516
+ update => {
517
+ return update
518
+ },
519
+ exit => {
520
+ return exit.remove()
521
+ }
522
+ )
523
+ .attr('transform', `translate(0, ${- fullParams.dot.radius - 10})`)
524
+ })
525
+
526
+ return nodeGSelection.select<SVGTextElement>(`g.${nodeLabelGClassName}`)
527
+ }
528
+
529
+ function renderNodeLabel ({ nodeLabelGSelection, fullParams, fullChartParams }: {
530
+ nodeLabelGSelection: d3.Selection<SVGGElement, RenderNode, any, unknown>
531
+ fullParams: ForceDirectedParams
532
+ fullChartParams: ChartParams
533
+ }) {
534
+ nodeLabelGSelection.each((data,i,g) => {
535
+ const gSelection = d3.select(g[i])
536
+ gSelection.selectAll<SVGTextElement, RenderNode>('text')
537
+ .data([data], d => d.id)
538
+ .join(
539
+ enter => {
540
+ const enterSelection = enter
541
+ .append('text')
542
+ .classed(nodeLabelClassName, true)
543
+ // .attr('cursor', 'pointer')
544
+ .attr('text-anchor', 'middle')
545
+ .attr('pointer-events', 'none')
546
+ return enterSelection
547
+ },
548
+ update => {
549
+ return update
550
+ },
551
+ exit => {
552
+ return exit.remove()
553
+ }
554
+ )
555
+ .text(d => d.label)
556
+ .attr('fill', d => getDatumColor({ datum: d, colorType: fullParams.dotLabel.colorType, fullChartParams }))
557
+ .attr('font-size', fullChartParams.styles.textSize)
558
+ .attr('style', d => fullParams.dotLabel.styleFn(d))
559
+ })
560
+
561
+ return nodeLabelGSelection.select<SVGTextElement>(`text.${nodeLabelClassName}`)
562
+ }
563
+
564
+ function renderEdgeG ({ edgeListGSelection, edges }: {
565
+ edgeListGSelection: d3.Selection<SVGGElement, any, any, unknown>
566
+ edges: RenderEdge[]
567
+ }) {
568
+ return edgeListGSelection.selectAll<SVGGElement, RenderEdge>('g')
569
+ .data(edges, d => d.id)
570
+ .join(
571
+ enter => {
572
+ const enterSelection = enter
573
+ .append('g')
574
+ .classed(edgeGClassName, true)
575
+ // .attr('cursor', 'pointer')
576
+ return enterSelection
577
+ },
578
+ update => {
579
+ return update
580
+ },
581
+ exit => {
582
+ return exit.remove()
583
+ }
584
+ )
585
+ }
586
+
587
+ function renderEdgeArrowPath ({ edgeGSelection, fullParams, fullChartParams }: {
588
+ edgeGSelection: d3.Selection<SVGGElement, RenderEdge, any, unknown>
589
+ fullParams: ForceDirectedParams
590
+ fullChartParams: ChartParams
591
+ }) {
592
+ edgeGSelection.each((data,i,g) => {
593
+ const gSelection = d3.select(g[i])
594
+ gSelection.selectAll<SVGPathElement, ComputedEdge>('path')
595
+ .data([data])
596
+ .join(
597
+ enter => {
598
+ return enter
599
+ .append('path')
600
+ .classed(edgeArrowPathClassName, true)
601
+ .attr('marker-end', `url(#${defsArrowMarkerId})`)
602
+ },
603
+ update => {
604
+ return update
605
+ },
606
+ exit => {
607
+ return exit.remove()
608
+ }
609
+ )
610
+ .attr('stroke', d => getDatumColor({ datum: d.data, colorType: fullParams.arrow.colorType, fullChartParams }))
611
+ .attr('stroke-width', fullParams.arrow.strokeWidth)
612
+ .attr('style', d => fullParams.arrow.styleFn(d))
613
+ })
614
+
615
+ return edgeGSelection.select<SVGPathElement>(`path.${edgeArrowPathClassName}`)
616
+ }
617
+
618
+ function renderEdgeLabelG ({ edgeGSelection }: {
619
+ edgeGSelection: d3.Selection<SVGGElement, any, any, unknown>
620
+ }) {
621
+ edgeGSelection.each((data,i,g) => {
622
+ const gSelection = d3.select(g[i])
623
+ gSelection.selectAll<SVGGElement, RenderEdge>('g')
624
+ .data([data])
625
+ .join(
626
+ enter => {
627
+ const enterSelection = enter
628
+ .append('g')
629
+ .classed(edgeLabelGClassName, true)
630
+ // .attr('cursor', 'pointer')
631
+ return enterSelection
632
+ },
633
+ update => {
634
+ return update
635
+ },
636
+ exit => {
637
+ return exit.remove()
638
+ }
639
+ )
640
+ })
641
+
642
+ return edgeGSelection.select<SVGTextElement>(`g.${edgeLabelGClassName}`)
643
+ }
644
+
645
+ function renderEdgeLabel ({ edgeLabelGSelection, fullParams, fullChartParams }: {
646
+ edgeLabelGSelection: d3.Selection<SVGGElement, RenderEdge, any, unknown>
647
+ fullParams: ForceDirectedParams
648
+ fullChartParams: ChartParams
649
+ }) {
650
+ edgeLabelGSelection.each((data,i,g) => {
651
+ const gSelection = d3.select(g[i])
652
+ gSelection.selectAll<SVGTextElement, RenderEdge>('text')
653
+ .data([data], d => d.id)
654
+ .join(
655
+ enter => {
656
+ const enterSelection = enter
657
+ .append('text')
658
+ .classed(edgeLabelClassName, true)
659
+ // .attr('cursor', 'pointer')
660
+ .attr('text-anchor', 'middle')
661
+ .attr('pointer-events', 'none')
662
+ return enterSelection
663
+ },
664
+ update => {
665
+ return update
666
+ },
667
+ exit => {
668
+ return exit.remove()
669
+ }
670
+ )
671
+ .text(d => d.label)
672
+ .attr('fill', d => getDatumColor({ datum: d, colorType: fullParams.arrowLabel.colorType, fullChartParams }))
673
+ .attr('font-size', fullChartParams.styles.textSize)
674
+ .attr('style', d => fullParams.arrowLabel.styleFn(d))
675
+ })
676
+
677
+ return edgeLabelGSelection.select<SVGTextElement>(`text.${edgeLabelClassName}`)
678
+ }
679
+
680
+
681
+ // function renderBubbles ({ selection, bubblesData, fullParams, sumSeries }: {
682
+ // selection: d3.Selection<SVGGElement, any, any, any>
683
+ // bubblesData: BubblesDatum[]
684
+ // fullParams: BubblesParams
685
+ // sumSeries: boolean
686
+ // }) {
687
+ // const bubblesSelection = selection.selectAll<SVGGElement, BubblesDatum>("g")
688
+ // .data(bubblesData, (d) => d.id)
689
+ // .join(
690
+ // enter => {
691
+ // const enterSelection = enter
692
+ // .append('g')
693
+ // .attr('cursor', 'pointer')
694
+ // .attr('font-size', 12)
695
+ // .style('fill', '#ffffff')
696
+ // .attr("text-anchor", "middle")
697
+
698
+ // enterSelection
699
+ // .append("circle")
700
+ // .attr("class", "node")
701
+ // .attr("cx", 0)
702
+ // .attr("cy", 0)
703
+ // // .attr("r", 1e-6)
704
+ // .attr('fill', (d) => d.color)
705
+ // // .transition()
706
+ // // .duration(500)
707
+
708
+ // enterSelection
709
+ // .append('text')
710
+ // .style('opacity', 0.8)
711
+ // .attr('pointer-events', 'none')
712
+
713
+ // return enterSelection
714
+ // },
715
+ // update => {
716
+ // return update
717
+ // },
718
+ // exit => {
719
+ // return exit
720
+ // .remove()
721
+ // }
722
+ // )
723
+ // .attr("transform", (d) => {
724
+ // return `translate(${d.x},${d.y})`
725
+ // })
726
+
727
+ // // 泡泡文字要使用的的資料欄位
728
+ // const textDataColumn = sumSeries ? 'seriesLabel' : 'label'// 如果有合併series則使用seriesLabel
729
+
730
+ // bubblesSelection.select('circle')
731
+ // .transition()
732
+ // .duration(200)
733
+ // .attr("r", (d) => d.r)
734
+ // .attr('fill', (d) => d.color)
735
+ // bubblesSelection
736
+ // .each((d,i,g) => {
737
+ // const gSelection = d3.select(g[i])
738
+ // let breakAll = true
739
+ // if (d[textDataColumn].length <= fullParams.label.lineLengthMin) {
740
+ // breakAll = false
741
+ // }
742
+ // gSelection.call(renderCircleText, {
743
+ // text: d[textDataColumn],
744
+ // radius: d.r * fullParams.label.fillRate,
745
+ // lineHeight: fullParams.label.lineHeight,
746
+ // isBreakAll: breakAll
747
+ // })
748
+
749
+ // })
750
+
751
+ // return bubblesSelection
752
+ // }
753
+
754
+ // function setHighlightData ({ data, highlightRIncrease, highlightIds }: {
755
+ // data: BubblesDatum[]
756
+ // // fullParams: BubblesParams
757
+ // highlightRIncrease: number
758
+ // highlightIds: string[]
759
+ // }) {
760
+ // if (highlightRIncrease == 0) {
761
+ // return
762
+ // }
763
+ // if (!highlightIds.length) {
764
+ // data.forEach(d => d.r = d._originR)
765
+ // return
766
+ // }
767
+ // data.forEach(d => {
768
+ // if (highlightIds.includes(d.id)) {
769
+ // d.r = d._originR + highlightRIncrease
770
+ // } else {
771
+ // d.r = d._originR
772
+ // }
773
+ // })
774
+ // }
775
+
776
+
777
+ // function groupBubbles ({ fullParams, SeriesContainerPositionMap }: {
778
+ // fullParams: BubblesParams
779
+ // // graphicWidth: number
780
+ // // graphicHeight: number
781
+ // SeriesContainerPositionMap: Map<string, ContainerPosition>
782
+ // }) {
783
+ // // console.log('groupBubbles')
784
+ // force!
785
+ // // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
786
+ // // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
787
+ // .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
788
+ // return SeriesContainerPositionMap.get(data.seriesLabel)!.centerX
789
+ // }))
790
+ // .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
791
+ // return SeriesContainerPositionMap.get(data.seriesLabel)!.centerY
792
+ // }))
793
+
794
+ // force!.alpha(1).restart()
795
+ // }
796
+
797
+ function highlightNodes ({ nodeGSelection, edgeGSelection, highlightIds, fullChartParams }: {
798
+ nodeGSelection: d3.Selection<SVGGElement, RenderNode, SVGGElement, any>
799
+ edgeGSelection: d3.Selection<SVGGElement, RenderEdge, SVGGElement, any>
800
+ fullChartParams: ChartParams
801
+ highlightIds: string[]
802
+ }) {
803
+ nodeGSelection.interrupt('highlight')
804
+ // console.log(highlightIds)
805
+ if (!highlightIds.length) {
806
+ nodeGSelection
807
+ .transition('highlight')
808
+ .style('opacity', 1)
809
+ edgeGSelection
810
+ .transition('highlight')
811
+ .style('opacity', 1)
812
+ return
813
+ }
814
+
815
+ edgeGSelection
816
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
817
+
818
+ nodeGSelection.each((d, i, n) => {
819
+ const segment = d3.select(n[i])
820
+
821
+ if (highlightIds.includes(d.id)) {
822
+ segment
823
+ .style('opacity', 1)
824
+ .transition('highlight')
825
+ .ease(d3.easeElastic)
826
+ .duration(500)
827
+ } else {
828
+ // 取消
829
+ segment
830
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
831
+ }
832
+ })
833
+ }
834
+
835
+ // 暫不處理edge的highlight
836
+ // function highlightEdges ({ edgeGSelection, highlightIds, fullChartParams }: {
837
+ // edgeGSelection: d3.Selection<SVGGElement, RenderEdge, SVGGElement, any>
838
+ // fullChartParams: ChartParams
839
+ // highlightIds: string[]
840
+ // }) {
841
+ // edgeGSelection.interrupt('highlight')
842
+
843
+ // if (!highlightIds.length) {
844
+ // edgeGSelection
845
+ // .transition('highlight')
846
+ // .style('opacity', 1)
847
+ // return
848
+ // }
849
+
850
+ // edgeGSelection.each((d, i, n) => {
851
+ // const segment = d3.select(n[i])
852
+
853
+ // if (highlightIds.includes(d.id)) {
854
+ // segment
855
+ // .style('opacity', 1)
856
+ // .transition('highlight')
857
+ // .ease(d3.easeElastic)
858
+ // .duration(500)
859
+ // } else {
860
+ // // 取消放大
861
+ // segment
862
+ // .style('opacity', fullChartParams.styles.unhighlightedOpacity)
863
+ // }
864
+ // })
865
+ // }
866
+
867
+ export const ForceDirected = defineRelationshipPlugin(pluginConfig)(({ selection, rootSelection, name, observer, subject }) => {
868
+
869
+ const destroy$ = new Subject()
870
+
871
+ const gSelection = selection.append('g').classed(gSelectionClassName, true)
872
+ const defsSelection = gSelection.append('defs')
873
+ const edgeListGSelection = gSelection.append('g').classed(edgeListGClassName, true)
874
+ const nodeListGSelection = gSelection.append('g').classed(nodeListGClassName, true)
875
+
876
+ let nodeGSelection: d3.Selection<SVGGElement, RenderNode, SVGGElement, any> | undefined
877
+ let nodeCircleSelection: d3.Selection<SVGCircleElement, RenderNode, SVGGElement, any> | undefined
878
+ let nodeLabelGSelection: d3.Selection<SVGGElement, RenderNode, SVGGElement, any> | undefined
879
+ let nodeLabelSelection: d3.Selection<SVGTextElement, RenderNode, SVGGElement, any> | undefined
880
+ let edgeGSelection: d3.Selection<SVGGElement, RenderEdge, SVGGElement, any> | undefined
881
+ let edgeArrowSelection: d3.Selection<SVGPathElement, RenderEdge, SVGGElement, any> | undefined
882
+ let edgeLabelGSelection: d3.Selection<SVGGElement, RenderEdge, SVGGElement, any> | undefined
883
+ let edgeLabelSelection: d3.Selection<SVGTextElement, RenderEdge, SVGGElement, any> | undefined
884
+
885
+ const dragStatus$ = new BehaviorSubject<DragStatus>('end') // start, drag, end
886
+ const mouseEvent$ = new Subject<EventRelationship>()
887
+
888
+ // <marker> marker selection
889
+ observer.fullParams$.pipe(
890
+ takeUntil(destroy$),
891
+ map(fullParams => {
892
+ return renderArrowMarker(defsSelection, fullParams)
893
+ })
894
+ ).subscribe()
895
+
896
+ // init zoom
897
+ const d3Zoom$ = observer.fullParams$.pipe(
898
+ takeUntil(destroy$),
899
+ // map(d => d.scaleExtent),
900
+ // distinctUntilChanged((a, b) => String(a) === String(b)),
901
+ // first(),
902
+ map(data => {
903
+ let d3Zoom = data.zoomable
904
+ ? d3.zoom().on('zoom', (event) => {
905
+ // console.log(event)
906
+ // this.svgGroup.attr('transform', `translate(
907
+ // ${event.transform.x + (this.zoom.xOffset * event.transform.k)},
908
+ // ${event.transform.y + (this.zoom.yOffset * event.transform.k)}
909
+ // ) scale(
910
+ // ${event.transform.k}
911
+ // )`)
912
+ gSelection.attr('transform', `translate(
913
+ ${event.transform.x},
914
+ ${event.transform.y}
915
+ ) scale(
916
+ ${event.transform.k}
917
+ )`)
918
+
919
+ if (data.dotLabel.sizeFixed && nodeLabelSelection) {
920
+ // 反向 scale 抵消掉放大縮小
921
+ nodeLabelSelection.attr('transform', `scale(${1 / event.transform.k})`)
922
+ }
923
+ if (data.arrowLabel.sizeFixed && edgeLabelSelection) {
924
+ // 反向 scale 抵消掉放大縮小
925
+ edgeLabelSelection.attr('transform', `scale(${1 / event.transform.k})`)
926
+ }
927
+ })
928
+ : d3.zoom().on('zoom', null)
929
+ if (data.scaleExtent) {
930
+ d3Zoom.scaleExtent([data.scaleExtent.min, data.scaleExtent.max])
931
+ }
932
+ rootSelection.call(d3Zoom)
933
+
934
+ return d3Zoom
935
+ }),
936
+ // shareReplay(1)
937
+ )
938
+
939
+ // zoom transform
940
+ combineLatest({
941
+ d3Zoom: d3Zoom$,
942
+ transform: observer.fullParams$.pipe(
943
+ takeUntil(destroy$),
944
+ map(d => d.transform),
945
+ )
946
+ }).pipe(
947
+ takeUntil(destroy$),
948
+ switchMap(async d => d)
949
+ ).subscribe(data => {
950
+ // console.log('call')
951
+ selection.call(
952
+ data.d3Zoom.transform, d3.zoomIdentity
953
+ .translate(data.transform.x, data.transform.y)
954
+ .scale(data.transform.k)
955
+ )
956
+ })
957
+
958
+
959
+ const simulation$: Observable<d3.Simulation<d3.SimulationNodeDatum, undefined>> = combineLatest({
960
+ layout: observer.layout$.pipe(
961
+ first() // 只使用第一次的尺寸(置中)
962
+ ),
963
+ fullParams: observer.fullParams$
964
+ }).pipe(
965
+ takeUntil(destroy$),
966
+ switchMap(async d => d),
967
+ map(data => createSimulation(data.layout, data.fullParams)),
968
+ shareReplay(1)
969
+ )
970
+
971
+ const renderData$: Observable<RenderData> = observer.visibleComputedData$.pipe(
972
+ takeUntil(destroy$),
973
+ map(data => {
974
+ return {
975
+ nodes: data.nodes,
976
+ edges: data.edges.map(_d => {
977
+ let d: RenderEdge = _d as RenderEdge
978
+ d.source = _d.startNode // reference
979
+ d.target = _d.endNode
980
+ return d
981
+ })
982
+ }
983
+ }),
984
+ shareReplay(1)
985
+ )
986
+
987
+ combineLatest({
988
+ renderData: renderData$,
989
+ computedData: observer.computedData$,
990
+ CategoryNodeMap: observer.CategoryNodeMap$,
991
+ simulation: simulation$,
992
+ fullParams: observer.fullParams$,
993
+ fullChartParams: observer.fullChartParams$
994
+ }).pipe(
995
+ takeUntil(destroy$),
996
+ switchMap(async d => d),
997
+ ).subscribe(data => {
998
+
999
+ nodeGSelection = renderNodeG({
1000
+ nodeListGSelection: nodeListGSelection,
1001
+ nodes: data.renderData.nodes,
1002
+ })
1003
+
1004
+ nodeCircleSelection = renderNodeCircle({
1005
+ nodeGSelection: nodeGSelection,
1006
+ fullParams: data.fullParams,
1007
+ fullChartParams: data.fullChartParams
1008
+ })
1009
+ nodeCircleSelection.call(drag(data.simulation, dragStatus$))
1010
+
1011
+ nodeLabelGSelection = renderNodeLabelG({
1012
+ nodeGSelection: nodeGSelection,
1013
+ fullParams: data.fullParams
1014
+ })
1015
+
1016
+ nodeLabelSelection = renderNodeLabel({
1017
+ nodeLabelGSelection: nodeLabelGSelection,
1018
+ fullParams: data.fullParams,
1019
+ fullChartParams: data.fullChartParams
1020
+ })
1021
+
1022
+ edgeGSelection = renderEdgeG({
1023
+ edgeListGSelection: edgeListGSelection,
1024
+ edges: data.renderData.edges
1025
+ })
1026
+
1027
+ edgeArrowSelection = renderEdgeArrowPath({
1028
+ edgeGSelection: edgeGSelection,
1029
+ fullParams: data.fullParams,
1030
+ fullChartParams: data.fullChartParams
1031
+ })
1032
+
1033
+ edgeLabelGSelection = renderEdgeLabelG({
1034
+ edgeGSelection: edgeGSelection,
1035
+ })
1036
+
1037
+ edgeLabelSelection = renderEdgeLabel({
1038
+ edgeLabelGSelection: edgeLabelGSelection,
1039
+ fullParams: data.fullParams,
1040
+ fullChartParams: data.fullChartParams
1041
+ })
1042
+
1043
+ data.simulation.nodes(data.renderData.nodes)
1044
+ .on('tick', () => {
1045
+ edgeArrowSelection.attr('d', linkArcFn)
1046
+ nodeGSelection.attr('transform', translateFn)
1047
+ // nodeLabelGSelection.attr('transform', d => translateFn({
1048
+ // x: d.x,
1049
+ // y: d.y - data.fullParams.dot.radius - 10
1050
+ // }))
1051
+ edgeLabelGSelection.attr('transform', d => translateCenterFn(d))
1052
+ })
1053
+ ;(data.simulation.force("link") as any).links(data.renderData.edges)
1054
+
1055
+ data.simulation.alpha(0.3).restart()
1056
+
1057
+ nodeCircleSelection
1058
+ .on('mouseover', (event, datum) => {
1059
+ event.stopPropagation()
1060
+
1061
+ mouseEvent$.next({
1062
+ type: 'relationship',
1063
+ eventName: 'mouseover',
1064
+ pluginName,
1065
+ highlightTarget: data.fullChartParams.highlightTarget,
1066
+ datum: datum,
1067
+ category: data.CategoryNodeMap.get(datum.categoryLabel)!,
1068
+ categoryIndex: datum.categoryIndex,
1069
+ categoryLabel: datum.categoryLabel,
1070
+ event,
1071
+ data: data.computedData
1072
+ })
1073
+ })
1074
+ .on('mousemove', (event, datum) => {
1075
+ event.stopPropagation()
1076
+
1077
+ mouseEvent$.next({
1078
+ type: 'relationship',
1079
+ eventName: 'mousemove',
1080
+ pluginName,
1081
+ highlightTarget: data.fullChartParams.highlightTarget,
1082
+ datum: datum,
1083
+ category: data.CategoryNodeMap.get(datum.categoryLabel)!,
1084
+ categoryIndex: datum.categoryIndex,
1085
+ categoryLabel: datum.categoryLabel,
1086
+ event,
1087
+ data: data.computedData
1088
+ })
1089
+ })
1090
+ .on('mouseout', (event, datum) => {
1091
+ event.stopPropagation()
1092
+
1093
+ mouseEvent$.next({
1094
+ type: 'relationship',
1095
+ eventName: 'mouseout',
1096
+ pluginName,
1097
+ highlightTarget: data.fullChartParams.highlightTarget,
1098
+ datum: datum,
1099
+ category: data.CategoryNodeMap.get(datum.categoryLabel)!,
1100
+ categoryIndex: datum.categoryIndex,
1101
+ categoryLabel: datum.categoryLabel,
1102
+ event,
1103
+ data: data.computedData
1104
+ })
1105
+ })
1106
+ .on('click', (event, datum) => {
1107
+ event.stopPropagation()
1108
+
1109
+ mouseEvent$.next({
1110
+ type: 'relationship',
1111
+ eventName: 'click',
1112
+ pluginName,
1113
+ highlightTarget: data.fullChartParams.highlightTarget,
1114
+ datum: datum,
1115
+ category: data.CategoryNodeMap.get(datum.categoryLabel)!,
1116
+ categoryIndex: datum.categoryIndex,
1117
+ categoryLabel: datum.categoryLabel,
1118
+ event,
1119
+ data: data.computedData
1120
+ })
1121
+ })
1122
+ })
1123
+
1124
+ dragStatus$.pipe(
1125
+ // 只有沒有托曳時才執行
1126
+ switchMap(d => iif(() => d === 'end', mouseEvent$, EMPTY))
1127
+ ).subscribe(data => {
1128
+ subject.event$.next(data)
1129
+ })
1130
+
1131
+ combineLatest({
1132
+ renderData: renderData$,
1133
+ highlightNodes: observer.relationshipHighlightNodes$.pipe(
1134
+ map(data => data.map(d => d.id))
1135
+ ),
1136
+ highlightEdges: observer.relationshipHighlightEdges$.pipe(
1137
+ map(data => data.map(d => d.id))
1138
+ ),
1139
+ fullChartParams: observer.fullChartParams$,
1140
+ fullParams: observer.fullParams$,
1141
+ }).pipe(
1142
+ takeUntil(destroy$),
1143
+ switchMap(async d => d)
1144
+ ).subscribe(data => {
1145
+ if (!nodeGSelection || !edgeGSelection) {
1146
+ return
1147
+ }
1148
+
1149
+ highlightNodes({
1150
+ nodeGSelection,
1151
+ edgeGSelection,
1152
+ highlightIds: data.highlightNodes,
1153
+ fullChartParams: data.fullChartParams
1154
+ })
1155
+ // highlightEdges({
1156
+ // edgeGSelection,
1157
+ // highlightIds: data.highlightEdges,
1158
+ // fullChartParams: data.fullChartParams
1159
+ // })
1160
+ })
1161
+
1162
+
1163
+
1164
+ return () => {
1165
+ destroy$.next(undefined)
1166
+ }
1167
+ })