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

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 (181) hide show
  1. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  8. package/dist/{src/base/BaseBarStack.d.ts → orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts} +6 -6
  9. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
  10. package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +4 -4
  11. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  12. package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +2 -2
  13. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
  14. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  15. package/dist/orbcharts-plugins-basic/src/index.d.ts +7 -0
  16. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +4 -4
  17. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +3 -3
  18. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
  19. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  20. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  21. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  23. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  24. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  25. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  26. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  27. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  28. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  29. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  30. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  31. package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +6 -0
  32. package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +5 -0
  33. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
  34. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  35. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  36. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  37. package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
  38. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  39. package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +1 -1
  40. package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +2 -2
  41. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  42. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  43. package/dist/orbcharts-plugins-basic.es.js +13327 -10361
  44. package/dist/orbcharts-plugins-basic.umd.js +99 -49
  45. package/dist/src/index.d.ts +1 -5
  46. package/package.json +4 -4
  47. package/src/base/BaseBars.ts +5 -5
  48. package/src/base/BaseBarsTriangle.ts +6 -4
  49. package/src/base/BaseDots.ts +3 -54
  50. package/src/base/BaseGroupAxis.ts +50 -50
  51. package/src/base/BaseLegend.ts +25 -21
  52. package/src/base/BaseLineAreas.ts +4 -4
  53. package/src/base/BaseLines.ts +3 -3
  54. package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +22 -20
  55. package/src/base/BaseTooltip.ts +5 -2
  56. package/src/base/BaseValueAxis.ts +84 -81
  57. package/src/grid/defaults.ts +15 -13
  58. package/src/grid/gridObservables.ts +56 -47
  59. package/src/grid/index.ts +2 -2
  60. package/src/grid/plugins/GridLegend.ts +2 -2
  61. package/src/grid/plugins/GridZoom.ts +20 -20
  62. package/src/grid/plugins/GroupAux.ts +216 -211
  63. package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +7 -7
  64. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +6 -5
  65. package/src/grid/plugins/ValueAxis.ts +1 -0
  66. package/src/index.ts +2 -5
  67. package/src/multiGrid/defaults.ts +11 -11
  68. package/src/multiGrid/index.ts +3 -3
  69. package/src/multiGrid/plugins/MultiBars.ts +1 -1
  70. package/src/multiGrid/plugins/MultiBarsTriangle.ts +1 -1
  71. package/src/multiGrid/plugins/MultiGridLegend.ts +2 -2
  72. package/src/multiGrid/plugins/MultiGroupAxis.ts +1 -1
  73. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +8 -8
  74. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +4 -3
  75. package/src/multiGrid/plugins/MultiValueAxis.ts +2 -1
  76. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +9 -8
  77. package/src/multiGrid/plugins/OverlappingValueAxes.ts +4 -3
  78. package/src/multiValue/defaults.ts +167 -0
  79. package/src/multiValue/index.ts +9 -0
  80. package/src/multiValue/multiValueObservables.ts +297 -0
  81. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  82. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  83. package/src/multiValue/plugins/Scatter.ts +426 -0
  84. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  85. package/src/multiValue/plugins/XYAux.ts +682 -0
  86. package/src/multiValue/plugins/XYAxes.ts +685 -0
  87. package/src/multiValue/plugins/XYZoom.ts +300 -0
  88. package/src/noneData/plugins/Container.ts +23 -23
  89. package/src/noneData/plugins/Tooltip.ts +365 -365
  90. package/src/relationship/defaults.ts +197 -0
  91. package/src/relationship/index.ts +5 -0
  92. package/src/relationship/plugins/ForceDirected.ts +1169 -0
  93. package/src/relationship/plugins/ForceDirectedBubbles.ts +1394 -0
  94. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  95. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  96. package/src/relationship/relationshipObservables.ts +50 -0
  97. package/src/series/defaults.ts +13 -12
  98. package/src/series/plugins/Bubbles.ts +22 -22
  99. package/src/series/plugins/Pie.ts +2 -2
  100. package/src/series/plugins/PieEventTexts.ts +22 -21
  101. package/src/series/plugins/PieLabels.ts +2 -2
  102. package/src/series/plugins/Rose.ts +2 -2
  103. package/src/series/plugins/RoseLabels.ts +2 -2
  104. package/src/series/plugins/SeriesLegend.ts +4 -4
  105. package/src/series/seriesObservables.ts +3 -3
  106. package/src/tree/defaults.ts +3 -3
  107. package/src/tree/plugins/TreeLegend.ts +3 -10
  108. package/src/utils/commonUtils.ts +5 -5
  109. package/src/utils/d3Utils.ts +4 -3
  110. package/src/utils/observables.ts +2 -2
  111. package/src/utils/orbchartsUtils.ts +28 -12
  112. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  113. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  114. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  115. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  116. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  117. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  118. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  119. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  120. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  121. package/dist/src/relationship/index.d.ts +0 -0
  122. package/dist/src/relationship/plugins/Relationship.d.ts +0 -0
  123. package/src/base/BaseGroupArea.ts +0 -0
  124. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  125. package/src/relationship/plugins/Relationship.ts +0 -0
  126. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  127. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  128. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  129. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  130. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  131. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  132. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  133. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  134. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  135. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  136. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  137. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  138. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  139. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  140. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  141. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  142. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  143. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  144. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  145. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  146. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  147. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  148. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  149. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  150. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  151. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  152. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  153. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  154. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  155. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  156. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  157. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  158. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  159. /package/dist/{src/base/BaseGroupArea.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts} +0 -0
  160. /package/dist/{src/multiValue/index.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts} +0 -0
  161. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  162. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  163. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  164. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  165. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  166. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  167. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  168. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  169. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  170. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  171. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  172. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  173. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  174. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  175. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  176. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  177. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  178. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  179. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  180. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  181. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -0,0 +1,554 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ filter,
