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