@orbcharts/plugins-basic 3.0.2 → 3.0.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 (133) hide show
  1. package/LICENSE +200 -200
  2. package/dist/lib/gridObservables.d.ts +1 -0
  3. package/dist/orbcharts-plugins-basic.es.js +14803 -13543
  4. package/dist/orbcharts-plugins-basic.umd.js +129 -99
  5. package/dist/src/base/BaseOrdinalBubbles.d.ts +26 -0
  6. package/dist/src/base/BaseRacingBars.d.ts +2 -1
  7. package/dist/src/base/BaseRacingLabels.d.ts +1 -0
  8. package/dist/src/base/BaseXZoom.d.ts +18 -0
  9. package/dist/src/grid/gridObservables.d.ts +4 -7
  10. package/dist/src/multiValue/defaults.d.ts +5 -1
  11. package/dist/src/multiValue/index.d.ts +4 -0
  12. package/dist/src/multiValue/multiValueObservables.d.ts +14 -1
  13. package/dist/src/multiValue/plugins/OrdinalAux.d.ts +3 -0
  14. package/dist/src/multiValue/plugins/OrdinalAxis.d.ts +3 -0
  15. package/dist/src/multiValue/plugins/OrdinalBubbles.d.ts +3 -0
  16. package/dist/src/multiValue/plugins/OrdinalZoom.d.ts +1 -0
  17. package/lib/core-types.ts +7 -7
  18. package/lib/core.ts +6 -6
  19. package/lib/gridObservables.ts +6 -0
  20. package/lib/plugins-basic-types.ts +6 -6
  21. package/package.json +48 -48
  22. package/src/base/BaseBars.ts +765 -765
  23. package/src/base/BaseBarsTriangle.ts +676 -676
  24. package/src/base/BaseDots.ts +464 -464
  25. package/src/base/BaseGroupAxis.ts +691 -691
  26. package/src/base/BaseLegend.ts +684 -684
  27. package/src/base/BaseLineAreas.ts +629 -629
  28. package/src/base/BaseLines.ts +706 -706
  29. package/src/base/BaseOrdinalBubbles.ts +730 -0
  30. package/src/base/BaseRacingBars.ts +582 -551
  31. package/src/base/BaseRacingLabels.ts +404 -396
  32. package/src/base/BaseRacingValueLabels.ts +403 -403
  33. package/src/base/BaseStackedBars.ts +782 -782
  34. package/src/base/BaseTooltip.ts +386 -386
  35. package/src/base/BaseValueAxis.ts +600 -600
  36. package/src/base/BaseXAxis.ts +427 -427
  37. package/src/base/BaseXZoom.ts +242 -0
  38. package/src/base/BaseYAxis.ts +389 -389
  39. package/src/base/types.ts +2 -2
  40. package/src/const.ts +30 -30
  41. package/src/grid/defaults.ts +213 -213
  42. package/src/grid/gridObservables.ts +635 -612
  43. package/src/grid/index.ts +16 -16
  44. package/src/grid/plugins/Bars.ts +69 -69
  45. package/src/grid/plugins/BarsPN.ts +66 -66
  46. package/src/grid/plugins/BarsTriangle.ts +73 -73
  47. package/src/grid/plugins/Dots.ts +68 -68
  48. package/src/grid/plugins/GridLegend.ts +107 -107
  49. package/src/grid/plugins/GridTooltip.ts +66 -66
  50. package/src/grid/plugins/GroupAux.ts +1095 -1120
  51. package/src/grid/plugins/GroupAxis.ts +73 -73
  52. package/src/grid/plugins/GroupZoom.ts +218 -218
  53. package/src/grid/plugins/LineAreas.ts +65 -65
  54. package/src/grid/plugins/Lines.ts +59 -59
  55. package/src/grid/plugins/StackedBars.ts +64 -64
  56. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  57. package/src/grid/plugins/ValueAxis.ts +94 -94
  58. package/src/index.ts +6 -6
  59. package/src/multiGrid/defaults.ts +244 -244
  60. package/src/multiGrid/index.ts +14 -14
  61. package/src/multiGrid/multiGridObservables.ts +50 -50
  62. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  63. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  64. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  65. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  66. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  67. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  68. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  69. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  70. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  71. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  72. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  73. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  74. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  75. package/src/multiValue/defaults.ts +523 -431
  76. package/src/multiValue/index.ts +16 -12
  77. package/src/multiValue/multiValueObservables.ts +781 -666
  78. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  79. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  80. package/src/multiValue/plugins/OrdinalAux.ts +661 -0
  81. package/src/multiValue/plugins/OrdinalAxis.ts +525 -0
  82. package/src/multiValue/plugins/OrdinalBubbles.ts +226 -0
  83. package/src/multiValue/plugins/OrdinalZoom.ts +57 -0
  84. package/src/multiValue/plugins/RacingBars.ts +375 -373
  85. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  86. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  87. package/src/multiValue/plugins/Scatter.ts +486 -426
  88. package/src/multiValue/plugins/ScatterBubbles.ts +635 -554
  89. package/src/multiValue/plugins/XAxis.ts +107 -107
  90. package/src/multiValue/plugins/XYAux.ts +683 -682
  91. package/src/multiValue/plugins/XYAxes.ts +194 -194
  92. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  93. package/src/multiValue/plugins/XZoom.ts +40 -299
  94. package/src/noneData/defaults.ts +102 -102
  95. package/src/noneData/index.ts +3 -3
  96. package/src/noneData/plugins/Container.ts +27 -27
  97. package/src/noneData/plugins/Tooltip.ts +373 -373
  98. package/src/relationship/defaults.ts +221 -221
  99. package/src/relationship/index.ts +5 -5
  100. package/src/relationship/plugins/ForceDirected.ts +1173 -1173
  101. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1411
  102. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  103. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  104. package/src/relationship/relationshipObservables.ts +49 -49
  105. package/src/series/defaults.ts +221 -221
  106. package/src/series/index.ts +9 -9
  107. package/src/series/plugins/Bubbles.ts +636 -636
  108. package/src/series/plugins/Pie.ts +623 -623
  109. package/src/series/plugins/PieEventTexts.ts +284 -284
  110. package/src/series/plugins/PieLabels.ts +640 -640
  111. package/src/series/plugins/Rose.ts +516 -516
  112. package/src/series/plugins/RoseLabels.ts +600 -600
  113. package/src/series/plugins/SeriesLegend.ts +107 -107
  114. package/src/series/plugins/SeriesTooltip.ts +66 -66
  115. package/src/series/seriesObservables.ts +145 -145
  116. package/src/series/seriesUtils.ts +51 -51
  117. package/src/tree/defaults.ts +102 -102
  118. package/src/tree/index.ts +4 -4
  119. package/src/tree/plugins/TreeLegend.ts +100 -100
  120. package/src/tree/plugins/TreeMap.ts +341 -341
  121. package/src/tree/plugins/TreeTooltip.ts +66 -66
  122. package/src/utils/commonUtils.ts +31 -31
  123. package/src/utils/d3Graphics.ts +176 -176
  124. package/src/utils/d3Utils.ts +92 -92
  125. package/src/utils/observables.ts +14 -14
  126. package/src/utils/orbchartsUtils.ts +129 -129
  127. package/tsconfig.base.json +13 -13
  128. package/tsconfig.json +2 -2
  129. package/vite.config.js +22 -22
  130. package/dist/src/multiValue/plugins/OrdinalXAxis.d.ts +0 -0
  131. package/dist/src/multiValue/plugins/RankingAxis_legacy.d.ts +0 -0
  132. package/src/multiValue/plugins/OrdinalXAxis.ts +0 -0
  133. package/src/multiValue/plugins/RankingAxis_legacy.ts +0 -109
