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

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 (80) hide show
  1. package/LICENSE +200 -200
  2. package/lib/core-types.ts +7 -7
  3. package/lib/core.ts +6 -6
  4. package/lib/plugins-basic-types.ts +6 -6
  5. package/package.json +44 -44
  6. package/src/base/BaseBarStack.ts +780 -780
  7. package/src/base/BaseBars.ts +765 -765
  8. package/src/base/BaseBarsTriangle.ts +674 -674
  9. package/src/base/BaseDots.ts +515 -515
  10. package/src/base/BaseGroupAxis.ts +679 -679
  11. package/src/base/BaseLegend.ts +680 -680
  12. package/src/base/BaseLineAreas.ts +629 -629
  13. package/src/base/BaseLines.ts +706 -706
  14. package/src/base/BaseTooltip.ts +385 -385
  15. package/src/base/BaseValueAxis.ts +580 -580
  16. package/src/base/types.ts +2 -2
  17. package/src/const.ts +30 -30
  18. package/src/grid/defaults.ts +244 -244
  19. package/src/grid/gridObservables.ts +545 -545
  20. package/src/grid/index.ts +16 -16
  21. package/src/grid/plugins/BarStack.ts +64 -64
  22. package/src/grid/plugins/Bars.ts +69 -69
  23. package/src/grid/plugins/BarsPN.ts +66 -66
  24. package/src/grid/plugins/BarsTriangle.ts +73 -73
  25. package/src/grid/plugins/Dots.ts +68 -68
  26. package/src/grid/plugins/GridLegend.ts +107 -107
  27. package/src/grid/plugins/GridTooltip.ts +66 -66
  28. package/src/grid/plugins/GridZoom.ts +218 -218
  29. package/src/grid/plugins/GroupAux.ts +1098 -1098
  30. package/src/grid/plugins/GroupAxis.ts +97 -97
  31. package/src/grid/plugins/LineAreas.ts +65 -65
  32. package/src/grid/plugins/Lines.ts +59 -59
  33. package/src/grid/plugins/ValueAxis.ts +93 -93
  34. package/src/grid/plugins/ValueStackAxis.ts +95 -95
  35. package/src/index.ts +9 -9
  36. package/src/multiGrid/defaults.ts +224 -224
  37. package/src/multiGrid/index.ts +14 -14
  38. package/src/multiGrid/multiGridObservables.ts +49 -49
  39. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  40. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  41. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  42. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  43. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  44. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  45. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  46. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  47. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  48. package/src/multiGrid/plugins/MultiValueAxis.ts +133 -133
  49. package/src/multiGrid/plugins/MultiValueStackAxis.ts +133 -133
  50. package/src/multiGrid/plugins/OverlappingValueAxes.ts +299 -299
  51. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +298 -298
  52. package/src/noneData/defaults.ts +102 -102
  53. package/src/noneData/index.ts +3 -3
  54. package/src/noneData/plugins/Container.ts +27 -27
  55. package/src/noneData/plugins/Tooltip.ts +373 -373
  56. package/src/series/defaults.ts +206 -206
  57. package/src/series/index.ts +9 -9
  58. package/src/series/plugins/Bubbles.ts +603 -603
  59. package/src/series/plugins/Pie.ts +623 -623
  60. package/src/series/plugins/PieEventTexts.ts +283 -283
  61. package/src/series/plugins/PieLabels.ts +640 -640
  62. package/src/series/plugins/Rose.ts +516 -516
  63. package/src/series/plugins/RoseLabels.ts +600 -600
  64. package/src/series/plugins/SeriesLegend.ts +107 -107
  65. package/src/series/plugins/SeriesTooltip.ts +66 -66
  66. package/src/series/seriesObservables.ts +145 -145
  67. package/src/series/seriesUtils.ts +51 -51
  68. package/src/tree/defaults.ts +78 -78
  69. package/src/tree/index.ts +4 -4
  70. package/src/tree/plugins/TreeLegend.ts +107 -107
  71. package/src/tree/plugins/TreeMap.ts +333 -333
  72. package/src/tree/plugins/TreeTooltip.ts +66 -66
  73. package/src/utils/commonUtils.ts +21 -21
  74. package/src/utils/d3Graphics.ts +174 -174
  75. package/src/utils/d3Utils.ts +73 -73
  76. package/src/utils/observables.ts +14 -14
  77. package/src/utils/orbchartsUtils.ts +100 -100
  78. package/tsconfig.base.json +13 -13
  79. package/tsconfig.json +2 -2
  80. package/vite.config.js +22 -22
