@orbcharts/plugins-basic 3.0.0-beta.19 → 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 (110) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +60 -22
  3. package/dist/orbcharts-plugins-basic.umd.js +86 -66
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/lib/plugins-basic-types.ts +6 -6
  7. package/package.json +44 -44
  8. package/src/base/BaseBars.ts +765 -765
  9. package/src/base/BaseBarsTriangle.ts +676 -676
  10. package/src/base/BaseDots.ts +464 -464
  11. package/src/base/BaseGroupAxis.ts +691 -691
  12. package/src/base/BaseLegend.ts +684 -684
  13. package/src/base/BaseLineAreas.ts +629 -629
  14. package/src/base/BaseLines.ts +706 -706
  15. package/src/base/BaseRacingBars.ts +551 -551
  16. package/src/base/BaseRacingLabels.ts +396 -396
  17. package/src/base/BaseRacingValueLabels.ts +403 -403
  18. package/src/base/BaseStackedBars.ts +782 -782
  19. package/src/base/BaseTooltip.ts +386 -386
  20. package/src/base/BaseValueAxis.ts +600 -600
  21. package/src/base/BaseXAxis.ts +427 -427
  22. package/src/base/BaseYAxis.ts +389 -389
  23. package/src/base/types.ts +2 -2
  24. package/src/const.ts +30 -30
  25. package/src/grid/defaults.ts +213 -213
  26. package/src/grid/gridObservables.ts +612 -612
  27. package/src/grid/index.ts +16 -16
  28. package/src/grid/plugins/Bars.ts +69 -69
  29. package/src/grid/plugins/BarsPN.ts +66 -66
  30. package/src/grid/plugins/BarsTriangle.ts +73 -73
  31. package/src/grid/plugins/Dots.ts +68 -68
  32. package/src/grid/plugins/GridLegend.ts +107 -107
  33. package/src/grid/plugins/GridTooltip.ts +66 -66
  34. package/src/grid/plugins/GroupAux.ts +1120 -1120
  35. package/src/grid/plugins/GroupAxis.ts +73 -73
  36. package/src/grid/plugins/GroupZoom.ts +218 -218
  37. package/src/grid/plugins/LineAreas.ts +65 -65
  38. package/src/grid/plugins/Lines.ts +59 -59
  39. package/src/grid/plugins/StackedBars.ts +64 -64
  40. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  41. package/src/grid/plugins/ValueAxis.ts +94 -94
  42. package/src/index.ts +6 -6
  43. package/src/multiGrid/defaults.ts +244 -244
  44. package/src/multiGrid/index.ts +14 -14
  45. package/src/multiGrid/multiGridObservables.ts +50 -50
  46. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  47. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  48. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  49. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  50. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  51. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  52. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  53. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  54. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  55. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  56. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  57. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  58. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  59. package/src/multiValue/defaults.ts +431 -391
  60. package/src/multiValue/index.ts +12 -12
  61. package/src/multiValue/multiValueObservables.ts +666 -666
  62. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  63. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  64. package/src/multiValue/plugins/RacingBars.ts +373 -373
  65. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  66. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  67. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -109
  68. package/src/multiValue/plugins/Scatter.ts +426 -426
  69. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  70. package/src/multiValue/plugins/XAxis.ts +107 -107
  71. package/src/multiValue/plugins/XYAux.ts +682 -682
  72. package/src/multiValue/plugins/XYAxes.ts +194 -194
  73. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  74. package/src/multiValue/plugins/XZoom.ts +299 -299
  75. package/src/noneData/defaults.ts +102 -102
  76. package/src/noneData/index.ts +3 -3
  77. package/src/noneData/plugins/Container.ts +27 -27
  78. package/src/noneData/plugins/Tooltip.ts +373 -373
  79. package/src/relationship/defaults.ts +221 -221
  80. package/src/relationship/index.ts +5 -5
  81. package/src/relationship/plugins/ForceDirected.ts +1173 -1173
  82. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1411
  83. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  84. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  85. package/src/relationship/relationshipObservables.ts +49 -49
  86. package/src/series/defaults.ts +221 -221
  87. package/src/series/index.ts +9 -9
  88. package/src/series/plugins/Bubbles.ts +636 -636
  89. package/src/series/plugins/Pie.ts +623 -623
  90. package/src/series/plugins/PieEventTexts.ts +284 -284
  91. package/src/series/plugins/PieLabels.ts +640 -640
  92. package/src/series/plugins/Rose.ts +516 -516
  93. package/src/series/plugins/RoseLabels.ts +600 -600
  94. package/src/series/plugins/SeriesLegend.ts +107 -107
  95. package/src/series/plugins/SeriesTooltip.ts +66 -66
  96. package/src/series/seriesObservables.ts +145 -145
  97. package/src/series/seriesUtils.ts +51 -51
  98. package/src/tree/defaults.ts +102 -102
  99. package/src/tree/index.ts +4 -4
  100. package/src/tree/plugins/TreeLegend.ts +100 -100
  101. package/src/tree/plugins/TreeMap.ts +341 -341
  102. package/src/tree/plugins/TreeTooltip.ts +66 -66
  103. package/src/utils/commonUtils.ts +31 -31
  104. package/src/utils/d3Graphics.ts +176 -176
  105. package/src/utils/d3Utils.ts +92 -92
  106. package/src/utils/observables.ts +14 -14
  107. package/src/utils/orbchartsUtils.ts +129 -129
  108. package/tsconfig.base.json +13 -13
  109. package/tsconfig.json +2 -2
  110. package/vite.config.js +22 -22
@@ -1,552 +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
- }
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
552
  }