@@ -1,637 +1,637 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- first,
7
- takeUntil,
8
- debounceTime,
9
- Subject,
10
- Observable,
11
- distinctUntilChanged,
12
- shareReplay} from 'rxjs'
13
- import type { DefinePluginConfig } from '../../../lib/core-types'
14
- import type {
15
- ChartParams,
16
- DatumValue,
17
- DataSeries,
18
- EventName,
19
- ComputedDataSeries,
20
- ComputedDatumSeries,
21
- ContainerPosition } from '../../../lib/core-types'
22
- import {
23
- defineSeriesPlugin } from '../../../lib/core'
24
- import type { BubblesParams, ArcScaleType } from '../../../lib/plugins-basic-types'
25
- import { DEFAULT_BUBBLES_PARAMS } from '../defaults'
26
- import { renderCircleText } from '../../utils/d3Graphics'
27
- import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
28
- import { getDatumColor } from '../../utils/orbchartsUtils'
29
-
30
- interface BubblesDatum extends ComputedDatumSeries {
31
- x: number
32
- y: number
33
- r: number
34
- _originR: number // 紀錄變化前的r
35
- }
36
-
37
- type BubblesSimulationDatum = BubblesDatum & d3.SimulationNodeDatum
38
-
39
- const pluginName = 'Bubbles'
40
-
41
- const baseLineHeight = 12 // 未變形前的字體大小(代入計算用而已,數字多少都不會有影響)
42
-
43
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES_PARAMS> = {
44
- name: pluginName,
45
- defaultParams: DEFAULT_BUBBLES_PARAMS,
46
- layerIndex: LAYER_INDEX_OF_GRAPHIC,
47
- validator: (params, { validateColumns }) => {
48
- const result = validateColumns(params, {
49
- force: {
50
- toBeTypes: ['object']
51
- },
52
- bubbleLabel: {
53
- toBeTypes: ['object']
54
- },
55
- arcScaleType: {
56
- toBe: '"area" | "radius"',
57
- test: (value) => value === 'area' || value === 'radius'
58
- }
59
- })
60
- if (params.force) {
61
- const forceResult = validateColumns(params.force, {
62
- velocityDecay: {
63
- toBeTypes: ['number']
64
- },
65
- collisionSpacing: {
66
- toBeTypes: ['number']
67
- },
68
- strength: {
69
- toBeTypes: ['number']
70
- },
71
- })
72
- if (forceResult.status === 'error') {
73
- return forceResult
74
- }
75
- }
76
- if (params.bubbleLabel) {
77
- const bubbleLabelResult = validateColumns(params.bubbleLabel, {
78
- colorType: {
79
- toBeOption: 'ColorType'
80
- },
81
- fillRate: {
82
- toBeTypes: ['number']
83
- },
84
- lineHeight: {
85
- toBeTypes: ['number']
86
- },
87
- maxLineLength: {
88
- toBeTypes: ['number']
89
- },
90
- })
91
- if (bubbleLabelResult.status === 'error') {
92
- return bubbleLabelResult
93
- }
94
- }
95
- return result
96
- }
97
- }
98
-
99
-
100
- // let isRunning = false
101
-
102
- function createSimulation (bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>, fullParams: BubblesParams) {
103
- return d3.forceSimulation()
104
- .velocityDecay(fullParams.force!.velocityDecay!)
105
- // .alphaDecay(0.2)
106
- .force(
107
- "collision",
108
- d3.forceCollide()
109
- .radius((d: d3.SimulationNodeDatum & BubblesDatum) => {
110
- return d.r + fullParams.force!.collisionSpacing
111
- })
112
- // .strength(0.01)
113
- )
114
- .force("charge", d3.forceManyBody().strength((d: d3.SimulationNodeDatum & BubblesDatum) => {
115
- return - Math.pow(d.r, 2.0) * fullParams.force!.strength
116
- }))
117
- // .force("charge", d3.forceManyBody().strength(-2000))
118
- // .force("collision", d3.forceCollide(60).strength(1)) // @Q@ 60為泡泡的R,暫時是先寫死的
119
- // .force("x", d3.forceX().strength(forceStrength).x(this.graphicWidth / 2))
120
- // .force("y", d3.forceY().strength(forceStrength).y(this.graphicHeight / 2))
121
- .on("tick", () => {
122
- // if (!bubblesSelection) {
123
- // return
124
- // }
125
- bubblesSelection
126
- .attr("transform", (d) => {
127
- return `translate(${d.x},${d.y})`
128
- })
129
- // .attr("cx", (d) => d.x)
130
- // .attr("cy", (d) => d.y)
131
-
132
-
133
- })
134
- // .on("end", () => {
135
-
136
- // })
137
-
138
- }
139
-
140
-
141
- // // 計算最大泡泡的半徑
142
- // function getMaxR ({ data, totalR, maxValue, avgValue }: {
143
- // data: DatumValue[]
144
- // totalR: number
145
- // maxValue: number
146
- // avgValue: number
147
- // }) {
148
- // // 平均r(假想是正方型來計算的,比如說大正方型裡有4個正方型,則 r = width/Math.sqrt(4)/2)
149
- // const avgR = totalR / Math.sqrt(data.length)
150
- // const avgSize = avgR * avgR * Math.PI
151
- // const sizeRate = avgSize / avgValue
152
- // const maxSize = maxValue * sizeRate
153
- // const maxR = Math.pow(maxSize / Math.PI, 0.5)
154
-
155
- // const modifier = 0.785 // @Q@ 因為以下公式是假設泡泡是正方型來計算,所以畫出來的圖會偏大一些,這個數值是用來修正用的
156
- // return maxR * modifier
157
- // }
158
-
159
- function createBubblesData ({ visibleComputedSortedData, LastBubbleDataMap, graphicWidth, graphicHeight, SeriesContainerPositionMap, scaleType }: {
160
- visibleComputedSortedData: ComputedDataSeries
161
- LastBubbleDataMap: Map<string, BubblesDatum>
162
- graphicWidth: number
163
- graphicHeight: number
164
- SeriesContainerPositionMap: Map<string, ContainerPosition>
165
- scaleType: ArcScaleType
166
- // highlightIds: string[]
167
- }): BubblesDatum[] {
168
- // 虛擬大圓(所有小圓聚合起來的大圓)的半徑
169
- const totalR = Math.min(...[graphicWidth, graphicHeight]) / 2
170
-
171
- const data = visibleComputedSortedData.flat()
172
-
173
- const totalValue = data.reduce((acc, current) => acc + current.value, 0)
174
-
175
- // 半徑比例尺
176
- const radiusScale = d3.scalePow()
177
- .domain([0, totalValue])
178
- .range([0, totalR])
179
- .exponent(scaleType === 'area'
180
- ? 0.5 // 數值映射面積(0.5為取平方根)
181
- : 1 // 數值映射半徑
182
- )
183
-
184
- // 縮放比例 - 確保多個小圓的總面積等於大圓的面積
185
- const scaleFactor = scaleType === 'area'
186
- ? 1
187
- // 當數值映射半徑時,多個小圓的總面積會小於大圓的面積,所以要計算縮放比例
188
- : (() => {
189
- const totalArea = totalR * totalR * Math.PI
190
- return Math.sqrt(totalArea / d3.sum(data, d => Math.PI * Math.pow(radiusScale(d.value), 2)))
191
- })()
192
-
193
- // 調整係數 - 因為圓和圓之間的空隙造成聚合起來的大圓會略大,所以稍作微調
194
- const adjustmentFactor = 0.9
195
-
196
- return data.map((_d) => {
197
- const d: BubblesDatum = _d as BubblesDatum
198
-
199
- const existDatum = LastBubbleDataMap.get(d.id)
200
-
201
- if (existDatum) {
202
- // 使用現有的座標
203
- d.x = existDatum.x
204
- d.y = existDatum.y
205
- } else {
206
- const seriesContainerPosition = SeriesContainerPositionMap.get(d.seriesLabel)!
207
- d.x = Math.random() * seriesContainerPosition.width
208
- d.y = Math.random() * seriesContainerPosition.height
209
- }
210
- const r = radiusScale!(d.value ?? 0)! * scaleFactor * adjustmentFactor
211
- d.r = r
212
- d._originR = r
213
-
214
- return d
215
- })
216
- }
217
-
218
- function renderBubbles ({ selection, bubblesData, fullParams, fullChartParams, sumSeries }: {
219
- selection: d3.Selection<SVGGElement, any, any, any>
220
- bubblesData: BubblesDatum[]
221
- fullParams: BubblesParams
222
- fullChartParams: ChartParams
223
- sumSeries: boolean
224
- }) {
225
- const bubblesSelection = selection.selectAll<SVGGElement, BubblesDatum>("g")
226
- .data(bubblesData, (d) => d.id)
227
- .join(
228
- enter => {
229
- const enterSelection = enter
230
- .append('g')
231
- .attr('cursor', 'pointer')
232
- .attr('font-size', baseLineHeight)
233
- .style('fill', '#ffffff')
234
- .attr("text-anchor", "middle")
235
-
236
- enterSelection
237
- .append("circle")
238
- .attr("class", "node")
239
- .attr("cx", 0)
240
- .attr("cy", 0)
241
- // .attr("r", 1e-6)
242
- .attr('fill', (d) => d.color)
243
- // .transition()
244
- // .duration(500)
245
-
246
- enterSelection
247
- .append('text')
248
- .style('opacity', 0.8)
249
- .attr('pointer-events', 'none')
250
-
251
- return enterSelection
252
- },
253
- update => {
254
- return update
255
- },
256
- exit => {
257
- return exit
258
- .remove()
259
- }
260
- )
261
- .attr("transform", (d) => {
262
- return `translate(${d.x},${d.y})`
263
- })
264
-
265
- // 泡泡文字要使用的的資料欄位
266
- const textDataColumn = sumSeries ? 'seriesLabel' : 'label'// 如果有合併series則使用seriesLabel
267
-
268
- bubblesSelection.select('circle')
269
- .transition()
270
- .duration(200)
271
- .attr("r", (d) => d.r)
272
- .attr('fill', (d) => d.color)
273
- bubblesSelection
274
- .each((d,i,g) => {
275
- const gSelection = d3.select(g[i])
276
- const text = d[textDataColumn] ?? ''
277
-
278
- gSelection.call(renderCircleText, {
279
- text,
280
- radius: d.r * fullParams.bubbleLabel.fillRate,
281
- lineHeight: baseLineHeight * fullParams.bubbleLabel.lineHeight,
282
- isBreakAll: text.length <= fullParams.bubbleLabel.maxLineLength
283
- ? false
284
- : fullParams.bubbleLabel.wordBreakAll
285
- })
286
-
287
- // -- text color --
288
- gSelection.select('text').attr('fill', _ => getDatumColor({
289
- datum: d,
290
- colorType: fullParams.bubbleLabel.colorType,
291
- fullChartParams: fullChartParams
292
- }))
293
-
294
- })
295
-
296
- return bubblesSelection
297
- }
298
-
299
- function setHighlightData ({ data, highlightRIncrease, highlightIds }: {
300
- data: BubblesDatum[]
301
- // fullParams: BubblesParams
302
- highlightRIncrease: number
303
- highlightIds: string[]
304
- }) {
305
- if (highlightRIncrease == 0) {
306
- return
307
- }
308
- if (!highlightIds.length) {
309
- data.forEach(d => d.r = d._originR)
310
- return
311
- }
312
- data.forEach(d => {
313
- if (highlightIds.includes(d.id)) {
314
- d.r = d._originR + highlightRIncrease
315
- } else {
316
- d.r = d._originR
317
- }
318
- })
319
- }
320
-
321
- function drag (_simulation: d3.Simulation<d3.SimulationNodeDatum, undefined>): d3.DragBehavior<Element, unknown, unknown> {
322
- return d3.drag()
323
- .on("start", (event, d: any) => {
324
- if (!event.active) {
325
- _simulation!.alpha(1).restart()
326
- }
327
- d.fx = d.x
328
- d.fy = d.y
329
- })
330
- .on("drag", (event, d: any) => {
331
- if (!event.active) {
332
- _simulation!.alphaTarget(0)
333
- }
334
- d.fx = event.x
335
- d.fy = event.y
336
- })
337
- .on("end", (event, d: any) => {
338
- d.fx = null
339
- d.fy = null
340
- _simulation!.alpha(1).restart()
341
- })
342
- }
343
-
344
-
345
- // private nodeTypePos (d: any) {
346
- // console.log(d)
347
- // console.log(this.TypeCenters.get(d.type)!)
348
- // const typeCenter = this.TypeCenters.get(d.type)!
349
- // return typeCenter ? typeCenter.x : 0
350
- // }
351
-
352
- function groupBubbles ({ _simulation, fullParams, SeriesContainerPositionMap }: {
353
- _simulation: d3.Simulation<d3.SimulationNodeDatum, undefined>
354
- fullParams: BubblesParams
355
- // graphicWidth: number
356
- // graphicHeight: number
357
- SeriesContainerPositionMap: Map<string, ContainerPosition>
358
- }) {
359
- // console.log('groupBubbles')
360
- _simulation!
361
- // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
362
- // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
363
- .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
364
- return SeriesContainerPositionMap.get(data.seriesLabel)!.centerX
365
- }))
366
- .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
367
- return SeriesContainerPositionMap.get(data.seriesLabel)!.centerY
368
- }))
369
-
370
- // force!.alpha(1).restart()
371
- }
372
-
373
- function highlight ({ bubblesSelection, highlightIds, fullChartParams }: {
374
- bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>
375
- fullChartParams: ChartParams
376
- highlightIds: string[]
377
- }) {
378
- bubblesSelection.interrupt('highlight')
379
-
380
- if (!highlightIds.length) {
381
- bubblesSelection
382
- .transition('highlight')
383
- .style('opacity', 1)
384
- return
385
- }
386
-
387
- bubblesSelection.each((d, i, n) => {
388
- const segment = d3.select(n[i])
389
-
390
- if (highlightIds.includes(d.id)) {
391
- segment
392
- .style('opacity', 1)
393
- .transition('highlight')
394
- .ease(d3.easeElastic)
395
- .duration(500)
396
- } else {
397
- // 取消放大
398
- segment
399
- .style('opacity', fullChartParams.styles.unhighlightedOpacity)
400
- }
401
- })
402
- }
403
-
404
-
405
- export const Bubbles = defineSeriesPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
406
-
407
- const destroy$ = new Subject()
408
-
409
- let simulation: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
410
-
411
- // 紀錄前一次bubble data
412
- let LastBubbleDataMap: Map<string, BubblesDatum> = new Map()
413
-
414
-
415
- const sumSeries$ = observer.fullDataFormatter$.pipe(
416
- map(d => d.sumSeries),
417
- distinctUntilChanged()
418
- )
419
-
420
- const scaleType$ = observer.fullParams$.pipe(
421
- takeUntil(destroy$),
422
- map(d => d.arcScaleType),
423
- distinctUntilChanged()
424
- )
425
-
426
- const bubblesData$ = combineLatest({
427
- layout: observer.layout$,
428
- SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
429
- visibleComputedSortedData: observer.visibleComputedSortedData$,
430
- scaleType: scaleType$
431
- }).pipe(
432
- takeUntil(destroy$),
433
- switchMap(async (d) => d),
434
- map(data => {
435
- // console.log(data.visibleComputedSortedData)
436
- return createBubblesData({
437
- visibleComputedSortedData: data.visibleComputedSortedData,
438
- LastBubbleDataMap,
439
- graphicWidth: data.layout.width,
440
- graphicHeight: data.layout.height,
441
- SeriesContainerPositionMap: data.SeriesContainerPositionMap,
442
- scaleType: data.scaleType
443
- })
444
- }),
445
- shareReplay(1)
446
- )
447
-
448
- // 紀錄前一次bubble data
449
- bubblesData$.subscribe(d => {
450
- LastBubbleDataMap = new Map(d.map(_d => [_d.id, _d])) // key: id, value: datum
451
- })
452
-
453
- const highlightTarget$ = observer.fullChartParams$.pipe(
454
- takeUntil(destroy$),
455
- map(d => d.highlightTarget),
456
- distinctUntilChanged()
457
- )
458
-
459
- const bubblesSelection$ = combineLatest({
460
- bubblesData: bubblesData$,
461
- fullParams: observer.fullParams$,
462
- fullChartParams: observer.fullChartParams$,
463
- SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
464
- sumSeries: sumSeries$
465
- }).pipe(
466
- takeUntil(destroy$),
467
- switchMap(async (d) => d),
468
- map(data => {
469
- if (simulation) {
470
- // 先停止,重新計算之後再restart
471
- simulation.stop()
472
- }
473
-
474
- const bubblesSelection = renderBubbles({
475
- selection,
476
- bubblesData: data.bubblesData,
477
- fullParams: data.fullParams,
478
- fullChartParams: data.fullChartParams,
479
- sumSeries: data.sumSeries
480
- })
481
-
482
- simulation = createSimulation(bubblesSelection, data.fullParams)
483
-
484
- simulation.nodes(data.bubblesData)
485
-
486
- groupBubbles({
487
- _simulation: simulation,
488
- fullParams: data.fullParams,
489
- SeriesContainerPositionMap: data.SeriesContainerPositionMap
490
- // graphicWidth: data.layout.width,
491
- // graphicHeight: data.layout.height
492
- })
493
-
494
- simulation!.alpha(1).restart()
495
-
496
- return bubblesSelection
497
- }),
498
- shareReplay(1)
499
- )
500
-
501
- combineLatest({
502
- bubblesSelection: bubblesSelection$,
503
- computedData: observer.computedData$,
504
- SeriesDataMap: observer.SeriesDataMap$,
505
- highlightTarget: highlightTarget$,
506
- }).pipe(
507
- takeUntil(destroy$),
508
- switchMap(async (d) => d)
509
- ).subscribe(data => {
510
-
511
- data.bubblesSelection
512
- .on('mouseover', (event, datum) => {
513
- // this.tooltip!.setDatum({
514
- // data: d,
515
- // x: d3.event.clientX,
516
- // y: d3.event.clientY
517
- // })
518
-
519
- subject.event$.next({
520
- type: 'series',
521
- eventName: 'mouseover',
522
- pluginName: name,
523
- highlightTarget: data.highlightTarget,
524
- datum,
525
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
526
- seriesIndex: datum.seriesIndex,
527
- seriesLabel: datum.seriesLabel,
528
- event,
529
- data: data.computedData
530
- })
531
- })
532
- .on('mousemove', (event, datum) => {
533
- // this.tooltip!.setDatum({
534
- // x: d3.event.clientX,
535
- // y: d3.event.clientY
536
- // })
537
-
538
- subject.event$.next({
539
- type: 'series',
540
- eventName: 'mousemove',
541
- pluginName: name,
542
- highlightTarget: data.highlightTarget,
543
- datum,
544
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
545
- seriesIndex: datum.seriesIndex,
546
- seriesLabel: datum.seriesLabel,
547
- event,
548
- data: data.computedData
549
- })
550
- })
551
- .on('mouseout', (event, datum) => {
552
- // this.tooltip!.remove()
553
-
554
- subject.event$.next({
555
- type: 'series',
556
- eventName: 'mouseout',
557
- pluginName: name,
558
- highlightTarget: data.highlightTarget,
559
- datum,
560
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
561
- seriesIndex: datum.seriesIndex,
562
- seriesLabel: datum.seriesLabel,
563
- event,
564
- data: data.computedData
565
- })
566
- })
567
- .on('click', (event, datum) => {
568
-
569
- subject.event$.next({
570
- type: 'series',
571
- eventName: 'click',
572
- pluginName: name,
573
- highlightTarget: data.highlightTarget,
574
- datum,
575
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
576
- seriesIndex: datum.seriesIndex,
577
- seriesLabel: datum.seriesLabel,
578
- event,
579
- data: data.computedData
580
- })
581
- })
582
- .call(drag(simulation) as any)
583
-
584
-
585
- })
586
-
587
- combineLatest({
588
- bubblesSelection: bubblesSelection$,
589
- // bubblesData: bubblesData$,
590
- highlight: observer.seriesHighlight$.pipe(
591
- map(data => data.map(d => d.id))
592
- ),
593
- fullChartParams: observer.fullChartParams$,
594
- // fullParams: observer.fullParams$,
595
- // sumSeries: sumSeries$,
596
- // // layout: observer.layout$,
597
- // SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
598
- }).pipe(
599
- takeUntil(destroy$),
600
- switchMap(async d => d)
601
- ).subscribe(data => {
602
- highlight({
603
- bubblesSelection: data.bubblesSelection,
604
- highlightIds: data.highlight,
605
- fullChartParams: data.fullChartParams
606
- })
607
-
608
- // if (data.fullParams.highlightRIncrease) {
609
- // setHighlightData ({
610
- // data: data.bubblesData,
611
- // highlightRIncrease: data.fullParams.highlightRIncrease,
612
- // highlightIds: data.highlight
613
- // })
614
- // data.bubblesSelection.select('circle')
615
- // // .transition()
616
- // // .duration(200)
617
- // .attr("r", (d) => d.r)
618
-
619
- // force!.nodes(data.bubblesData)
620
-
621
- // groupBubbles({
622
- // fullParams: data.fullParams,
623
- // SeriesContainerPositionMap: data.SeriesContainerPositionMap
624
- // })
625
- // }
626
-
627
- })
628
-
629
-
630
- return () => {
631
- destroy$.next(undefined)
632
- if (simulation) {
633
- simulation.stop()
634
- simulation = undefined
635
- }
636
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ first,
7
+ takeUntil,
8
+ debounceTime,
9
+ Subject,
10
+ Observable,
11
+ distinctUntilChanged,
12
+ shareReplay} from 'rxjs'
13
+ import type { DefinePluginConfig } from '../../../lib/core-types'
14
+ import type {
15
+ ChartParams,
16
+ DatumValue,
17
+ DataSeries,
18
+ EventName,
19
+ ComputedDataSeries,
20
+ ComputedDatumSeries,
21
+ ContainerPosition } from '../../../lib/core-types'
22
+ import {
23
+ defineSeriesPlugin } from '../../../lib/core'
24
+ import type { BubblesParams, ArcScaleType } from '../../../lib/plugins-basic-types'
25
+ import { DEFAULT_BUBBLES_PARAMS } from '../defaults'
26
+ import { renderCircleText } from '../../utils/d3Graphics'
27
+ import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
28
+ import { getDatumColor } from '../../utils/orbchartsUtils'
29
+
30
+ interface BubblesDatum extends ComputedDatumSeries {
31
+ x: number
32
+ y: number
33
+ r: number
34
+ _originR: number // 紀錄變化前的r
35
+ }
36
+
37
+ type BubblesSimulationDatum = BubblesDatum & d3.SimulationNodeDatum
38
+
39
+ const pluginName = 'Bubbles'
40
+
41
+ const baseLineHeight = 12 // 未變形前的字體大小(代入計算用而已,數字多少都不會有影響)
42
+
43
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_BUBBLES_PARAMS> = {
44
+ name: pluginName,
45
+ defaultParams: DEFAULT_BUBBLES_PARAMS,
46
+ layerIndex: LAYER_INDEX_OF_GRAPHIC,
47
+ validator: (params, { validateColumns }) => {
48
+ const result = validateColumns(params, {
49
+ force: {
50
+ toBeTypes: ['object']
51
+ },
52
+ bubbleLabel: {
53
+ toBeTypes: ['object']
54
+ },
55
+ arcScaleType: {
56
+ toBe: '"area" | "radius"',
57
+ test: (value) => value === 'area' || value === 'radius'
58
+ }
59
+ })
60
+ if (params.force) {
61
+ const forceResult = validateColumns(params.force, {
62
+ velocityDecay: {
63
+ toBeTypes: ['number']
64
+ },
65
+ collisionSpacing: {
66
+ toBeTypes: ['number']
67
+ },
68
+ strength: {
69
+ toBeTypes: ['number']
70
+ },
71
+ })
72
+ if (forceResult.status === 'error') {
73
+ return forceResult
74
+ }
75
+ }
76
+ if (params.bubbleLabel) {
77
+ const bubbleLabelResult = validateColumns(params.bubbleLabel, {
78
+ colorType: {
79
+ toBeOption: 'ColorType'
80
+ },
81
+ fillRate: {
82
+ toBeTypes: ['number']
83
+ },
84
+ lineHeight: {
85
+ toBeTypes: ['number']
86
+ },
87
+ maxLineLength: {
88
+ toBeTypes: ['number']
89
+ },
90
+ })
91
+ if (bubbleLabelResult.status === 'error') {
92
+ return bubbleLabelResult
93
+ }
94
+ }
95
+ return result
96
+ }
97
+ }
98
+
99
+
100
+ // let isRunning = false
101
+
102
+ function createSimulation (bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>, fullParams: BubblesParams) {
103
+ return d3.forceSimulation()
104
+ .velocityDecay(fullParams.force!.velocityDecay!)
105
+ // .alphaDecay(0.2)
106
+ .force(
107
+ "collision",
108
+ d3.forceCollide()
109
+ .radius((d: d3.SimulationNodeDatum & BubblesDatum) => {
110
+ return d.r + fullParams.force!.collisionSpacing
111
+ })
112
+ // .strength(0.01)
113
+ )
114
+ .force("charge", d3.forceManyBody().strength((d: d3.SimulationNodeDatum & BubblesDatum) => {
115
+ return - Math.pow(d.r, 2.0) * fullParams.force!.strength
116
+ }))
117
+ // .force("charge", d3.forceManyBody().strength(-2000))
118
+ // .force("collision", d3.forceCollide(60).strength(1)) // @Q@ 60為泡泡的R,暫時是先寫死的
119
+ // .force("x", d3.forceX().strength(forceStrength).x(this.graphicWidth / 2))
120
+ // .force("y", d3.forceY().strength(forceStrength).y(this.graphicHeight / 2))
121
+ .on("tick", () => {
122
+ // if (!bubblesSelection) {
123
+ // return
124
+ // }
125
+ bubblesSelection
126
+ .attr("transform", (d) => {
127
+ return `translate(${d.x},${d.y})`
128
+ })
129
+ // .attr("cx", (d) => d.x)
130
+ // .attr("cy", (d) => d.y)
131
+
132
+
133
+ })
134
+ // .on("end", () => {
135
+
136
+ // })
137
+
138
+ }
139
+
140
+
141
+ // // 計算最大泡泡的半徑
142
+ // function getMaxR ({ data, totalR, maxValue, avgValue }: {
143
+ // data: DatumValue[]
144
+ // totalR: number
145
+ // maxValue: number
146
+ // avgValue: number
147
+ // }) {
148
+ // // 平均r(假想是正方型來計算的,比如說大正方型裡有4個正方型,則 r = width/Math.sqrt(4)/2)
149
+ // const avgR = totalR / Math.sqrt(data.length)
150
+ // const avgSize = avgR * avgR * Math.PI
151
+ // const sizeRate = avgSize / avgValue
152
+ // const maxSize = maxValue * sizeRate
153
+ // const maxR = Math.pow(maxSize / Math.PI, 0.5)
154
+
155
+ // const modifier = 0.785 // @Q@ 因為以下公式是假設泡泡是正方型來計算,所以畫出來的圖會偏大一些,這個數值是用來修正用的
156
+ // return maxR * modifier
157
+ // }
158
+
159
+ function createBubblesData ({ visibleComputedSortedData, LastBubbleDataMap, graphicWidth, graphicHeight, SeriesContainerPositionMap, scaleType }: {
160
+ visibleComputedSortedData: ComputedDataSeries
161
+ LastBubbleDataMap: Map<string, BubblesDatum>
162
+ graphicWidth: number
163
+ graphicHeight: number
164
+ SeriesContainerPositionMap: Map<string, ContainerPosition>
165
+ scaleType: ArcScaleType
166
+ // highlightIds: string[]
167
+ }): BubblesDatum[] {
168
+ // 虛擬大圓(所有小圓聚合起來的大圓)的半徑
169
+ const totalR = Math.min(...[graphicWidth, graphicHeight]) / 2
170
+
171
+ const data = visibleComputedSortedData.flat()
172
+
173
+ const totalValue = data.reduce((acc, current) => acc + current.value, 0)
174
+
175
+ // 半徑比例尺
176
+ const radiusScale = d3.scalePow()
177
+ .domain([0, totalValue])
178
+ .range([0, totalR])
179
+ .exponent(scaleType === 'area'
180
+ ? 0.5 // 數值映射面積(0.5為取平方根)
181
+ : 1 // 數值映射半徑
182
+ )
183
+
184
+ // 縮放比例 - 確保多個小圓的總面積等於大圓的面積
185
+ const scaleFactor = scaleType === 'area'
186
+ ? 1
187
+ // 當數值映射半徑時,多個小圓的總面積會小於大圓的面積,所以要計算縮放比例
188
+ : (() => {
189
+ const totalArea = totalR * totalR * Math.PI
190
+ return Math.sqrt(totalArea / d3.sum(data, d => Math.PI * Math.pow(radiusScale(d.value), 2)))
191
+ })()
192
+
193
+ // 調整係數 - 因為圓和圓之間的空隙造成聚合起來的大圓會略大,所以稍作微調
194
+ const adjustmentFactor = 0.9
195
+
196
+ return data.map((_d) => {
197
+ const d: BubblesDatum = _d as BubblesDatum
198
+
199
+ const existDatum = LastBubbleDataMap.get(d.id)
200
+
201
+ if (existDatum) {
202
+ // 使用現有的座標
203
+ d.x = existDatum.x
204
+ d.y = existDatum.y
205
+ } else {
206
+ const seriesContainerPosition = SeriesContainerPositionMap.get(d.seriesLabel)!
207
+ d.x = Math.random() * seriesContainerPosition.width
208
+ d.y = Math.random() * seriesContainerPosition.height
209
+ }
210
+ const r = radiusScale!(d.value ?? 0)! * scaleFactor * adjustmentFactor
211
+ d.r = r
212
+ d._originR = r
213
+
214
+ return d
215
+ })
216
+ }
217
+
218
+ function renderBubbles ({ selection, bubblesData, fullParams, fullChartParams, sumSeries }: {
219
+ selection: d3.Selection<SVGGElement, any, any, any>
220
+ bubblesData: BubblesDatum[]
221
+ fullParams: BubblesParams
222
+ fullChartParams: ChartParams
223
+ sumSeries: boolean
224
+ }) {
225
+ const bubblesSelection = selection.selectAll<SVGGElement, BubblesDatum>("g")
226
+ .data(bubblesData, (d) => d.id)
227
+ .join(
228
+ enter => {
229
+ const enterSelection = enter
230
+ .append('g')
231
+ .attr('cursor', 'pointer')
232
+ .attr('font-size', baseLineHeight)
233
+ .style('fill', '#ffffff')
234
+ .attr("text-anchor", "middle")
235
+
236
+ enterSelection
237
+ .append("circle")
238
+ .attr("class", "node")
239
+ .attr("cx", 0)
240
+ .attr("cy", 0)
241
+ // .attr("r", 1e-6)
242
+ .attr('fill', (d) => d.color)
243
+ // .transition()
244
+ // .duration(500)
245
+
246
+ enterSelection
247
+ .append('text')
248
+ .style('opacity', 0.8)
249
+ .attr('pointer-events', 'none')
250
+
251
+ return enterSelection
252
+ },
253
+ update => {
254
+ return update
255
+ },
256
+ exit => {
257
+ return exit
258
+ .remove()
259
+ }
260
+ )
261
+ .attr("transform", (d) => {
262
+ return `translate(${d.x},${d.y})`
263
+ })
264
+
265
+ // 泡泡文字要使用的的資料欄位
266
+ const textDataColumn = sumSeries ? 'seriesLabel' : 'label'// 如果有合併series則使用seriesLabel
267
+
268
+ bubblesSelection.select('circle')
269
+ .transition()
270
+ .duration(200)
271
+ .attr("r", (d) => d.r)
272
+ .attr('fill', (d) => d.color)
273
+ bubblesSelection
274
+ .each((d,i,g) => {
275
+ const gSelection = d3.select(g[i])
276
+ const text = d[textDataColumn] ?? ''
277
+
278
+ gSelection.call(renderCircleText, {
279
+ text,
280
+ radius: d.r * fullParams.bubbleLabel.fillRate,
281
+ lineHeight: baseLineHeight * fullParams.bubbleLabel.lineHeight,
282
+ isBreakAll: text.length <= fullParams.bubbleLabel.maxLineLength
283
+ ? false
284
+ : fullParams.bubbleLabel.wordBreakAll
285
+ })
286
+
287
+ // -- text color --
288
+ gSelection.select('text').attr('fill', _ => getDatumColor({
289
+ datum: d,
290
+ colorType: fullParams.bubbleLabel.colorType,
291
+ fullChartParams: fullChartParams
292
+ }))
293
+
294
+ })
295
+
296
+ return bubblesSelection
297
+ }
298
+
299
+ function setHighlightData ({ data, highlightRIncrease, highlightIds }: {
300
+ data: BubblesDatum[]
301
+ // fullParams: BubblesParams
302
+ highlightRIncrease: number
303
+ highlightIds: string[]
304
+ }) {
305
+ if (highlightRIncrease == 0) {
306
+ return
307
+ }
308
+ if (!highlightIds.length) {
309
+ data.forEach(d => d.r = d._originR)
310
+ return
311
+ }
312
+ data.forEach(d => {
313
+ if (highlightIds.includes(d.id)) {
314
+ d.r = d._originR + highlightRIncrease
315
+ } else {
316
+ d.r = d._originR
317
+ }
318
+ })
319
+ }
320
+
321
+ function drag (_simulation: d3.Simulation<d3.SimulationNodeDatum, undefined>): d3.DragBehavior<Element, unknown, unknown> {
322
+ return d3.drag()
323
+ .on("start", (event, d: any) => {
324
+ if (!event.active) {
325
+ _simulation!.alpha(1).restart()
326
+ }
327
+ d.fx = d.x
328
+ d.fy = d.y
329
+ })
330
+ .on("drag", (event, d: any) => {
331
+ if (!event.active) {
332
+ _simulation!.alphaTarget(0)
333
+ }
334
+ d.fx = event.x
335
+ d.fy = event.y
336
+ })
337
+ .on("end", (event, d: any) => {
338
+ d.fx = null
339
+ d.fy = null
340
+ _simulation!.alpha(1).restart()
341
+ })
342
+ }
343
+
344
+
345
+ // private nodeTypePos (d: any) {
346
+ // console.log(d)
347
+ // console.log(this.TypeCenters.get(d.type)!)
348
+ // const typeCenter = this.TypeCenters.get(d.type)!
349
+ // return typeCenter ? typeCenter.x : 0
350
+ // }
351
+
352
+ function groupBubbles ({ _simulation, fullParams, SeriesContainerPositionMap }: {
353
+ _simulation: d3.Simulation<d3.SimulationNodeDatum, undefined>
354
+ fullParams: BubblesParams
355
+ // graphicWidth: number
356
+ // graphicHeight: number
357
+ SeriesContainerPositionMap: Map<string, ContainerPosition>
358
+ }) {
359
+ // console.log('groupBubbles')
360
+ _simulation!
361
+ // .force('x', d3.forceX().strength(fullParams.force.strength).x(graphicWidth / 2))
362
+ // .force('y', d3.forceY().strength(fullParams.force.strength).y(graphicHeight / 2))
363
+ .force('x', d3.forceX().strength(fullParams.force.strength).x((data: BubblesSimulationDatum) => {
364
+ return SeriesContainerPositionMap.get(data.seriesLabel)!.centerX
365
+ }))
366
+ .force('y', d3.forceY().strength(fullParams.force.strength).y((data: BubblesSimulationDatum) => {
367
+ return SeriesContainerPositionMap.get(data.seriesLabel)!.centerY
368
+ }))
369
+
370
+ // force!.alpha(1).restart()
371
+ }
372
+
373
+ function highlight ({ bubblesSelection, highlightIds, fullChartParams }: {
374
+ bubblesSelection: d3.Selection<SVGGElement, BubblesDatum, any, any>
375
+ fullChartParams: ChartParams
376
+ highlightIds: string[]
377
+ }) {
378
+ bubblesSelection.interrupt('highlight')
379
+
380
+ if (!highlightIds.length) {
381
+ bubblesSelection
382
+ .transition('highlight')
383
+ .style('opacity', 1)
384
+ return
385
+ }
386
+
387
+ bubblesSelection.each((d, i, n) => {
388
+ const segment = d3.select(n[i])
389
+
390
+ if (highlightIds.includes(d.id)) {
391
+ segment
392
+ .style('opacity', 1)
393
+ .transition('highlight')
394
+ .ease(d3.easeElastic)
395
+ .duration(500)
396
+ } else {
397
+ // 取消放大
398
+ segment
399
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
400
+ }
401
+ })
402
+ }
403
+
404
+
405
+ export const Bubbles = defineSeriesPlugin(pluginConfig)(({ selection, name, observer, subject }) => {
406
+
407
+ const destroy$ = new Subject()
408
+
409
+ let simulation: d3.Simulation<d3.SimulationNodeDatum, undefined> | undefined
410
+
411
+ // 紀錄前一次bubble data
412
+ let LastBubbleDataMap: Map<string, BubblesDatum> = new Map()
413
+
414
+
415
+ const sumSeries$ = observer.fullDataFormatter$.pipe(
416
+ map(d => d.sumSeries),
417
+ distinctUntilChanged()
418
+ )
419
+
420
+ const scaleType$ = observer.fullParams$.pipe(
421
+ takeUntil(destroy$),
422
+ map(d => d.arcScaleType),
423
+ distinctUntilChanged()
424
+ )
425
+
426
+ const bubblesData$ = combineLatest({
427
+ layout: observer.layout$,
428
+ SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
429
+ visibleComputedSortedData: observer.visibleComputedSortedData$,
430
+ scaleType: scaleType$
431
+ }).pipe(
432
+ takeUntil(destroy$),
433
+ switchMap(async (d) => d),
434
+ map(data => {
435
+ // console.log(data.visibleComputedSortedData)
436
+ return createBubblesData({
437
+ visibleComputedSortedData: data.visibleComputedSortedData,
438
+ LastBubbleDataMap,
439
+ graphicWidth: data.layout.width,
440
+ graphicHeight: data.layout.height,
441
+ SeriesContainerPositionMap: data.SeriesContainerPositionMap,
442
+ scaleType: data.scaleType
443
+ })
444
+ }),
445
+ shareReplay(1)
446
+ )
447
+
448
+ // 紀錄前一次bubble data
449
+ bubblesData$.subscribe(d => {
450
+ LastBubbleDataMap = new Map(d.map(_d => [_d.id, _d])) // key: id, value: datum
451
+ })
452
+
453
+ const highlightTarget$ = observer.fullChartParams$.pipe(
454
+ takeUntil(destroy$),
455
+ map(d => d.highlightTarget),
456
+ distinctUntilChanged()
457
+ )
458
+
459
+ const bubblesSelection$ = combineLatest({
460
+ bubblesData: bubblesData$,
461
+ fullParams: observer.fullParams$,
462
+ fullChartParams: observer.fullChartParams$,
463
+ SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
464
+ sumSeries: sumSeries$
465
+ }).pipe(
466
+ takeUntil(destroy$),
467
+ switchMap(async (d) => d),
468
+ map(data => {
469
+ if (simulation) {
470
+ // 先停止,重新計算之後再restart
471
+ simulation.stop()
472
+ }
473
+
474
+ const bubblesSelection = renderBubbles({
475
+ selection,
476
+ bubblesData: data.bubblesData,
477
+ fullParams: data.fullParams,
478
+ fullChartParams: data.fullChartParams,
479
+ sumSeries: data.sumSeries
480
+ })
481
+
482
+ simulation = createSimulation(bubblesSelection, data.fullParams)
483
+
484
+ simulation.nodes(data.bubblesData)
485
+
486
+ groupBubbles({
487
+ _simulation: simulation,
488
+ fullParams: data.fullParams,
489
+ SeriesContainerPositionMap: data.SeriesContainerPositionMap
490
+ // graphicWidth: data.layout.width,
491
+ // graphicHeight: data.layout.height
492
+ })
493
+
494
+ simulation!.alpha(1).restart()
495
+
496
+ return bubblesSelection
497
+ }),
498
+ shareReplay(1)
499
+ )
500
+
501
+ combineLatest({
502
+ bubblesSelection: bubblesSelection$,
503
+ computedData: observer.computedData$,
504
+ SeriesDataMap: observer.SeriesDataMap$,
505
+ highlightTarget: highlightTarget$,
506
+ }).pipe(
507
+ takeUntil(destroy$),
508
+ switchMap(async (d) => d)
509
+ ).subscribe(data => {
510
+
511
+ data.bubblesSelection
512
+ .on('mouseover', (event, datum) => {
513
+ // this.tooltip!.setDatum({
514
+ // data: d,
515
+ // x: d3.event.clientX,
516
+ // y: d3.event.clientY
517
+ // })
518
+
519
+ subject.event$.next({
520
+ type: 'series',
521
+ eventName: 'mouseover',
522
+ pluginName: name,
523
+ highlightTarget: data.highlightTarget,
524
+ datum,
525
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
526
+ seriesIndex: datum.seriesIndex,
527
+ seriesLabel: datum.seriesLabel,
528
+ event,
529
+ data: data.computedData
530
+ })
531
+ })
532
+ .on('mousemove', (event, datum) => {
533
+ // this.tooltip!.setDatum({
534
+ // x: d3.event.clientX,
535
+ // y: d3.event.clientY
536
+ // })
537
+
538
+ subject.event$.next({
539
+ type: 'series',
540
+ eventName: 'mousemove',
541
+ pluginName: name,
542
+ highlightTarget: data.highlightTarget,
543
+ datum,
544
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
545
+ seriesIndex: datum.seriesIndex,
546
+ seriesLabel: datum.seriesLabel,
547
+ event,
548
+ data: data.computedData
549
+ })
550
+ })
551
+ .on('mouseout', (event, datum) => {
552
+ // this.tooltip!.remove()
553
+
554
+ subject.event$.next({
555
+ type: 'series',
556
+ eventName: 'mouseout',
557
+ pluginName: name,
558
+ highlightTarget: data.highlightTarget,
559
+ datum,
560
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
561
+ seriesIndex: datum.seriesIndex,
562
+ seriesLabel: datum.seriesLabel,
563
+ event,
564
+ data: data.computedData
565
+ })
566
+ })
567
+ .on('click', (event, datum) => {
568
+
569
+ subject.event$.next({
570
+ type: 'series',
571
+ eventName: 'click',
572
+ pluginName: name,
573
+ highlightTarget: data.highlightTarget,
574
+ datum,
575
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
576
+ seriesIndex: datum.seriesIndex,
577
+ seriesLabel: datum.seriesLabel,
578
+ event,
579
+ data: data.computedData
580
+ })
581
+ })
582
+ .call(drag(simulation) as any)
583
+
584
+
585
+ })
586
+
587
+ combineLatest({
588
+ bubblesSelection: bubblesSelection$,
589
+ // bubblesData: bubblesData$,
590
+ highlight: observer.seriesHighlight$.pipe(
591
+ map(data => data.map(d => d.id))
592
+ ),
593
+ fullChartParams: observer.fullChartParams$,
594
+ // fullParams: observer.fullParams$,
595
+ // sumSeries: sumSeries$,
596
+ // // layout: observer.layout$,
597
+ // SeriesContainerPositionMap: observer.SeriesContainerPositionMap$,
598
+ }).pipe(
599
+ takeUntil(destroy$),
600
+ switchMap(async d => d)
601
+ ).subscribe(data => {
602
+ highlight({
603
+ bubblesSelection: data.bubblesSelection,
604
+ highlightIds: data.highlight,
605
+ fullChartParams: data.fullChartParams
606
+ })
607
+
608
+ // if (data.fullParams.highlightRIncrease) {
609
+ // setHighlightData ({
610
+ // data: data.bubblesData,
611
+ // highlightRIncrease: data.fullParams.highlightRIncrease,
612
+ // highlightIds: data.highlight
613
+ // })
614
+ // data.bubblesSelection.select('circle')
615
+ // // .transition()
616
+ // // .duration(200)
617
+ // .attr("r", (d) => d.r)
618
+
619
+ // force!.nodes(data.bubblesData)
620
+
621
+ // groupBubbles({
622
+ // fullParams: data.fullParams,
623
+ // SeriesContainerPositionMap: data.SeriesContainerPositionMap
624
+ // })
625
+ // }
626
+
627
+ })
628
+
629
+
630
+ return () => {
631
+ destroy$.next(undefined)
632
+ if (simulation) {
633
+ simulation.stop()
634
+ simulation = undefined
635
+ }
636
+ }
637
637
  })