@orbcharts/plugins-basic 3.0.0-beta.2 → 3.0.0-beta.20

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 (182) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +15169 -10684
  3. package/dist/orbcharts-plugins-basic.umd.js +296 -83
  4. package/dist/src/base/BaseBars.d.ts +4 -4
  5. package/dist/src/base/BaseBarsTriangle.d.ts +4 -4
  6. package/dist/src/base/BaseDots.d.ts +4 -4
  7. package/dist/src/base/BaseGroupAxis.d.ts +2 -2
  8. package/dist/src/base/BaseLegend.d.ts +1 -1
  9. package/dist/src/base/BaseLineAreas.d.ts +5 -5
  10. package/dist/src/base/BaseLines.d.ts +5 -5
  11. package/dist/src/base/BaseRacingBars.d.ts +23 -0
  12. package/dist/src/base/BaseRacingLabels.d.ts +20 -0
  13. package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
  14. package/dist/src/base/{BaseBarStack.d.ts → BaseStackedBars.d.ts} +8 -8
  15. package/dist/src/base/BaseValueAxis.d.ts +6 -8
  16. package/dist/src/base/BaseXAxis.d.ts +20 -0
  17. package/dist/src/base/BaseYAxis.d.ts +18 -0
  18. package/dist/src/grid/defaults.d.ts +5 -5
  19. package/dist/src/grid/gridObservables.d.ts +12 -5
  20. package/dist/src/grid/index.d.ts +3 -3
  21. package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
  22. package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
  23. package/dist/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  24. package/dist/src/index.d.ts +2 -0
  25. package/dist/src/multiGrid/defaults.d.ts +4 -4
  26. package/dist/src/multiGrid/index.d.ts +3 -3
  27. package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
  28. package/dist/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  29. package/dist/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  30. package/dist/src/multiValue/defaults.d.ts +13 -0
  31. package/dist/src/multiValue/index.d.ts +12 -0
  32. package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
  33. package/dist/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  34. package/dist/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  35. package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
  36. package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
  37. package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
  38. package/dist/src/multiValue/plugins/Scatter.d.ts +3 -0
  39. package/dist/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  40. package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
  41. package/dist/src/multiValue/plugins/XYAux.d.ts +3 -0
  42. package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
  43. package/dist/src/multiValue/plugins/XYAxes_legacy.d.ts +3 -0
  44. package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
  45. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  46. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  47. package/dist/src/relationship/defaults.d.ts +6 -0
  48. package/dist/src/relationship/index.d.ts +5 -0
  49. package/dist/src/relationship/plugins/ForceDirected.d.ts +3 -0
  50. package/dist/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  51. package/dist/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  52. package/dist/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  53. package/dist/src/relationship/relationshipObservables.d.ts +1 -0
  54. package/dist/src/series/seriesObservables.d.ts +3 -3
  55. package/dist/src/utils/commonUtils.d.ts +2 -1
  56. package/dist/src/utils/d3Graphics.d.ts +2 -1
  57. package/dist/src/utils/d3Utils.d.ts +3 -2
  58. package/dist/src/utils/observables.d.ts +1 -1
  59. package/dist/src/utils/orbchartsUtils.d.ts +3 -3
  60. package/lib/core-types.ts +7 -7
  61. package/lib/core.ts +6 -6
  62. package/lib/plugins-basic-types.ts +6 -6
  63. package/package.json +44 -44
  64. package/src/base/BaseBars.ts +765 -765
  65. package/src/base/BaseBarsTriangle.ts +676 -674
  66. package/src/base/BaseDots.ts +464 -515
  67. package/src/base/BaseGroupAxis.ts +691 -679
  68. package/src/base/BaseLegend.ts +684 -680
  69. package/src/base/BaseLineAreas.ts +629 -629
  70. package/src/base/BaseLines.ts +706 -706
  71. package/src/base/BaseRacingBars.ts +552 -0
  72. package/src/base/BaseRacingLabels.ts +396 -0
  73. package/src/base/BaseRacingValueLabels.ts +403 -0
  74. package/src/base/{BaseBarStack.ts → BaseStackedBars.ts} +782 -780
  75. package/src/base/BaseTooltip.ts +386 -385
  76. package/src/base/BaseValueAxis.ts +600 -580
  77. package/src/base/BaseXAxis.ts +427 -0
  78. package/src/base/BaseYAxis.ts +389 -0
  79. package/src/base/types.ts +2 -2
  80. package/src/const.ts +30 -30
  81. package/src/grid/defaults.ts +213 -244
  82. package/src/grid/gridObservables.ts +612 -545
  83. package/src/grid/index.ts +16 -16
  84. package/src/grid/plugins/Bars.ts +69 -69
  85. package/src/grid/plugins/BarsPN.ts +66 -66
  86. package/src/grid/plugins/BarsTriangle.ts +73 -73
  87. package/src/grid/plugins/Dots.ts +68 -68
  88. package/src/grid/plugins/GridLegend.ts +107 -107
  89. package/src/grid/plugins/GridTooltip.ts +66 -66
  90. package/src/grid/plugins/GroupAux.ts +1120 -1098
  91. package/src/grid/plugins/GroupAxis.ts +73 -97
  92. package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
  93. package/src/grid/plugins/LineAreas.ts +65 -65
  94. package/src/grid/plugins/Lines.ts +59 -59
  95. package/src/grid/plugins/{BarStack.ts → StackedBars.ts} +64 -64
  96. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
  97. package/src/grid/plugins/ValueAxis.ts +94 -93
  98. package/src/index.ts +6 -9
  99. package/src/multiGrid/defaults.ts +244 -224
  100. package/src/multiGrid/index.ts +15 -15
  101. package/src/multiGrid/multiGridObservables.ts +50 -49
  102. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  103. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  104. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  105. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
  106. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  107. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  108. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  109. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  110. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBars.ts} +106 -106
  111. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
  112. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  113. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +300 -298
  114. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  115. package/src/multiValue/defaults.ts +432 -0
  116. package/src/multiValue/index.ts +13 -0
  117. package/src/multiValue/multiValueObservables.ts +667 -0
  118. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  119. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  120. package/src/multiValue/plugins/RacingBars.ts +373 -0
  121. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
  122. package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
  123. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
  124. package/src/multiValue/plugins/Scatter.ts +426 -0
  125. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  126. package/src/multiValue/plugins/XAxis.ts +108 -0
  127. package/src/multiValue/plugins/XYAux.ts +683 -0
  128. package/src/multiValue/plugins/XYAxes.ts +195 -0
  129. package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
  130. package/src/multiValue/plugins/XZoom.ts +300 -0
  131. package/src/noneData/defaults.ts +102 -102
  132. package/src/noneData/index.ts +3 -3
  133. package/src/noneData/plugins/Container.ts +28 -28
  134. package/src/noneData/plugins/Tooltip.ts +374 -374
  135. package/src/relationship/defaults.ts +222 -0
  136. package/src/relationship/index.ts +5 -0
  137. package/src/relationship/plugins/ForceDirected.ts +1174 -0
  138. package/src/relationship/plugins/ForceDirectedBubbles.ts +1412 -0
  139. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  140. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  141. package/src/relationship/relationshipObservables.ts +50 -0
  142. package/src/series/defaults.ts +221 -206
  143. package/src/series/index.ts +9 -9
  144. package/src/series/plugins/Bubbles.ts +636 -603
  145. package/src/series/plugins/Pie.ts +623 -623
  146. package/src/series/plugins/PieEventTexts.ts +284 -283
  147. package/src/series/plugins/PieLabels.ts +640 -640
  148. package/src/series/plugins/Rose.ts +516 -516
  149. package/src/series/plugins/RoseLabels.ts +600 -600
  150. package/src/series/plugins/SeriesLegend.ts +107 -107
  151. package/src/series/plugins/SeriesTooltip.ts +66 -66
  152. package/src/series/seriesObservables.ts +145 -145
  153. package/src/series/seriesUtils.ts +51 -51
  154. package/src/tree/defaults.ts +102 -78
  155. package/src/tree/index.ts +4 -4
  156. package/src/tree/plugins/TreeLegend.ts +100 -107
  157. package/src/tree/plugins/TreeMap.ts +341 -333
  158. package/src/tree/plugins/TreeTooltip.ts +66 -66
  159. package/src/utils/commonUtils.ts +31 -22
  160. package/src/utils/d3Graphics.ts +176 -174
  161. package/src/utils/d3Utils.ts +92 -73
  162. package/src/utils/observables.ts +14 -14
  163. package/src/utils/orbchartsUtils.ts +130 -100
  164. package/tsconfig.base.json +13 -13
  165. package/tsconfig.json +2 -2
  166. package/vite.config.js +22 -22
  167. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  168. package/dist/src/grid/plugins/GridZoom.d.ts +0 -1
  169. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  170. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  171. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  172. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  173. package/src/grid/plugins/RankingAxis.ts +0 -0
  174. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  175. package/src/relationship/plugins/Relationship.ts +0 -0
  176. /package/dist/src/{base/BaseGroupArea.d.ts → multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
  177. /package/dist/src/{grid/plugins/Ranking.d.ts → multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
  178. /package/dist/src/{grid/plugins/RankingAxis.d.ts → multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
  179. /package/dist/src/multiValue/plugins/{ScatterAxes.d.ts → RankingAxis_legacy.d.ts} +0 -0
  180. /package/{dist/src/relationship/plugins/Relationship.d.ts → src/multiValue/plugins/OrdinalBubbles.ts} +0 -0
  181. /package/src/{base/BaseGroupArea.ts → multiValue/plugins/OrdinalXAxis.ts} +0 -0
  182. /package/src/{grid/plugins/Ranking.ts → multiValue/plugins/RacingCounterAxis.ts} +0 -0
@@ -0,0 +1,552 @@
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ distinctUntilChanged,
8
+ shareReplay,
9
+ Observable,
10
+ Subject } from 'rxjs'
11
+ import type { BasePluginFn } from './types'
12
+ import type {
13
+ ComputedDatumMultiValue,
14
+ ComputedDataMultiValue,
15
+ // ComputedLayoutDataGrid,
16
+ DataFormatterTypeMap,
17
+ ContainerPositionScaled,
18
+ ContainerSize,
19
+ EventMultiValue,
20
+ ChartParams,
21
+ Layout,
22
+ TransformData } from '../../lib/core-types'
23
+ import type { BaseRacingBarsParams } from '../../lib/plugins-basic-types'
24
+ import { getD3TransitionEase } from '../utils/d3Utils'
25
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
26
+ import { multiValueContainerSelectionsObservable } from '../multiValue/multiValueObservables'
27
+
28
+ // export interface BaseBarsParams {
29
+ // // barType: BarType
30
+ // barWidth: number
31
+ // barPadding: number
32
+ // barGroupPadding: number // 群組和群組間的間隔
33
+ // barRadius: number | boolean
34
+ // }
35
+
36
+ interface BaseRacingBarsContext {
37
+ selection: d3.Selection<any, unknown, any, unknown>
38
+ computedData$: Observable<ComputedDataMultiValue>
39
+ visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>
40
+ CategoryDataMap$: Observable<Map<string, ComputedDatumMultiValue[]>>
41
+ fullParams$: Observable<BaseRacingBarsParams>
42
+ fullChartParams$: Observable<ChartParams>
43
+ // xyValueIndex$: Observable<[number, number]>
44
+ highlight$: Observable<ComputedDatumMultiValue[]>
45
+ rankingItemHeight$: Observable<number>
46
+ rankingScaleList$: Observable<d3.ScalePoint<string>[]>
47
+ containerPosition$: Observable<ContainerPositionScaled[]>
48
+ containerSize$: Observable<ContainerSize>
49
+ xScale$: Observable<(n: number) => number>
50
+ isCategorySeprate$: Observable<boolean>
51
+ event$: Subject<EventMultiValue>
52
+ }
53
+
54
+ interface RenderGraphicGParams {
55
+ containerSelection: d3.Selection<SVGGElement, ComputedDatumMultiValue[], any, any>
56
+ visibleComputedRankingData: ComputedDatumMultiValue[][]
57
+ rankingScaleList: d3.ScalePoint<string>[]
58
+ transitionDuration: number
59
+ }
60
+
61
+ interface RenderBarParams {
62
+ graphicGSelection: d3.Selection<SVGGElement, ComputedDatumMultiValue, any, any>
63
+ rectClassName: string
64
+ // xyValueIndex: [number, number]
65
+ xScale: (n: number) => number
66
+ fullParams: BaseRacingBarsParams
67
+ barWidth: number
68
+ transitionDuration: number
69
+ }
70
+
71
+ type ClipPathDatum = {
72
+ id: string;
73
+ // x: number;
74
+ // y: number;
75
+ width: number;
76
+ height: number;
77
+ }
78
+
79
+
80
+ function renderGraphicG ({ containerSelection, visibleComputedRankingData, rankingScaleList, transitionDuration }: RenderGraphicGParams) {
81
+ containerSelection
82
+ .each((_, categoryIndex, g) => {
83
+ const container = d3.select(g[categoryIndex])
84
+ const graphicG = container.selectAll<SVGGElement, ComputedDatumMultiValue>(`g`)
85
+ .data(visibleComputedRankingData[categoryIndex] ?? [], d => d.id)
86
+ .join(
87
+ enter => {
88
+ return enter
89
+ .append('g')
90
+ .attr('cursor', 'pointer')
91
+ .attr('transform', d => {
92
+ return `translate(0, ${rankingScaleList[categoryIndex] && rankingScaleList[categoryIndex](d.label)})`
93
+ })
94
+ },
95
+ update => {
96
+ return update
97
+ .transition()
98
+ .duration(transitionDuration)
99
+ .ease(d3.easeLinear)
100
+ .attr('transform', d => {
101
+ return `translate(0, ${rankingScaleList[categoryIndex] && rankingScaleList[categoryIndex](d.label)})`
102
+ })
103
+ },
104
+ exit => exit.remove()
105
+ )
106
+ })
107
+
108
+ const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumMultiValue, SVGGElement, unknown> = containerSelection.selectAll(`g`)
109
+
110
+ return graphicBarSelection
111
+ }
112
+
113
+ function renderRectBars ({ graphicGSelection, rectClassName, xScale, fullParams, barWidth, transitionDuration }: RenderBarParams) {
114
+
115
+ graphicGSelection
116
+ .each((datum, i, g) => {
117
+ // const containerIndex = isCategorySeprate ? datum.categoryIndex : 0
118
+ // const barWidth = barWidthList[containerIndex]
119
+ const barHalfWidth = barWidth / 2
120
+ const radius = fullParams.bar.barRadius === true ? barHalfWidth
121
+ : fullParams.bar.barRadius === false ? 0
122
+ : typeof fullParams.bar.barRadius == 'number' ? fullParams.bar.barRadius
123
+ : 0
124
+
125
+ const gSelection = d3.select(g[i])
126
+ gSelection.selectAll<SVGRectElement, ComputedDatumMultiValue>(`rect.${rectClassName}`)
127
+ .data([datum], d => d.id)
128
+ .join(
129
+ enter => {
130
+ return enter
131
+ .append('rect')
132
+ .classed(rectClassName, true)
133
+ .attr('cursor', 'pointer')
134
+ // .attr('width', d => 1)
135
+ .attr('width', d => xScale(d.value[d.xValueIndex]) ?? 1)
136
+ .attr('height', barWidth)
137
+ },
138
+ update => {
139
+ return update
140
+ .transition()
141
+ .duration(transitionDuration)
142
+ .ease(d3.easeLinear)
143
+ .attr('width', d => xScale(d.value[d.xValueIndex]) ?? 1)
144
+ .attr('height', barWidth)
145
+ },
146
+ exit => exit.remove()
147
+ )
148
+ .attr('transform', `translate(0, ${-barHalfWidth})`)
149
+ .attr('fill', d => d.color)
150
+ .attr('rx', radius)
151
+ .attr('ry', radius)
152
+ })
153
+
154
+ const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumMultiValue, SVGGElement, unknown> = graphicGSelection.selectAll(`rect.${rectClassName}`)
155
+
156
+ return graphicBarSelection
157
+ }
158
+
159
+ function renderClipPath ({ defsSelection, clipPathData }: {
160
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
161
+ clipPathData: ClipPathDatum[]
162
+ }) {
163
+ const clipPath = defsSelection
164
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
165
+ .data(clipPathData)
166
+ .join(
167
+ enter => {
168
+ return enter
169
+ .append('clipPath')
170
+ },
171
+ update => update,
172
+ exit => exit.remove()
173
+ )
174
+ .attr('id', d => d.id)
175
+ .each((d, i, g) => {
176
+ const rect = d3.select(g[i])
177
+ .selectAll<SVGRectElement, typeof d>('rect')
178
+ .data([d])
179
+ .join(
180
+ enter => {
181
+ return enter
182
+ .append('rect')
183
+ },
184
+ update => update,
185
+ exit => exit.remove()
186
+ )
187
+ .attr('x', 0)
188
+ .attr('y', 0)
189
+ .attr('width', _d => _d.width)
190
+ .attr('height', _d => _d.height)
191
+ })
192
+ }
193
+
194
+ function highlight ({ selection, ids, fullChartParams }: {
195
+ selection: d3.Selection<any, ComputedDatumMultiValue, any, any>
196
+ ids: string[]
197
+ fullChartParams: ChartParams
198
+ }) {
199
+ selection.interrupt('highlight')
200
+
201
+ if (!ids.length) {
202
+ // remove highlight
203
+ selection
204
+ .transition('highlight')
205
+ .duration(200)
206
+ .style('opacity', 1)
207
+ return
208
+ }
209
+
210
+ selection
211
+ .each((d, i, n) => {
212
+ if (ids.includes(d.id)) {
213
+ d3.select(n[i])
214
+ .style('opacity', 1)
215
+ } else {
216
+ d3.select(n[i])
217
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
218
+ }
219
+ })
220
+ }
221
+
222
+
223
+ export const createBaseRacingBars: BasePluginFn<BaseRacingBarsContext> = (pluginName: string, {
224
+ selection,
225
+ computedData$,
226
+ visibleComputedRankingData$,
227
+ // xyValueIndex$,
228
+ // categoryLabels$,
229
+ CategoryDataMap$,
230
+ fullParams$,
231
+ fullChartParams$,
232
+ // layout$,
233
+ // graphicTransform$,
234
+ // graphicReverseScale$,
235
+ highlight$,
236
+ // computedRankingAmountList$,
237
+ rankingItemHeight$,
238
+ rankingScaleList$,
239
+ containerPosition$,
240
+ containerSize$,
241
+ // layout$,
242
+ xScale$,
243
+ isCategorySeprate$,
244
+ event$
245
+ }) => {
246
+
247
+ const destroy$ = new Subject()
248
+
249
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
250
+ const rectClassName = getClassName(pluginName, 'rect')
251
+ // const containerClassName = getClassName(pluginName, 'container')
252
+
253
+ // const {
254
+ // categorySelection$,
255
+ // axesSelection$,
256
+ // defsSelection$,
257
+ // graphicGSelection$
258
+ // } = multiValueSelectionsObservable({
259
+ // selection,
260
+ // pluginName,
261
+ // clipPathID,
262
+ // categoryLabels$: categoryLabels$,
263
+ // containerPosition$: containerPosition$,
264
+ // graphicTransform$: graphicTransform$
265
+ // })
266
+
267
+ // const clipPathSubscription = combineLatest({
268
+ // defsSelection: defsSelection$,
269
+ // layout: layout$,
270
+ // }).pipe(
271
+ // takeUntil(destroy$),
272
+ // switchMap(async (d) => d),
273
+ // ).subscribe(data => {
274
+ // // 外層的遮罩
275
+ // const clipPathData = [{
276
+ // id: clipPathID,
277
+ // width: data.layout.width,
278
+ // height: data.layout.height
279
+ // }]
280
+ // renderClipPath({
281
+ // defsSelection: data.defsSelection,
282
+ // clipPathData,
283
+ // })
284
+ // })
285
+
286
+ const containerSelection$ = multiValueContainerSelectionsObservable({
287
+ selection,
288
+ pluginName,
289
+ clipPathID,
290
+ computedData$,
291
+ containerPosition$,
292
+ isCategorySeprate$,
293
+ }).pipe(
294
+ takeUntil(destroy$),
295
+ )
296
+
297
+ // const containerSelection$ = combineLatest({
298
+ // computedData: computedData$.pipe(
299
+ // distinctUntilChanged((a, b) => {
300
+ // // 只有當series的數量改變時,才重新計算
301
+ // return a.length === b.length
302
+ // }),
303
+ // ),
304
+ // isCategorySeprate: isCategorySeprate$
305
+ // }).pipe(
306
+ // takeUntil(destroy$),
307
+ // switchMap(async (d) => d),
308
+ // map(data => {
309
+ // return data.isCategorySeprate
310
+ // // category分開的時候顯示各別axis
311
+ // ? data.computedData
312
+ // // category合併的時候只顯示第一個axis
313
+ // : [data.computedData[0]]
314
+ // }),
315
+ // map((computedData, i) => {
316
+ // return selection
317
+ // .selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${containerClassName}`)
318
+ // .data(computedData, d => d[0] ? d[0].categoryIndex : i)
319
+ // .join('g')
320
+ // .classed(containerClassName, true)
321
+ // .attr('clip-path', `url(#${clipPathID})`)
322
+ // })
323
+ // )
324
+
325
+ containerSize$.subscribe(data => {
326
+ const defsSelection = selection.selectAll<SVGDefsElement, any>('defs')
327
+ .data([clipPathID])
328
+ .join('defs')
329
+ const clipPathData = [{
330
+ id: clipPathID,
331
+ width: data.width,
332
+ height: data.height
333
+ }]
334
+ renderClipPath({
335
+ defsSelection: defsSelection,
336
+ clipPathData,
337
+ // textReverseTransform: data.textReverseTransform
338
+ })
339
+ })
340
+
341
+ // combineLatest({
342
+ // containerSelection: containerSelection$,
343
+ // containerPosition: containerPosition$
344
+ // }).pipe(
345
+ // takeUntil(destroy$),
346
+ // switchMap(async d => d)
347
+ // ).subscribe(data => {
348
+ // data.containerSelection
349
+ // .attr('transform', (d, i) => {
350
+ // const containerPosition = data.containerPosition[i] ?? data.containerPosition[0]
351
+ // const translate = containerPosition.translate
352
+ // const scale = containerPosition.scale
353
+ // // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
354
+ // return `translate(${translate[0]}, ${translate[1]})`
355
+ // })
356
+ // // .attr('opacity', 0)
357
+ // // .transition()
358
+ // // .attr('opacity', 1)
359
+ // })
360
+
361
+ const barWidth$ = combineLatest({
362
+ fullParams: fullParams$,
363
+ rankingItemHeight: rankingItemHeight$,
364
+ }).pipe(
365
+ takeUntil(destroy$),
366
+ switchMap(async d => d),
367
+ map(data => {
368
+ if (data.fullParams.bar.barWidth) {
369
+ return data.fullParams.bar.barWidth
370
+ } else {
371
+ return data.rankingItemHeight - data.fullParams.bar.barPadding
372
+ }
373
+ }),
374
+ distinctUntilChanged()
375
+ )
376
+
377
+ const transitionDuration$ = fullChartParams$.pipe(
378
+ takeUntil(destroy$),
379
+ map(d => d.transitionDuration),
380
+ distinctUntilChanged()
381
+ )
382
+
383
+ const graphicGSelection$ = combineLatest({
384
+ containerSelection: containerSelection$,
385
+ visibleComputedRankingData: visibleComputedRankingData$,
386
+ rankingScaleList: rankingScaleList$,
387
+ transitionDuration: transitionDuration$,
388
+ }).pipe(
389
+ takeUntil(destroy$),
390
+ switchMap(async (d) => d),
391
+ map(data => {
392
+
393
+ return renderGraphicG({
394
+ containerSelection: data.containerSelection,
395
+ visibleComputedRankingData: data.visibleComputedRankingData,
396
+ rankingScaleList: data.rankingScaleList,
397
+ transitionDuration: data.transitionDuration
398
+ })
399
+ })
400
+ )
401
+
402
+ const graphicSelection$ = combineLatest({
403
+ graphicGSelection: graphicGSelection$,
404
+ // xyValueIndex: xyValueIndex$,
405
+ xScale: xScale$,
406
+ barWidth: barWidth$,
407
+ transitionDuration: transitionDuration$,
408
+ fullParams: fullParams$,
409
+ }).pipe(
410
+ takeUntil(destroy$),
411
+ switchMap(async (d) => d),
412
+ map(data => {
413
+
414
+ return renderRectBars({
415
+ graphicGSelection: data.graphicGSelection,
416
+ rectClassName,
417
+ // xyValueIndex: data.xyValueIndex,
418
+ xScale: data.xScale,
419
+ fullParams: data.fullParams,
420
+ barWidth: data.barWidth,
421
+ transitionDuration: data.transitionDuration,
422
+ })
423
+ }),
424
+ shareReplay(1)
425
+ )
426
+
427
+ const highlightTarget$ = fullChartParams$.pipe(
428
+ takeUntil(destroy$),
429
+ map(d => d.highlightTarget),
430
+ distinctUntilChanged()
431
+ )
432
+
433
+ combineLatest({
434
+ graphicSelection: graphicSelection$,
435
+ computedData: computedData$,
436
+ CategoryDataMap: CategoryDataMap$,
437
+ highlightTarget: highlightTarget$
438
+ }).pipe(
439
+ takeUntil(destroy$),
440
+ switchMap(async (d) => d),
441
+ ).subscribe(data => {
442
+
443
+ data.graphicSelection
444
+ .on('mouseover', (event, datum) => {
445
+ // event.stopPropagation()
446
+ // console.log({
447
+ // type: 'multiValue',
448
+ // eventName: 'mouseover',
449
+ // pluginName,
450
+ // highlightTarget: data.highlightTarget,
451
+ // datum,
452
+ // category: data.CategoryDataMap.get(datum.categoryLabel)!,
453
+ // categoryIndex: datum.categoryIndex,
454
+ // categoryLabel: datum.categoryLabel,
455
+ // data: data.computedData,
456
+ // event,
457
+ // })
458
+
459
+ // 只顯示目前的值
460
+ datum._visibleValue = [datum.value[datum.xValueIndex]]
461
+
462
+ event$.next({
463
+ type: 'multiValue',
464
+ eventName: 'mouseover',
465
+ pluginName,
466
+ highlightTarget: data.highlightTarget,
467
+ datum,
468
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
469
+ categoryIndex: datum.categoryIndex,
470
+ categoryLabel: datum.categoryLabel,
471
+ data: data.computedData,
472
+ event,
473
+ })
474
+ })
475
+ .on('mousemove', (event, datum) => {
476
+ // event.stopPropagation()
477
+
478
+ // 只顯示目前的值
479
+ datum._visibleValue = [datum.value[datum.xValueIndex]]
480
+
481
+ event$.next({
482
+ type: 'multiValue',
483
+ eventName: 'mousemove',
484
+ pluginName,
485
+ highlightTarget: data.highlightTarget,
486
+ datum,
487
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
488
+ categoryIndex: datum.categoryIndex,
489
+ categoryLabel: datum.categoryLabel,
490
+ data: data.computedData,
491
+ event,
492
+ })
493
+ })
494
+ .on('mouseout', (event, datum) => {
495
+ // event.stopPropagation()
496
+
497
+ event$.next({
498
+ type: 'multiValue',
499
+ eventName: 'mouseout',
500
+ pluginName,
501
+ highlightTarget: data.highlightTarget,
502
+ datum,
503
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
504
+ categoryIndex: datum.categoryIndex,
505
+ categoryLabel: datum.categoryLabel,
506
+ data: data.computedData,
507
+ event,
508
+ })
509
+ })
510
+ .on('click', (event, datum) => {
511
+ // event.stopPropagation()
512
+
513
+ // 只顯示目前的值
514
+ datum._visibleValue = [datum.value[datum.xValueIndex]]
515
+
516
+ event$.next({
517
+ type: 'multiValue',
518
+ eventName: 'click',
519
+ pluginName,
520
+ highlightTarget: data.highlightTarget,
521
+ datum,
522
+ category: data.CategoryDataMap.get(datum.categoryLabel)!,
523
+ categoryIndex: datum.categoryIndex,
524
+ categoryLabel: datum.categoryLabel,
525
+ data: data.computedData,
526
+ event,
527
+ })
528
+ })
529
+
530
+ })
531
+
532
+ combineLatest({
533
+ graphicSelection: graphicSelection$,
534
+ highlight: highlight$.pipe(
535
+ map(data => data.map(d => d.id))
536
+ ),
537
+ fullChartParams: fullChartParams$
538
+ }).pipe(
539
+ takeUntil(destroy$),
540
+ switchMap(async d => d)
541
+ ).subscribe(data => {
542
+ highlight({
543
+ selection: data.graphicSelection,
544
+ ids: data.highlight,
545
+ fullChartParams: data.fullChartParams
546
+ })
547
+ })
548
+
549
+ return () => {
550
+ destroy$.next(undefined)
551
+ }
552
+ }