@@ -1,516 +1,516 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- takeUntil,
7
- distinctUntilChanged,
8
- Observable,
9
- Subject } from 'rxjs'
10
- import type { BasePluginFn } from './types'
11
- import type {
12
- ComputedDatumGrid,
13
- ComputedDataGrid,
14
- ComputedLayoutDataGrid,
15
- EventGrid,
16
- ChartParams,
17
- GridContainerPosition,
18
- Layout,
19
- TransformData,
20
- ColorType
21
- } from '../../lib/core-types'
22
- import type { BaseDotsParams } from '../../lib/plugins-basic-types'
23
- import { getDatumColor, getClassName, getUniID } from '../utils/orbchartsUtils'
24
- import { gridSelectionsObservable } from '../grid/gridObservables'
25
-
26
- // export interface BaseDotsParams {
27
- // radius: number
28
- // fillColorType: ColorType
29
- // strokeColorType: ColorType
30
- // strokeWidth: number
31
- // // strokeWidthWhileHighlight: number
32
- // onlyShowHighlighted: boolean
33
- // }
34
-
35
- interface BaseDotsContext {
36
- selection: d3.Selection<any, unknown, any, unknown>
37
- computedData$: Observable<ComputedDataGrid>
38
- computedLayoutData$: Observable<ComputedLayoutDataGrid>
39
- visibleComputedData$: Observable<ComputedDatumGrid[][]>
40
- visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
41
- seriesLabels$: Observable<string[]>
42
- SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
43
- GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
44
- fullParams$: Observable<BaseDotsParams>
45
- fullChartParams$: Observable<ChartParams>
46
- gridAxesTransform$: Observable<TransformData>
47
- gridGraphicTransform$: Observable<TransformData>
48
- gridGraphicReverseScale$: Observable<[number, number][]>
49
- gridAxesSize$: Observable<{
50
- width: number;
51
- height: number;
52
- }>
53
- gridHighlight$: Observable<ComputedDatumGrid[]>
54
- gridContainerPosition$: Observable<GridContainerPosition[]>
55
- event$: Subject<EventGrid>
56
- }
57
-
58
-
59
- type ClipPathDatum = {
60
- id: string;
61
- // x: number;
62
- // y: number;
63
- width: number;
64
- height: number;
65
- }
66
-
67
- // const pluginName = 'Dots'
68
- // const circleGClassName = getClassName(pluginName, 'circleG')
69
- // const circleClassName = getClassName(pluginName, 'circle')
70
-
71
- function renderDots ({ graphicGSelection, circleGClassName, circleClassName, visibleComputedLayoutData, fullParams, fullChartParams, graphicReverseScale }: {
72
- graphicGSelection: d3.Selection<SVGGElement, any, any, any>
73
- circleGClassName: string
74
- circleClassName: string
75
- visibleComputedLayoutData: ComputedLayoutDataGrid
76
- fullParams: BaseDotsParams
77
- fullChartParams: ChartParams
78
- graphicReverseScale: [number, number][]
79
- }) {
80
- const createEnterDuration = (enter: d3.Selection<d3.EnterElement, ComputedDatumGrid, SVGGElement, any>) => {
81
- const enterSize = enter.size()
82
- const eachDuration = fullChartParams.transitionDuration / enterSize
83
- return eachDuration
84
- }
85
- // enterDuration
86
- let enterDuration = 0
87
-
88
- graphicGSelection
89
- .each((seriesData, seriesIndex, g) => {
90
- d3.select(g[seriesIndex])
91
- .selectAll<SVGGElement, ComputedDatumGrid>('g')
92
- .data(visibleComputedLayoutData[seriesIndex], d => d.id)
93
- .join(
94
- enter => {
95
- // enterDuration
96
- enterDuration = createEnterDuration(enter)
97
-
98
- return enter
99
- .append('g')
100
- .classed(circleGClassName, true)
101
- },
102
- update => update,
103
- exit => exit.remove()
104
- )
105
- .attr('transform', d => `translate(${d.axisX}, ${d.axisY})`)
106
- .each((d, i, g) => {
107
- const circle = d3.select(g[i])
108
- .selectAll('circle')
109
- .data([d])
110
- .join(
111
- enter => {
112
- return enter
113
- .append('circle')
114
- .style('cursor', 'pointer')
115
- .style('vector-effect', 'non-scaling-stroke')
116
- .classed(circleClassName, true)
117
- .attr('opacity', 0)
118
- .transition()
119
- .delay((_d, _i) => {
120
- return i * enterDuration
121
- })
122
- .attr('opacity', 1)
123
- },
124
- update => {
125
- return update
126
- .transition()
127
- .duration(50)
128
- // .attr('cx', d => d.axisX)
129
- // .attr('cy', d => d.axisY)
130
- .attr('opacity', 1)
131
- },
132
- exit => exit.remove()
133
- )
134
- .attr('r', fullParams.radius)
135
- .attr('fill', (d, i) => getDatumColor({ datum: d, colorType: fullParams.fillColorType, fullChartParams }))
136
- .attr('stroke', (d, i) => getDatumColor({ datum: d, colorType: fullParams.strokeColorType, fullChartParams }))
137
- .attr('stroke-width', fullParams.strokeWidth)
138
- .attr('transform', `scale(${graphicReverseScale[seriesIndex][0] ?? 1}, ${graphicReverseScale[seriesIndex][1] ?? 1})`)
139
- })
140
- })
141
-
142
- // const dots = graphicGSelection
143
- // .selectAll<SVGGElement, ComputedDatumGrid>('g')
144
- // .data(data, d => d.id)
145
- // .join(
146
- // enter => {
147
- // // enterDuration
148
- // enterDuration = createEnterDuration(enter)
149
-
150
- // return enter
151
- // .append('g')
152
- // .classed(circleGClassName, true)
153
- // },
154
- // update => update,
155
- // exit => exit.remove()
156
- // )
157
- // .attr('transform', d => `translate(${d.axisX}, ${d.axisY})`)
158
- // .each((d, i, g) => {
159
- // const circle = d3.select(g[i])
160
- // .selectAll('circle')
161
- // .data([d])
162
- // .join(
163
- // enter => {
164
- // return enter
165
- // .append('circle')
166
- // .style('cursor', 'pointer')
167
- // .style('vector-effect', 'non-scaling-stroke')
168
- // .classed(circleClassName, true)
169
- // .attr('opacity', 0)
170
- // .transition()
171
- // .delay((_d, _i) => {
172
- // return i * enterDuration
173
- // })
174
- // .attr('opacity', 1)
175
- // },
176
- // update => {
177
- // return update
178
- // .transition()
179
- // .duration(50)
180
- // // .attr('cx', d => d.axisX)
181
- // // .attr('cy', d => d.axisY)
182
- // .attr('opacity', 1)
183
- // },
184
- // exit => exit.remove()
185
- // )
186
- // .attr('r', fullParams.radius)
187
- // .attr('fill', (d, i) => getDatumColor({ datum: d, colorType: fullParams.fillColorType, fullChartParams }))
188
- // .attr('stroke', (d, i) => getDatumColor({ datum: d, colorType: fullParams.strokeColorType, fullChartParams }))
189
- // .attr('stroke-width', fullParams.strokeWidth)
190
- // .attr('transform', `scale(${graphicReverseScale[0]}, ${graphicReverseScale[1]})`)
191
- // })
192
-
193
- const graphicCircleSelection: d3.Selection<SVGRectElement, ComputedDatumGrid, SVGGElement, unknown> = graphicGSelection.selectAll(`circle.${circleClassName}`)
194
-
195
- return graphicCircleSelection
196
- }
197
-
198
-
199
- function highlightDots ({ selection, ids, onlyShowHighlighted, fullChartParams }: {
200
- selection: d3.Selection<SVGGElement, ComputedDatumGrid, any, any>
201
- ids: string[]
202
- onlyShowHighlighted: boolean
203
- // fullParams: BaseDotsParams
204
- fullChartParams: ChartParams
205
- }) {
206
- selection.interrupt('highlight')
207
- if (!ids.length) {
208
- // remove highlight
209
- selection
210
- .transition('highlight')
211
- .duration(200)
212
- .style('opacity', onlyShowHighlighted === true ? 0 : 1)
213
- // selection
214
- // .attr('stroke-width', fullParams.strokeWidth)
215
-
216
- return
217
- }
218
-
219
- selection
220
- .each((d, i, n) => {
221
- if (ids.includes(d.id)) {
222
- const dot = d3.select(n[i])
223
- dot
224
- .style('opacity', 1)
225
- .transition('highlight')
226
- .duration(200)
227
- // dot
228
- // .attr('stroke-width', fullParams.strokeWidthWhileHighlight)
229
- } else {
230
- const dot = d3.select(n[i])
231
- dot
232
- .style('opacity', onlyShowHighlighted === true ? 0 : fullChartParams.styles.unhighlightedOpacity)
233
- .transition('highlight')
234
- .duration(200)
235
- // dot
236
- // .attr('stroke-width', fullParams.strokeWidth)
237
-
238
- }
239
- })
240
- }
241
-
242
- function renderClipPath ({ defsSelection, clipPathData }: {
243
- defsSelection: d3.Selection<SVGDefsElement, any, any, any>
244
- clipPathData: ClipPathDatum[]
245
- }) {
246
- const clipPath = defsSelection
247
- .selectAll<SVGClipPathElement, Layout>('clipPath')
248
- .data(clipPathData)
249
- .join(
250
- enter => {
251
- return enter
252
- .append('clipPath')
253
- },
254
- update => update,
255
- exit => exit.remove()
256
- )
257
- .attr('id', d => d.id)
258
- .each((d, i, g) => {
259
- const rect = d3.select(g[i])
260
- .selectAll<SVGRectElement, typeof d>('rect')
261
- .data([d])
262
- .join('rect')
263
- .attr('x', 0)
264
- .attr('y', 0)
265
- .attr('width', _d => _d.width)
266
- .attr('height', _d => _d.height)
267
- })
268
-
269
- }
270
-
271
-
272
-
273
- export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string, {
274
- selection,
275
- computedData$,
276
- computedLayoutData$,
277
- visibleComputedData$,
278
- visibleComputedLayoutData$,
279
- seriesLabels$,
280
- SeriesDataMap$,
281
- GroupDataMap$,
282
- fullParams$,
283
- fullChartParams$,
284
- gridAxesTransform$,
285
- gridGraphicTransform$,
286
- gridGraphicReverseScale$,
287
- gridAxesSize$,
288
- gridHighlight$,
289
- gridContainerPosition$,
290
- event$
291
- }) => {
292
-
293
- const destroy$ = new Subject()
294
-
295
- const clipPathID = getUniID(pluginName, 'clipPath-box')
296
- const circleGClassName = getClassName(pluginName, 'circleG')
297
- const circleClassName = getClassName(pluginName, 'circle')
298
-
299
- // const axisSelection: d3.Selection<SVGGElement, any, any, any> = selection
300
- // .append('g')
301
- // .attr('clip-path', `url(#${clipPathID})`)
302
- // const defsSelection: d3.Selection<SVGDefsElement, any, any, any> = axisSelection.append('defs')
303
- // const dataAreaSelection: d3.Selection<SVGGElement, any, any, any> = axisSelection.append('g')
304
- // const graphicSelection$: Subject<d3.Selection<SVGGElement, ComputedDatumGrid, any, any>> = new Subject()
305
-
306
- const {
307
- seriesSelection$,
308
- axesSelection$,
309
- defsSelection$,
310
- graphicGSelection$
311
- } = gridSelectionsObservable({
312
- selection,
313
- pluginName,
314
- clipPathID,
315
- seriesLabels$,
316
- gridContainerPosition$,
317
- gridAxesTransform$,
318
- gridGraphicTransform$
319
- })
320
-
321
- const graphicReverseScale$: Observable<[number, number][]> = combineLatest({
322
- // gridGraphicTransform: gridGraphicTransform$,
323
- // gridContainerPosition: gridContainerPosition$,
324
- // gridAxesTransform: gridAxesTransform$
325
- computedData: computedData$,
326
- gridGraphicReverseScale: gridGraphicReverseScale$
327
- }).pipe(
328
- takeUntil(destroy$),
329
- switchMap(async data => data),
330
- map(data => {
331
- return data.computedData.map((series, seriesIndex) => {
332
- return data.gridGraphicReverseScale[seriesIndex]
333
- })
334
- })
335
- )
336
-
337
- const clipPathSubscription = combineLatest({
338
- defsSelection: defsSelection$,
339
- gridAxesSize: gridAxesSize$,
340
- }).pipe(
341
- takeUntil(destroy$),
342
- switchMap(async (d) => d),
343
- ).subscribe(data => {
344
- // 外層的遮罩
345
- const clipPathData = [{
346
- id: clipPathID,
347
- width: data.gridAxesSize.width,
348
- height: data.gridAxesSize.height
349
- }]
350
- renderClipPath({
351
- defsSelection: data.defsSelection,
352
- clipPathData,
353
- })
354
- })
355
-
356
- const highlightTarget$ = fullChartParams$.pipe(
357
- takeUntil(destroy$),
358
- map(d => d.highlightTarget),
359
- distinctUntilChanged()
360
- )
361
-
362
- const graphicSelection$ = combineLatest({
363
- graphicGSelection: graphicGSelection$,
364
- visibleComputedLayoutData: visibleComputedLayoutData$,
365
- graphicReverseScale: graphicReverseScale$,
366
- fullChartParams: fullChartParams$,
367
- fullParams: fullParams$,
368
- }).pipe(
369
- takeUntil(destroy$),
370
- switchMap(async (d) => d),
371
- map(data => {
372
- return renderDots({
373
- graphicGSelection: data.graphicGSelection,
374
- circleGClassName,
375
- circleClassName,
376
- visibleComputedLayoutData: data.visibleComputedLayoutData,
377
- fullParams: data.fullParams,
378
- fullChartParams: data.fullChartParams,
379
- graphicReverseScale: data.graphicReverseScale
380
- })
381
- })
382
- )
383
-
384
- combineLatest({
385
- graphicSelection: graphicSelection$,
386
- computedData: computedData$,
387
- SeriesDataMap: SeriesDataMap$,
388
- GroupDataMap: GroupDataMap$,
389
- highlightTarget: highlightTarget$
390
- }).pipe(
391
- takeUntil(destroy$),
392
- switchMap(async (d) => d),
393
- ).subscribe(data => {
394
-
395
- data.graphicSelection
396
- .on('mouseover', (event, datum) => {
397
- // event.stopPropagation()
398
-
399
- event$.next({
400
- type: 'grid',
401
- eventName: 'mouseover',
402
- pluginName,
403
- highlightTarget: data.highlightTarget,
404
- datum,
405
- gridIndex: datum.gridIndex,
406
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
407
- seriesIndex: datum.seriesIndex,
408
- seriesLabel: datum.seriesLabel,
409
- groups: data.GroupDataMap.get(datum.groupLabel)!,
410
- groupIndex: datum.groupIndex,
411
- groupLabel: datum.groupLabel,
412
- event,
413
- data: data.computedData
414
- })
415
- })
416
- .on('mousemove', (event, datum) => {
417
- // event.stopPropagation()
418
-
419
- event$.next({
420
- type: 'grid',
421
- eventName: 'mousemove',
422
- pluginName,
423
- highlightTarget: data.highlightTarget,
424
- data: data.computedData,
425
- datum,
426
- gridIndex: datum.gridIndex,
427
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
428
- seriesIndex: datum.seriesIndex,
429
- seriesLabel: datum.seriesLabel,
430
- groups: data.GroupDataMap.get(datum.groupLabel)!,
431
- groupIndex: datum.groupIndex,
432
- groupLabel: datum.groupLabel,
433
- event
434
- })
435
- })
436
- .on('mouseout', (event, datum) => {
437
- // event.stopPropagation()
438
-
439
- event$.next({
440
- type: 'grid',
441
- eventName: 'mouseout',
442
- pluginName,
443
- highlightTarget: data.highlightTarget,
444
- datum,
445
- gridIndex: datum.gridIndex,
446
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
447
- seriesIndex: datum.seriesIndex,
448
- seriesLabel: datum.seriesLabel,
449
- groups: data.GroupDataMap.get(datum.groupLabel)!,
450
- groupIndex: datum.groupIndex,
451
- groupLabel: datum.groupLabel,
452
- event,
453
- data: data.computedData
454
- })
455
- })
456
- .on('click', (event, datum) => {
457
- // event.stopPropagation()
458
-
459
- event$.next({
460
- type: 'grid',
461
- eventName: 'click',
462
- pluginName,
463
- highlightTarget: data.highlightTarget,
464
- datum,
465
- gridIndex: datum.gridIndex,
466
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
467
- seriesIndex: datum.seriesIndex,
468
- seriesLabel: datum.seriesLabel,
469
- groups: data.GroupDataMap.get(datum.groupLabel)!,
470
- groupIndex: datum.groupIndex,
471
- groupLabel: datum.groupLabel,
472
- event,
473
- data: data.computedData
474
- })
475
- })
476
-
477
- })
478
-
479
- // const datumList$ = computedData$.pipe(
480
- // takeUntil(destroy$),
481
- // map(d => d.flat())
482
- // )
483
- // const highlight$ = highlightObservable({ datumList$, fullChartParams$, event$: store.event$ })
484
- // const highlightSubscription = gridHighlight$.subscribe()
485
- const onlyShowHighlighted$ = fullParams$.pipe(
486
- takeUntil(destroy$),
487
- map(d => d.onlyShowHighlighted),
488
- distinctUntilChanged()
489
- )
490
-
491
- combineLatest({
492
- graphicSelection: graphicSelection$,
493
- highlight: gridHighlight$.pipe(
494
- map(data => data.map(d => d.id))
495
- ),
496
- onlyShowHighlighted: onlyShowHighlighted$,
497
- // fullParams: fullParams$,
498
- fullChartParams: fullChartParams$
499
- }).pipe(
500
- takeUntil(destroy$),
501
- switchMap(async d => d)
502
- ).subscribe(data => {
503
- highlightDots({
504
- selection: data.graphicSelection,
505
- ids: data.highlight,
506
- onlyShowHighlighted: data.onlyShowHighlighted,
507
- // fullParams: data.fullParams,
508
- fullChartParams: data.fullChartParams
509
- })
510
- })
511
-
512
- return () => {
513
- destroy$.next(undefined)
514
- // highlightSubscription.unsubscribe()
515
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ distinctUntilChanged,
8
+ Observable,
9
+ Subject } from 'rxjs'
10
+ import type { BasePluginFn } from './types'
11
+ import type {
12
+ ComputedDatumGrid,
13
+ ComputedDataGrid,
14
+ ComputedLayoutDataGrid,
15
+ EventGrid,
16
+ ChartParams,
17
+ GridContainerPosition,
18
+ Layout,
19
+ TransformData,
20
+ ColorType
21
+ } from '../../lib/core-types'
22
+ import type { BaseDotsParams } from '../../lib/plugins-basic-types'
23
+ import { getDatumColor, getClassName, getUniID } from '../utils/orbchartsUtils'
24
+ import { gridSelectionsObservable } from '../grid/gridObservables'
25
+
26
+ // export interface BaseDotsParams {
27
+ // radius: number
28
+ // fillColorType: ColorType
29
+ // strokeColorType: ColorType
30
+ // strokeWidth: number
31
+ // // strokeWidthWhileHighlight: number
32
+ // onlyShowHighlighted: boolean
33
+ // }
34
+
35
+ interface BaseDotsContext {
36
+ selection: d3.Selection<any, unknown, any, unknown>
37
+ computedData$: Observable<ComputedDataGrid>
38
+ computedLayoutData$: Observable<ComputedLayoutDataGrid>
39
+ visibleComputedData$: Observable<ComputedDatumGrid[][]>
40
+ visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
41
+ seriesLabels$: Observable<string[]>
42
+ SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
43
+ GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
44
+ fullParams$: Observable<BaseDotsParams>
45
+ fullChartParams$: Observable<ChartParams>
46
+ gridAxesTransform$: Observable<TransformData>
47
+ gridGraphicTransform$: Observable<TransformData>
48
+ gridGraphicReverseScale$: Observable<[number, number][]>
49
+ gridAxesSize$: Observable<{
50
+ width: number;
51
+ height: number;
52
+ }>
53
+ gridHighlight$: Observable<ComputedDatumGrid[]>
54
+ gridContainerPosition$: Observable<GridContainerPosition[]>
55
+ event$: Subject<EventGrid>
56
+ }
57
+
58
+
59
+ type ClipPathDatum = {
60
+ id: string;
61
+ // x: number;
62
+ // y: number;
63
+ width: number;
64
+ height: number;
65
+ }
66
+
67
+ // const pluginName = 'Dots'
68
+ // const circleGClassName = getClassName(pluginName, 'circleG')
69
+ // const circleClassName = getClassName(pluginName, 'circle')
70
+
71
+ function renderDots ({ graphicGSelection, circleGClassName, circleClassName, visibleComputedLayoutData, fullParams, fullChartParams, graphicReverseScale }: {
72
+ graphicGSelection: d3.Selection<SVGGElement, any, any, any>
73
+ circleGClassName: string
74
+ circleClassName: string
75
+ visibleComputedLayoutData: ComputedLayoutDataGrid
76
+ fullParams: BaseDotsParams
77
+ fullChartParams: ChartParams
78
+ graphicReverseScale: [number, number][]
79
+ }) {
80
+ const createEnterDuration = (enter: d3.Selection<d3.EnterElement, ComputedDatumGrid, SVGGElement, any>) => {
81
+ const enterSize = enter.size()
82
+ const eachDuration = fullChartParams.transitionDuration / enterSize
83
+ return eachDuration
84
+ }
85
+ // enterDuration
86
+ let enterDuration = 0
87
+
88
+ graphicGSelection
89
+ .each((seriesData, seriesIndex, g) => {
90
+ d3.select(g[seriesIndex])
91
+ .selectAll<SVGGElement, ComputedDatumGrid>('g')
92
+ .data(visibleComputedLayoutData[seriesIndex], d => d.id)
93
+ .join(
94
+ enter => {
95
+ // enterDuration
96
+ enterDuration = createEnterDuration(enter)
97
+
98
+ return enter
99
+ .append('g')
100
+ .classed(circleGClassName, true)
101
+ },
102
+ update => update,
103
+ exit => exit.remove()
104
+ )
105
+ .attr('transform', d => `translate(${d.axisX}, ${d.axisY})`)
106
+ .each((d, i, g) => {
107
+ const circle = d3.select(g[i])
108
+ .selectAll('circle')
109
+ .data([d])
110
+ .join(
111
+ enter => {
112
+ return enter
113
+ .append('circle')
114
+ .style('cursor', 'pointer')
115
+ .style('vector-effect', 'non-scaling-stroke')
116
+ .classed(circleClassName, true)
117
+ .attr('opacity', 0)
118
+ .transition()
119
+ .delay((_d, _i) => {
120
+ return i * enterDuration
121
+ })
122
+ .attr('opacity', 1)
123
+ },
124
+ update => {
125
+ return update
126
+ .transition()
127
+ .duration(50)
128
+ // .attr('cx', d => d.axisX)
129
+ // .attr('cy', d => d.axisY)
130
+ .attr('opacity', 1)
131
+ },
132
+ exit => exit.remove()
133
+ )
134
+ .attr('r', fullParams.radius)
135
+ .attr('fill', (d, i) => getDatumColor({ datum: d, colorType: fullParams.fillColorType, fullChartParams }))
136
+ .attr('stroke', (d, i) => getDatumColor({ datum: d, colorType: fullParams.strokeColorType, fullChartParams }))
137
+ .attr('stroke-width', fullParams.strokeWidth)
138
+ .attr('transform', `scale(${graphicReverseScale[seriesIndex][0] ?? 1}, ${graphicReverseScale[seriesIndex][1] ?? 1})`)
139
+ })
140
+ })
141
+
142
+ // const dots = graphicGSelection
143
+ // .selectAll<SVGGElement, ComputedDatumGrid>('g')
144
+ // .data(data, d => d.id)
145
+ // .join(
146
+ // enter => {
147
+ // // enterDuration
148
+ // enterDuration = createEnterDuration(enter)
149
+
150
+ // return enter
151
+ // .append('g')
152
+ // .classed(circleGClassName, true)
153
+ // },
154
+ // update => update,
155
+ // exit => exit.remove()
156
+ // )
157
+ // .attr('transform', d => `translate(${d.axisX}, ${d.axisY})`)
158
+ // .each((d, i, g) => {
159
+ // const circle = d3.select(g[i])
160
+ // .selectAll('circle')
161
+ // .data([d])
162
+ // .join(
163
+ // enter => {
164
+ // return enter
165
+ // .append('circle')
166
+ // .style('cursor', 'pointer')
167
+ // .style('vector-effect', 'non-scaling-stroke')
168
+ // .classed(circleClassName, true)
169
+ // .attr('opacity', 0)
170
+ // .transition()
171
+ // .delay((_d, _i) => {
172
+ // return i * enterDuration
173
+ // })
174
+ // .attr('opacity', 1)
175
+ // },
176
+ // update => {
177
+ // return update
178
+ // .transition()
179
+ // .duration(50)
180
+ // // .attr('cx', d => d.axisX)
181
+ // // .attr('cy', d => d.axisY)
182
+ // .attr('opacity', 1)
183
+ // },
184
+ // exit => exit.remove()
185
+ // )
186
+ // .attr('r', fullParams.radius)
187
+ // .attr('fill', (d, i) => getDatumColor({ datum: d, colorType: fullParams.fillColorType, fullChartParams }))
188
+ // .attr('stroke', (d, i) => getDatumColor({ datum: d, colorType: fullParams.strokeColorType, fullChartParams }))
189
+ // .attr('stroke-width', fullParams.strokeWidth)
190
+ // .attr('transform', `scale(${graphicReverseScale[0]}, ${graphicReverseScale[1]})`)
191
+ // })
192
+
193
+ const graphicCircleSelection: d3.Selection<SVGRectElement, ComputedDatumGrid, SVGGElement, unknown> = graphicGSelection.selectAll(`circle.${circleClassName}`)
194
+
195
+ return graphicCircleSelection
196
+ }
197
+
198
+
199
+ function highlightDots ({ selection, ids, onlyShowHighlighted, fullChartParams }: {
200
+ selection: d3.Selection<SVGGElement, ComputedDatumGrid, any, any>
201
+ ids: string[]
202
+ onlyShowHighlighted: boolean
203
+ // fullParams: BaseDotsParams
204
+ fullChartParams: ChartParams
205
+ }) {
206
+ selection.interrupt('highlight')
207
+ if (!ids.length) {
208
+ // remove highlight
209
+ selection
210
+ .transition('highlight')
211
+ .duration(200)
212
+ .style('opacity', onlyShowHighlighted === true ? 0 : 1)
213
+ // selection
214
+ // .attr('stroke-width', fullParams.strokeWidth)
215
+
216
+ return
217
+ }
218
+
219
+ selection
220
+ .each((d, i, n) => {
221
+ if (ids.includes(d.id)) {
222
+ const dot = d3.select(n[i])
223
+ dot
224
+ .style('opacity', 1)
225
+ .transition('highlight')
226
+ .duration(200)
227
+ // dot
228
+ // .attr('stroke-width', fullParams.strokeWidthWhileHighlight)
229
+ } else {
230
+ const dot = d3.select(n[i])
231
+ dot
232
+ .style('opacity', onlyShowHighlighted === true ? 0 : fullChartParams.styles.unhighlightedOpacity)
233
+ .transition('highlight')
234
+ .duration(200)
235
+ // dot
236
+ // .attr('stroke-width', fullParams.strokeWidth)
237
+
238
+ }
239
+ })
240
+ }
241
+
242
+ function renderClipPath ({ defsSelection, clipPathData }: {
243
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
244
+ clipPathData: ClipPathDatum[]
245
+ }) {
246
+ const clipPath = defsSelection
247
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
248
+ .data(clipPathData)
249
+ .join(
250
+ enter => {
251
+ return enter
252
+ .append('clipPath')
253
+ },
254
+ update => update,
255
+ exit => exit.remove()
256
+ )
257
+ .attr('id', d => d.id)
258
+ .each((d, i, g) => {
259
+ const rect = d3.select(g[i])
260
+ .selectAll<SVGRectElement, typeof d>('rect')
261
+ .data([d])
262
+ .join('rect')
263
+ .attr('x', 0)
264
+ .attr('y', 0)
265
+ .attr('width', _d => _d.width)
266
+ .attr('height', _d => _d.height)
267
+ })
268
+
269
+ }
270
+
271
+
272
+
273
+ export const createBaseDots: BasePluginFn<BaseDotsContext> = (pluginName: string, {
274
+ selection,
275
+ computedData$,
276
+ computedLayoutData$,
277
+ visibleComputedData$,
278
+ visibleComputedLayoutData$,
279
+ seriesLabels$,
280
+ SeriesDataMap$,
281
+ GroupDataMap$,
282
+ fullParams$,
283
+ fullChartParams$,
284
+ gridAxesTransform$,
285
+ gridGraphicTransform$,
286
+ gridGraphicReverseScale$,
287
+ gridAxesSize$,
288
+ gridHighlight$,
289
+ gridContainerPosition$,
290
+ event$
291
+ }) => {
292
+
293
+ const destroy$ = new Subject()
294
+
295
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
296
+ const circleGClassName = getClassName(pluginName, 'circleG')
297
+ const circleClassName = getClassName(pluginName, 'circle')
298
+
299
+ // const axisSelection: d3.Selection<SVGGElement, any, any, any> = selection
300
+ // .append('g')
301
+ // .attr('clip-path', `url(#${clipPathID})`)
302
+ // const defsSelection: d3.Selection<SVGDefsElement, any, any, any> = axisSelection.append('defs')
303
+ // const dataAreaSelection: d3.Selection<SVGGElement, any, any, any> = axisSelection.append('g')
304
+ // const graphicSelection$: Subject<d3.Selection<SVGGElement, ComputedDatumGrid, any, any>> = new Subject()
305
+
306
+ const {
307
+ seriesSelection$,
308
+ axesSelection$,
309
+ defsSelection$,
310
+ graphicGSelection$
311
+ } = gridSelectionsObservable({
312
+ selection,
313
+ pluginName,
314
+ clipPathID,
315
+ seriesLabels$,
316
+ gridContainerPosition$,
317
+ gridAxesTransform$,
318
+ gridGraphicTransform$
319
+ })
320
+
321
+ const graphicReverseScale$: Observable<[number, number][]> = combineLatest({
322
+ // gridGraphicTransform: gridGraphicTransform$,
323
+ // gridContainerPosition: gridContainerPosition$,
324
+ // gridAxesTransform: gridAxesTransform$
325
+ computedData: computedData$,
326
+ gridGraphicReverseScale: gridGraphicReverseScale$
327
+ }).pipe(
328
+ takeUntil(destroy$),
329
+ switchMap(async data => data),
330
+ map(data => {
331
+ return data.computedData.map((series, seriesIndex) => {
332
+ return data.gridGraphicReverseScale[seriesIndex]
333
+ })
334
+ })
335
+ )
336
+
337
+ const clipPathSubscription = combineLatest({
338
+ defsSelection: defsSelection$,
339
+ gridAxesSize: gridAxesSize$,
340
+ }).pipe(
341
+ takeUntil(destroy$),
342
+ switchMap(async (d) => d),
343
+ ).subscribe(data => {
344
+ // 外層的遮罩
345
+ const clipPathData = [{
346
+ id: clipPathID,
347
+ width: data.gridAxesSize.width,
348
+ height: data.gridAxesSize.height
349
+ }]
350
+ renderClipPath({
351
+ defsSelection: data.defsSelection,
352
+ clipPathData,
353
+ })
354
+ })
355
+
356
+ const highlightTarget$ = fullChartParams$.pipe(
357
+ takeUntil(destroy$),
358
+ map(d => d.highlightTarget),
359
+ distinctUntilChanged()
360
+ )
361
+
362
+ const graphicSelection$ = combineLatest({
363
+ graphicGSelection: graphicGSelection$,
364
+ visibleComputedLayoutData: visibleComputedLayoutData$,
365
+ graphicReverseScale: graphicReverseScale$,
366
+ fullChartParams: fullChartParams$,
367
+ fullParams: fullParams$,
368
+ }).pipe(
369
+ takeUntil(destroy$),
370
+ switchMap(async (d) => d),
371
+ map(data => {
372
+ return renderDots({
373
+ graphicGSelection: data.graphicGSelection,
374
+ circleGClassName,
375
+ circleClassName,
376
+ visibleComputedLayoutData: data.visibleComputedLayoutData,
377
+ fullParams: data.fullParams,
378
+ fullChartParams: data.fullChartParams,
379
+ graphicReverseScale: data.graphicReverseScale
380
+ })
381
+ })
382
+ )
383
+
384
+ combineLatest({
385
+ graphicSelection: graphicSelection$,
386
+ computedData: computedData$,
387
+ SeriesDataMap: SeriesDataMap$,
388
+ GroupDataMap: GroupDataMap$,
389
+ highlightTarget: highlightTarget$
390
+ }).pipe(
391
+ takeUntil(destroy$),
392
+ switchMap(async (d) => d),
393
+ ).subscribe(data => {
394
+
395
+ data.graphicSelection
396
+ .on('mouseover', (event, datum) => {
397
+ // event.stopPropagation()
398
+
399
+ event$.next({
400
+ type: 'grid',
401
+ eventName: 'mouseover',
402
+ pluginName,
403
+ highlightTarget: data.highlightTarget,
404
+ datum,
405
+ gridIndex: datum.gridIndex,
406
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
407
+ seriesIndex: datum.seriesIndex,
408
+ seriesLabel: datum.seriesLabel,
409
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
410
+ groupIndex: datum.groupIndex,
411
+ groupLabel: datum.groupLabel,
412
+ event,
413
+ data: data.computedData
414
+ })
415
+ })
416
+ .on('mousemove', (event, datum) => {
417
+ // event.stopPropagation()
418
+
419
+ event$.next({
420
+ type: 'grid',
421
+ eventName: 'mousemove',
422
+ pluginName,
423
+ highlightTarget: data.highlightTarget,
424
+ data: data.computedData,
425
+ datum,
426
+ gridIndex: datum.gridIndex,
427
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
428
+ seriesIndex: datum.seriesIndex,
429
+ seriesLabel: datum.seriesLabel,
430
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
431
+ groupIndex: datum.groupIndex,
432
+ groupLabel: datum.groupLabel,
433
+ event
434
+ })
435
+ })
436
+ .on('mouseout', (event, datum) => {
437
+ // event.stopPropagation()
438
+
439
+ event$.next({
440
+ type: 'grid',
441
+ eventName: 'mouseout',
442
+ pluginName,
443
+ highlightTarget: data.highlightTarget,
444
+ datum,
445
+ gridIndex: datum.gridIndex,
446
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
447
+ seriesIndex: datum.seriesIndex,
448
+ seriesLabel: datum.seriesLabel,
449
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
450
+ groupIndex: datum.groupIndex,
451
+ groupLabel: datum.groupLabel,
452
+ event,
453
+ data: data.computedData
454
+ })
455
+ })
456
+ .on('click', (event, datum) => {
457
+ // event.stopPropagation()
458
+
459
+ event$.next({
460
+ type: 'grid',
461
+ eventName: 'click',
462
+ pluginName,
463
+ highlightTarget: data.highlightTarget,
464
+ datum,
465
+ gridIndex: datum.gridIndex,
466
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
467
+ seriesIndex: datum.seriesIndex,
468
+ seriesLabel: datum.seriesLabel,
469
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
470
+ groupIndex: datum.groupIndex,
471
+ groupLabel: datum.groupLabel,
472
+ event,
473
+ data: data.computedData
474
+ })
475
+ })
476
+
477
+ })
478
+
479
+ // const datumList$ = computedData$.pipe(
480
+ // takeUntil(destroy$),
481
+ // map(d => d.flat())
482
+ // )
483
+ // const highlight$ = highlightObservable({ datumList$, fullChartParams$, event$: store.event$ })
484
+ // const highlightSubscription = gridHighlight$.subscribe()
485
+ const onlyShowHighlighted$ = fullParams$.pipe(
486
+ takeUntil(destroy$),
487
+ map(d => d.onlyShowHighlighted),
488
+ distinctUntilChanged()
489
+ )
490
+
491
+ combineLatest({
492
+ graphicSelection: graphicSelection$,
493
+ highlight: gridHighlight$.pipe(
494
+ map(data => data.map(d => d.id))
495
+ ),
496
+ onlyShowHighlighted: onlyShowHighlighted$,
497
+ // fullParams: fullParams$,
498
+ fullChartParams: fullChartParams$
499
+ }).pipe(
500
+ takeUntil(destroy$),
501
+ switchMap(async d => d)
502
+ ).subscribe(data => {
503
+ highlightDots({
504
+ selection: data.graphicSelection,
505
+ ids: data.highlight,
506
+ onlyShowHighlighted: data.onlyShowHighlighted,
507
+ // fullParams: data.fullParams,
508
+ fullChartParams: data.fullChartParams
509
+ })
510
+ })
511
+
512
+ return () => {
513
+ destroy$.next(undefined)
514
+ // highlightSubscription.unsubscribe()
515
+ }
516
516
  }