6
+ switchMap,
7
+ takeUntil,
8
+ distinctUntilChanged,
9
+ Observable,
10
+ Subject,
11
+ share,
12
+ shareReplay
13
+ } from 'rxjs'
14
+ import type {
15
+ ComputedDatumMultiValue,
16
+ ComputedDataMultiValue,
17
+ ComputedLayoutDatumMultiValue,
18
+ ComputedLayoutDataMultiValue,
19
+ DefinePluginConfig,
20
+ EventMultiValue,
21
+ ChartParams,
22
+ ContainerPositionScaled,
23
+ Layout,
24
+ TransformData,
25
+ ColorType
26
+ } from '../../../lib/core-types'
27
+ import {
28
+ defineMultiValuePlugin,
29
+ getMinMax
30
+ } from '../../../lib/core'
31
+ import type { ScatterBubblesParams } from '../../../lib/plugins-basic-types'
32
+ import { DEFAULT_SCATTER_BUBBLES_PARAMS } from '../defaults'
33
+ import { LAYER_INDEX_OF_GRAPHIC_COVER } from '../../const'
34
+ import { getDatumColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
35
+ import { multiValueSelectionsObservable } from '../multiValueObservables'
36
+
37
+ type ClipPathDatum = {
38
+ id: string;
39
+ // x: number;
40
+ // y: number;
41
+ width: number;
42
+ height: number;
43
+ }
44
+
45
+ interface BubbleDatum extends ComputedLayoutDatumMultiValue {
46
+ r: number
47
+ opacity: number
48
+ }
49
+
50
+ const pluginName = 'ScatterBubbles'
51
+
52
+ // 調整係數 - 因為圓和圓之間的空隙造成聚合起來的大圓會略大,所以稍作微調
53
+ const adjustmentFactor = 0.9
54
+
55
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_SCATTER_BUBBLES_PARAMS> = {
56
+ name: pluginName,
57
+ defaultParams: DEFAULT_SCATTER_BUBBLES_PARAMS,
58
+ layerIndex: LAYER_INDEX_OF_GRAPHIC_COVER,
59
+ validator: (params, { validateColumns }) => {
60
+ const result = validateColumns(params, {
61
+ // radius: {
62
+ // toBeTypes: ['number']
63
+ // },
64
+ fillColorType: {
65
+ toBeOption: 'ColorType',
66
+ },
67
+ strokeColorType: {
68
+ toBeOption: 'ColorType',
69
+ },
70
+ strokeWidth: {
71
+ toBeTypes: ['number']
72
+ },
73
+ valueLinearOpacity: {
74
+ toBeTypes: ['number[]']
75
+ },
76
+ arcScaleType: {
77
+ toBe: 'ArcScaleType',
78
+ test: (value) => {
79
+ return value === 'area' || value === 'radius'
80
+ }
81
+ },
82
+ sizeAdjust: {
83
+ toBeTypes: ['number']
84
+ }
85
+ })
86
+ return result
87
+ }
88
+ }
89
+
90
+ function renderDots ({ graphicGSelection, circleGClassName, circleClassName, bubbleData, fullParams, fullChartParams, graphicReverseScale }: {
91
+ graphicGSelection: d3.Selection<SVGGElement, any, any, any>
92
+ circleGClassName: string
93
+ circleClassName: string
94
+ // visibleComputedLayoutData: ComputedLayoutDataMultiValue
95
+ bubbleData: BubbleDatum[][]
96
+ fullParams: ScatterBubblesParams
97
+ fullChartParams: ChartParams
98
+ graphicReverseScale: [number, number][]
99
+ }) {
100
+ const createEnterDuration = (enter: d3.Selection<d3.EnterElement, ComputedDatumMultiValue, SVGGElement, any>) => {
101
+ const enterSize = enter.size()
102
+ const eachDuration = fullChartParams.transitionDuration / enterSize
103
+ return eachDuration
104
+ }
105
+ // enterDuration
106
+ let enterDuration = 0
107
+
108
+ graphicGSelection
109
+ .each((categoryData, categoryIndex, g) => {
110
+ d3.select(g[categoryIndex])
111
+ .selectAll<SVGGElement, ComputedDatumMultiValue>('g')
112
+ .data(bubbleData[categoryIndex], d => d.id)
113
+ .join(
114
+ enter => {
115
+ // enterDuration
116
+ enterDuration = createEnterDuration(enter)
117
+
118
+ return enter
119
+ .append('g')
120
+ .classed(circleGClassName, true)
121
+ },
122
+ update => update,
123
+ exit => exit.remove()
124
+ )
125
+ .attr('transform', d => `translate(${d.axisX}, ${d.axisY})`)
126
+ .each((d, i, g) => {
127
+ const circle = d3.select(g[i])
128
+ .selectAll('circle')
129
+ .data([d])
130
+ .join(
131
+ enter => {
132
+ return enter
133
+ .append('circle')
134
+ .style('cursor', 'pointer')
135
+ .style('vector-effect', 'non-scaling-stroke')
136
+ .classed(circleClassName, true)
137
+ .attr('opacity', 0)
138
+ .transition()
139
+ .delay((_d, _i) => {
140
+ return i * enterDuration
141
+ })
142
+ .attr('opacity', 0.8)
143
+ },
144
+ update => {
145
+ return update
146
+ .transition()
147
+ .duration(50)
148
+ // .attr('cx', d => d.axisX)
149
+ // .attr('cy', d => d.axisY)
150
+ .attr('opacity', 0.8)
151
+ },
152
+ exit => exit.remove()
153
+ )
154
+ .attr('r', d => d.r)
155
+ .attr('fill', (d, i) => getDatumColor({ datum: d, colorType: fullParams.fillColorType, fullChartParams }))
156
+ .attr('stroke', (d, i) => getDatumColor({ datum: d, colorType: fullParams.strokeColorType, fullChartParams }))
157
+ .attr('stroke-width', fullParams.strokeWidth)
158
+ .attr('transform', `scale(${graphicReverseScale[categoryIndex][0] ?? 1}, ${graphicReverseScale[categoryIndex][1] ?? 1})`)
159
+ })
160
+ })
161
+
162
+ const graphicCircleSelection: d3.Selection<SVGRectElement, BubbleDatum, SVGGElement, unknown> = graphicGSelection.selectAll(`circle.${circleClassName}`)
163
+
164
+ return graphicCircleSelection
165
+ }
166
+
167
+
168
+ function highlightBubbles ({ selection, ids, fullChartParams }: {
169
+ selection: d3.Selection<SVGGElement, BubbleDatum, any, any>
170
+ ids: string[]
171
+ fullChartParams: ChartParams
172
+ }) {
173
+ selection.interrupt('highlight')
174
+ if (!ids.length) {
175
+ // remove highlight
176
+ selection
177
+ .transition('highlight')
178
+ .duration(200)
179
+ .style('opacity', d => d.opacity)
180
+ // selection
181
+ // .attr('stroke-width', fullParams.strokeWidth)
182
+
183
+ return
184
+ }
185
+
186
+ selection
187
+ .each((d, i, n) => {
188
+ if (ids.includes(d.id)) {
189
+ const dot = d3.select<SVGGElement, BubbleDatum>(n[i])
190
+ dot
191
+ .style('opacity', d => d.opacity)
192
+ .transition('highlight')
193
+ .duration(200)
194
+ // dot
195
+ // .attr('stroke-width', fullParams.strokeWidthWhileHighlight)
196
+ } else {
197
+ const dot = d3.select(n[i])
198
+ dot
199
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
200
+ .transition('highlight')
201
+ .duration(200)
202
+ // dot
203
+ // .attr('stroke-width', fullParams.strokeWidth)
204
+
205
+ }
206
+ })
207
+ }
208
+
209
+ function renderClipPath ({ defsSelection, clipPathData }: {
210
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
211
+ clipPathData: ClipPathDatum[]
212
+ }) {
213
+ const clipPath = defsSelection
214
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
215
+ .data(clipPathData)
216
+ .join(
217
+ enter => {
218
+ return enter
219
+ .append('clipPath')
220
+ },
221
+ update => update,
222
+ exit => exit.remove()
223
+ )
224
+ .attr('id', d => d.id)
225
+ .each((d, i, g) => {
226
+ const rect = d3.select(g[i])
227
+ .selectAll<SVGRectElement, typeof d>('rect')
228
+ .data([d])
229
+ .join('rect')
230
+ .attr('x', 0)
231
+ .attr('y', 0)
232
+ .attr('width', _d => _d.width)
233
+ .attr('height', _d => _d.height)
234
+ })
235
+
236
+ }
237
+
238
+
239
+ export const ScatterBubbles = defineMultiValuePlugin(pluginConfig)(({ selection, name, subject, observer }) => {
240
+
241
+ const destroy$ = new Subject()
242
+
243
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
244
+ const circleGClassName = getClassName(pluginName, 'circleG')
245
+ const circleClassName = getClassName(pluginName, 'circle')
246
+
247
+ const {
248
+ categorySelection$,
249
+ axesSelection$,
250
+ defsSelection$,
251
+ graphicGSelection$
252
+ } = multiValueSelectionsObservable({
253
+ selection,
254
+ pluginName,
255
+ clipPathID,
256
+ categoryLabels$: observer.categoryLabels$,
257
+ multiValueContainerPosition$: observer.multiValueContainerPosition$,
258
+ multiValueGraphicTransform$: observer.multiValueGraphicTransform$
259
+ })
260
+
261
+ const graphicReverseScale$: Observable<[number, number][]> = combineLatest({
262
+ computedData: observer.computedData$,
263
+ multiValueGraphicReverseScale: observer.multiValueGraphicReverseScale$
264
+ }).pipe(
265
+ takeUntil(destroy$),
266
+ switchMap(async data => data),
267
+ map(data => {
268
+ return data.computedData.map((series, categoryIndex) => {
269
+ return data.multiValueGraphicReverseScale[categoryIndex]
270
+ })
271
+ })
272
+ )
273
+
274
+ const clipPathSubscription = combineLatest({
275
+ defsSelection: defsSelection$,
276
+ layout: observer.layout$,
277
+ }).pipe(
278
+ takeUntil(destroy$),
279
+ switchMap(async (d) => d),
280
+ ).subscribe(data => {
281
+ // 外層的遮罩
282
+ const clipPathData = [{
283
+ id: clipPathID,
284
+ width: data.layout.width,
285
+ height: data.layout.height
286
+ }]
287
+ renderClipPath({
288
+ defsSelection: data.defsSelection,
289
+ clipPathData,
290
+ })
291
+ })
292
+
293
+ const filteredValueList$ = observer.filteredMinMaxXYData$.pipe(
294
+ takeUntil(destroy$),
295
+ map(data => data.datumList.flat().map(d => d.value[2] ?? 0)),
296
+ shareReplay(1)
297
+ )
298
+
299
+ const filteredMinMaxValue$ = observer.filteredMinMaxXYData$.pipe(
300
+ takeUntil(destroy$),
301
+ map(data => {
302
+ return getMinMax(data.datumList.flat().map(d => d.value[2] ?? 0))
303
+ })
304
+ )
305
+
306
+ const opacityScale$ = combineLatest({
307
+ filteredMinMaxValue: filteredMinMaxValue$,
308
+ fullParams: observer.fullParams$
309
+ }).pipe(
310
+ takeUntil(destroy$),
311
+ switchMap(async (d) => d),
312
+ map(data => {
313
+ return d3.scaleLinear()
314
+ .domain(data.filteredMinMaxValue)
315
+ .range(data.fullParams.valueLinearOpacity)
316
+ })
317
+ )
318
+
319
+ // 虛擬大圓(所有小圓聚合起來的大圓)的半徑
320
+ const totalR$ = combineLatest({
321
+ layout: observer.layout$,
322
+ fullParams: observer.fullParams$
323
+ }).pipe(
324
+ takeUntil(destroy$),
325
+ map(data => {
326
+ // 場景最短邊
327
+ const fullRadius = Math.min(...[data.layout.width, data.layout.height]) / 2
328
+ return fullRadius * data.fullParams.sizeAdjust
329
+ })
330
+ )
331
+
332
+ const totalValue$ = filteredValueList$.pipe(
333
+ takeUntil(destroy$),
334
+ map(data => {
335
+ return data.reduce((acc, current) => acc + current, 0)
336
+ }),
337
+ filter(data => data > 0) // 避免後續計算scale的時候發生問題
338
+ )
339
+
340
+ const radiusScale$ = combineLatest({
341
+ totalR: totalR$,
342
+ totalValue: totalValue$,
343
+ fullParams: observer.fullParams$
344
+ }).pipe(
345
+ takeUntil(destroy$),
346
+ switchMap(async (d) => d),
347
+ map(data => {
348
+ // console.log({ totalR: data.totalR, totalValue: data.totalValue })
349
+ return d3.scalePow()
350
+ .domain([0, data.totalValue])
351
+ .range([0, data.totalR])
352
+ .exponent(data.fullParams.arcScaleType === 'area'
353
+ ? 0.5 // 數值映射面積(0.5為取平方根)
354
+ : 1 // 數值映射半徑
355
+ )
356
+ })
357
+ )
358
+
359
+ const scaleFactor$ = combineLatest({
360
+ radiusScale: radiusScale$,
361
+ fullParams: observer.fullParams$,
362
+ totalR: totalR$,
363
+ filteredValueList: filteredValueList$
364
+ }).pipe(
365
+ takeUntil(destroy$),
366
+ switchMap(async (d) => d),
367
+ map(data => {
368
+ return data.fullParams.arcScaleType === 'area'
369
+ ? 1
370
+ // 當數值映射半徑時,多個小圓的總面積會小於大圓的面積,所以要計算縮放比例
371
+ : (() => {
372
+ const totalArea = data.totalR * data.totalR * Math.PI
373
+ return Math.sqrt(totalArea / d3.sum(data.filteredValueList, d => Math.PI * Math.pow(data.radiusScale(d), 2)))
374
+ })()
375
+ })
376
+ )
377
+
378
+ const bubbleData$ = combineLatest({
379
+ computedLayoutData: observer.computedLayoutData$,
380
+ opacityScale: opacityScale$,
381
+ radiusScale: radiusScale$,
382
+ scaleFactor: scaleFactor$,
383
+ fullParams: observer.fullParams$
384
+ }).pipe(
385
+ takeUntil(destroy$),
386
+ switchMap(async (d) => d),
387
+ map(data => {
388
+ return data.computedLayoutData.map(category => {
389
+ return category.map(_d => {
390
+ const d: BubbleDatum = _d as BubbleDatum
391
+ d.r = data.radiusScale(d.value[2]) * data.scaleFactor * adjustmentFactor
392
+ d.opacity = data.opacityScale(d.value[2])
393
+ return d
394
+ })
395
+ })
396
+ })
397
+ )
398
+
399
+
400
+ const graphicSelection$ = combineLatest({
401
+ graphicGSelection: graphicGSelection$,
402
+ // visibleComputedLayoutData: observer.visibleComputedLayoutData$,
403
+ bubbleData: bubbleData$,
404
+ graphicReverseScale: graphicReverseScale$,
405
+ fullChartParams: observer.fullChartParams$,
406
+ fullParams: observer.fullParams$,
407
+ }).pipe(
408
+ takeUntil(destroy$),
409
+ switchMap(async (d) => d),
410
+ map(data => {
411
+ return renderDots({
412
+ graphicGSelection: data.graphicGSelection,
413
+ circleGClassName,
414
+ circleClassName,
415
+ bubbleData: data.bubbleData,
416
+ fullParams: data.fullParams,
417
+ fullChartParams: data.fullChartParams,
418
+ graphicReverseScale: data.graphicReverseScale
419
+ })
420
+ })
421
+ )
422
+
423
+ const highlightTarget$ = observer.fullChartParams$.pipe(
424
+ takeUntil(destroy$),
425
+ map(d => d.highlightTarget),
426
+ distinctUntilChanged()
427
+ )
428
+
429
+ combineLatest({
430
+ graphicSelection: graphicSelection$,
431
+ computedData: observer.computedData$,
432
+ CategoryDataMap: observer.CategoryDataMap$,
433
+ highlightTarget: highlightTarget$
434
+ }).pipe(
435
+ takeUntil(destroy$),
436
+ switchMap(async (d) => d),
437
+ ).subscribe(data => {
438
+
439
+ data.graphicSelection
440
+ .on('mouseover', (event, datum) => {
441
+ // event.stopPropagation()
442
+ // console.log({
443
+ // type: 'multiValue',
444
+ // eventName: 'mouseover',
445
+ // pluginName,
446
+ // highlightTarget: data.highlightTarget,
447
+ // datum,
448
+ // category: data.CategoryDataMap.get(datum.categoryLabel)!,
449
+ // categoryIndex: datum.categoryIndex,
450
+ // categoryLabel: datum.categoryLabel,
451
+ // data: data.computedData,
452
+ // event,
453
+ // })
454
+ subject.event$.next({
455
+ type: 'multiValue',
456
+ eventName: 'mouseover',
457
+ pluginName,
458
+ highlightTarget: data.highlightTarget,
459
+ datum,
460
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
461
+ categoryIndex: datum.categoryIndex,
462
+ categoryLabel: datum.categoryLabel,
463
+ data: data.computedData,
464
+ event,
465
+ })
466
+ })
467
+ .on('mousemove', (event, datum) => {
468
+ // event.stopPropagation()
469
+
470
+ subject.event$.next({
471
+ type: 'multiValue',
472
+ eventName: 'mousemove',
473
+ pluginName,
474
+ highlightTarget: data.highlightTarget,
475
+ datum,
476
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
477
+ categoryIndex: datum.categoryIndex,
478
+ categoryLabel: datum.categoryLabel,
479
+ data: data.computedData,
480
+ event,
481
+ })
482
+ })
483
+ .on('mouseout', (event, datum) => {
484
+ // event.stopPropagation()
485
+
486
+ subject.event$.next({
487
+ type: 'multiValue',
488
+ eventName: 'mouseout',
489
+ pluginName,
490
+ highlightTarget: data.highlightTarget,
491
+ datum,
492
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
493
+ categoryIndex: datum.categoryIndex,
494
+ categoryLabel: datum.categoryLabel,
495
+ data: data.computedData,
496
+ event,
497
+ })
498
+ })
499
+ .on('click', (event, datum) => {
500
+ // event.stopPropagation()
501
+
502
+ subject.event$.next({
503
+ type: 'multiValue',
504
+ eventName: 'click',
505
+ pluginName,
506
+ highlightTarget: data.highlightTarget,
507
+ datum,
508
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
509
+ categoryIndex: datum.categoryIndex,
510
+ categoryLabel: datum.categoryLabel,
511
+ data: data.computedData,
512
+ event,
513
+ })
514
+ })
515
+
516
+ })
517
+
518
+ combineLatest({
519
+ graphicSelection: graphicSelection$,
520
+ highlight: observer.multiValueHighlight$.pipe(
521
+ map(data => data.map(d => d.id))
522
+ ),
523
+ fullChartParams: observer.fullChartParams$
524
+ }).pipe(
525
+ takeUntil(destroy$),
526
+ switchMap(async d => d)
527
+ ).subscribe(data => {
528
+ highlightBubbles({
529
+ selection: data.graphicSelection,
530
+ ids: data.highlight,
531
+ fullChartParams: data.fullChartParams
532
+ })
533
+ })
534
+
535
+ // graphicGSelection$.subscribe(data => {
536
+ // console.log('graphicGSelection$', data)
537
+ // })
538
+
539
+ // observer.visibleComputedLayoutData$.subscribe(data => {
540
+ // console.log('visibleComputedLayoutData$', data)
541
+ // })
542
+
543
+ // observer.fullChartParams$.subscribe(data => {
544
+ // console.log('fullChartParams$', data)
545
+ // })
546
+
547
+ // observer.fullParams$.subscribe(data => {
548
+ // console.log('fullParams$', data)
549
+ // })
550
+
551
+ return () => {
552
+ destroy$.next(undefined)
553
+ }
554
+ })