@orbcharts/plugins-basic 3.0.0-beta.6 → 3.0.0-beta.7

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 (93) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +2 -2
  3. package/dist/orbcharts-plugins-basic.es.js +5001 -4981
  4. package/dist/orbcharts-plugins-basic.umd.js +28 -28
  5. package/lib/core-types.ts +7 -7
  6. package/lib/core.ts +6 -6
  7. package/lib/plugins-basic-types.ts +6 -6
  8. package/package.json +44 -44
  9. package/src/base/BaseBarStack.ts +782 -780
  10. package/src/base/BaseBars.ts +765 -765
  11. package/src/base/BaseBarsTriangle.ts +676 -674
  12. package/src/base/BaseDots.ts +464 -464
  13. package/src/base/BaseGroupAxis.ts +679 -679
  14. package/src/base/BaseLegend.ts +684 -684
  15. package/src/base/BaseLineAreas.ts +629 -629
  16. package/src/base/BaseLines.ts +706 -706
  17. package/src/base/BaseTooltip.ts +385 -385
  18. package/src/base/BaseValueAxis.ts +583 -583
  19. package/src/base/types.ts +2 -2
  20. package/src/const.ts +30 -30
  21. package/src/grid/defaults.ts +246 -244
  22. package/src/grid/gridObservables.ts +554 -554
  23. package/src/grid/index.ts +16 -16
  24. package/src/grid/plugins/BarStack.ts +64 -64
  25. package/src/grid/plugins/Bars.ts +69 -69
  26. package/src/grid/plugins/BarsPN.ts +66 -66
  27. package/src/grid/plugins/BarsTriangle.ts +73 -73
  28. package/src/grid/plugins/Dots.ts +68 -68
  29. package/src/grid/plugins/GridLegend.ts +107 -107
  30. package/src/grid/plugins/GridTooltip.ts +66 -66
  31. package/src/grid/plugins/GridZoom.ts +218 -218
  32. package/src/grid/plugins/GroupAux.ts +1103 -1103
  33. package/src/grid/plugins/GroupAxis.ts +97 -97
  34. package/src/grid/plugins/LineAreas.ts +65 -65
  35. package/src/grid/plugins/Lines.ts +59 -59
  36. package/src/grid/plugins/ValueAxis.ts +94 -94
  37. package/src/grid/plugins/ValueStackAxis.ts +96 -96
  38. package/src/index.ts +10 -10
  39. package/src/multiGrid/defaults.ts +224 -224
  40. package/src/multiGrid/index.ts +14 -14
  41. package/src/multiGrid/multiGridObservables.ts +49 -49
  42. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  43. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  44. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  45. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  46. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  47. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  48. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  49. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  50. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  51. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/MultiValueStackAxis.ts +134 -134
  53. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  54. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +299 -299
  55. package/src/multiValue/defaults.ts +166 -162
  56. package/src/multiValue/index.ts +8 -8
  57. package/src/multiValue/multiValueObservables.ts +297 -258
  58. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  59. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  60. package/src/multiValue/plugins/Scatter.ts +426 -426
  61. package/src/multiValue/plugins/ScatterBubbles.ts +554 -551
  62. package/src/multiValue/plugins/XYAux.ts +681 -681
  63. package/src/multiValue/plugins/XYAxes.ts +684 -676
  64. package/src/multiValue/plugins/XYZoom.ts +299 -299
  65. package/src/noneData/defaults.ts +102 -102
  66. package/src/noneData/index.ts +3 -3
  67. package/src/noneData/plugins/Container.ts +27 -27
  68. package/src/noneData/plugins/Tooltip.ts +373 -373
  69. package/src/series/defaults.ts +206 -206
  70. package/src/series/index.ts +9 -9
  71. package/src/series/plugins/Bubbles.ts +603 -603
  72. package/src/series/plugins/Pie.ts +623 -623
  73. package/src/series/plugins/PieEventTexts.ts +283 -283
  74. package/src/series/plugins/PieLabels.ts +640 -640
  75. package/src/series/plugins/Rose.ts +516 -516
  76. package/src/series/plugins/RoseLabels.ts +600 -600
  77. package/src/series/plugins/SeriesLegend.ts +107 -107
  78. package/src/series/plugins/SeriesTooltip.ts +66 -66
  79. package/src/series/seriesObservables.ts +145 -145
  80. package/src/series/seriesUtils.ts +51 -51
  81. package/src/tree/defaults.ts +78 -78
  82. package/src/tree/index.ts +4 -4
  83. package/src/tree/plugins/TreeLegend.ts +100 -100
  84. package/src/tree/plugins/TreeMap.ts +333 -333
  85. package/src/tree/plugins/TreeTooltip.ts +66 -66
  86. package/src/utils/commonUtils.ts +21 -21
  87. package/src/utils/d3Graphics.ts +174 -174
  88. package/src/utils/d3Utils.ts +74 -74
  89. package/src/utils/observables.ts +14 -14
  90. package/src/utils/orbchartsUtils.ts +116 -101
  91. package/tsconfig.base.json +13 -13
  92. package/tsconfig.json +2 -2
  93. package/vite.config.js +22 -22
@@ -1,555 +1,555 @@
1
- import * as d3 from 'd3'
2
- import {
3
- Observable,
4
- Subject,
5
- of,
6
- takeUntil,
7
- filter,
8
- map,
9
- switchMap,
10
- combineLatest,
11
- merge,
12
- shareReplay,
13
- distinctUntilChanged
14
- } from 'rxjs'
15
- import type {
16
- ChartParams,
17
- HighlightTarget,
18
- DataFormatterGrid,
19
- ComputedDataGrid,
20
- ComputedDatumGrid,
21
- TransformData,
22
- ContainerPositionScaled,
23
- Layout } from '../../lib/core-types'
24
- import { createAxisToLabelIndexScale } from '../../lib/core'
25
- import { getClassName, getUniID } from '../utils/orbchartsUtils'
26
- import { d3EventObservable } from '../utils/observables'
27
-
28
- // 建立 grid 主要的 selection
29
- export const gridSelectionsObservable = ({ selection, pluginName, clipPathID, seriesLabels$, gridContainerPosition$, gridAxesTransform$, gridGraphicTransform$ }: {
30
- selection: d3.Selection<any, unknown, any, unknown>
31
- pluginName: string
32
- clipPathID: string
33
- // computedData$: Observable<ComputedDataGrid>
34
- seriesLabels$: Observable<string[]>
35
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
36
- gridAxesTransform$: Observable<TransformData>
37
- gridGraphicTransform$: Observable<TransformData>
38
- }) => {
39
- const seriesClassName = getClassName(pluginName, 'series')
40
- const axesClassName = getClassName(pluginName, 'axes')
41
- const graphicClassName = getClassName(pluginName, 'graphic')
42
-
43
- // <g> series selection(container排放位置)
44
- // <g> axes selection(旋轉圖軸方向)
45
- // <defs> clipPath selection
46
- // <g> graphic selection(圖形 scale 範圍的變形)
47
- const seriesSelection$ = seriesLabels$.pipe(
48
- map((seriesLabels, i) => {
49
- return selection
50
- .selectAll<SVGGElement, string>(`g.${seriesClassName}`)
51
- .data(seriesLabels, d => d)
52
- .join(
53
- enter => {
54
- return enter
55
- .append('g')
56
- .classed(seriesClassName, true)
57
- .each((d, i, g) => {
58
- const axesSelection = d3.select(g[i])
59
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${axesClassName}`)
60
- .data([i])
61
- .join(
62
- enter => {
63
- return enter
64
- .append('g')
65
- .classed(axesClassName, true)
66
- .attr('clip-path', `url(#${clipPathID})`)
67
- .each((d, i, g) => {
68
- const defsSelection = d3.select(g[i])
69
- .selectAll<SVGDefsElement, any>('defs')
70
- .data([i])
71
- .join('defs')
72
-
73
- const graphicGSelection = d3.select(g[i])
74
- .selectAll<SVGGElement, any>('g')
75
- .data([i])
76
- .join('g')
77
- .classed(graphicClassName, true)
78
- })
79
- },
80
- update => update,
81
- exit => exit.remove()
82
- )
83
- })
84
- },
85
- update => update,
86
- exit => exit.remove()
87
- )
88
- }),
89
- shareReplay(1)
90
- )
91
-
92
- // <g> series selection
93
- combineLatest({
94
- seriesSelection: seriesSelection$,
95
- gridContainerPosition: gridContainerPosition$
96
- }).pipe(
97
- switchMap(async d => d)
98
- ).subscribe(data => {
99
- data.seriesSelection
100
- .transition()
101
- .attr('transform', (d, i) => {
102
- const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
103
- const translate = gridContainerPosition.translate
104
- const scale = gridContainerPosition.scale
105
- return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
106
- })
107
- })
108
-
109
- // <g> axes selection
110
- const axesSelection$ = combineLatest({
111
- seriesSelection: seriesSelection$,
112
- gridAxesTransform: gridAxesTransform$
113
- }).pipe(
114
- switchMap(async d => d),
115
- map(data => {
116
- return data.seriesSelection
117
- .select<SVGGElement>(`g.${axesClassName}`)
118
- .style('transform', data.gridAxesTransform.value)
119
- }),
120
- shareReplay(1)
121
- )
122
-
123
- // <defs> clipPath selection
124
- const defsSelection$ = axesSelection$.pipe(
125
- map(axesSelection => {
126
- return axesSelection.select<SVGDefsElement>('defs')
127
- }),
128
- shareReplay(1)
129
- )
130
-
131
- // <g> graphic selection
132
- const graphicGSelection$ = combineLatest({
133
- axesSelection: axesSelection$,
134
- gridGraphicTransform: gridGraphicTransform$
135
- }).pipe(
136
- switchMap(async d => d),
137
- map(data => {
138
- const graphicGSelection = data.axesSelection
139
- .select<SVGGElement>(`g.${graphicClassName}`)
140
- graphicGSelection
141
- .transition()
142
- .duration(50)
143
- .style('transform', data.gridGraphicTransform.value)
144
- return graphicGSelection
145
- }),
146
- shareReplay(1)
147
- )
148
-
149
- return {
150
- seriesSelection$,
151
- axesSelection$,
152
- defsSelection$,
153
- graphicGSelection$
154
- }
155
- }
156
-
157
- // 由事件取得group data的function
158
- export const gridGroupPositionFnObservable = ({ fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
159
- fullDataFormatter$: Observable<DataFormatterGrid>
160
- gridAxesSize$: Observable<{
161
- width: number;
162
- height: number;
163
- }>
164
- computedData$: Observable<ComputedDataGrid>
165
- // GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
166
- fullChartParams$: Observable<ChartParams>
167
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
168
- layout$: Observable<Layout>
169
- }): Observable<(event: any) => { groupIndex: number; groupLabel: string }> => {
170
- const destroy$ = new Subject()
171
-
172
- // 顯示範圍內的group labels
173
- // const scaleRangeGroupLabels$: Observable<string[]> = new Observable(subscriber => {
174
- // combineLatest({
175
- // dataFormatter: fullDataFormatter$,
176
- // computedData: computedData$
177
- // }).pipe(
178
- // takeUntil(destroy$),
179
- // switchMap(async (d) => d),
180
- // ).subscribe(data => {
181
- // const groupMin = 0
182
- // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
183
- // const groupScaleDomainMin = data.dataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
184
- // ? groupMin - data.dataFormatter.grid.groupAxis.scalePadding
185
- // : data.dataFormatter.grid.groupAxis.scaleDomain[0] as number - data.dataFormatter.grid.groupAxis.scalePadding
186
- // const groupScaleDomainMax = data.dataFormatter.grid.groupAxis.scaleDomain[1] === 'auto'
187
- // ? groupMax + data.dataFormatter.grid.groupAxis.scalePadding
188
- // : data.dataFormatter.grid.groupAxis.scaleDomain[1] as number + data.dataFormatter.grid.groupAxis.scalePadding
189
-
190
- // // const groupingAmount = data.computedData[0]
191
- // // ? data.computedData[0].length
192
- // // : 0
193
-
194
- // let _labels = data.dataFormatter.grid.seriesDirection === 'row'
195
- // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
196
- // : data.computedData.map(d => d[0].groupLabel)
197
-
198
- // const _axisLabels =
199
- // // new Array(groupingAmount).fill(0)
200
- // // .map((d, i) => {
201
- // // return _labels[i] != null
202
- // // ? _labels[i]
203
- // // : String(i) // 沒有label則用序列號填充
204
- // // })
205
- // _labels
206
- // .filter((d, i) => {
207
- // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
208
- // })
209
- // subscriber.next(_axisLabels)
210
- // })
211
- // })
212
- const groupScaleDomain$ = combineLatest({
213
- fullDataFormatter: fullDataFormatter$,
214
- gridAxesSize: gridAxesSize$,
215
- computedData: computedData$
216
- }).pipe(
217
- switchMap(async (d) => d),
218
- map(data => {
219
- const groupMin = 0
220
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
221
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
222
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
223
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
224
- const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
225
- const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
226
- ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
227
- : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
228
-
229
- return [groupScaleDomainMin, groupScaleDomainMax]
230
- }),
231
- shareReplay(1)
232
- )
233
-
234
- const groupLabels$ = combineLatest({
235
- fullDataFormatter: fullDataFormatter$,
236
- computedData: computedData$
237
- }).pipe(
238
- switchMap(async d => d),
239
- map(data => {
240
- return data.fullDataFormatter.grid.seriesDirection === 'row'
241
- ? (data.computedData[0] ?? []).map(d => d.groupLabel)
242
- : data.computedData.map(d => d[0].groupLabel)
243
- })
244
- )
245
-
246
- // 顯示範圍內的group labels
247
- const scaleRangeGroupLabels$ = combineLatest({
248
- groupScaleDomain: groupScaleDomain$,
249
- groupLabels: groupLabels$
250
- }).pipe(
251
- switchMap(async d => d),
252
- map(data => {
253
- return data.groupLabels
254
- .filter((d, i) => {
255
- return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
256
- })
257
- })
258
- )
259
-
260
- const columnAmount$ = gridContainerPosition$.pipe(
261
- map(gridContainerPosition => {
262
- const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
263
- return current.columnIndex > acc ? current.columnIndex : acc
264
- }, 0)
265
- return maxColumnIndex + 1
266
- }),
267
- distinctUntilChanged()
268
- )
269
-
270
- const rowAmount$ = gridContainerPosition$.pipe(
271
- map(gridContainerPosition => {
272
- const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
273
- return current.rowIndex > acc ? current.rowIndex : acc
274
- }, 0)
275
- return maxRowIndex + 1
276
- }),
277
- distinctUntilChanged()
278
- )
279
-
280
- return new Observable<(event: any) => { groupIndex: number; groupLabel: string }>(subscriber => {
281
- combineLatest({
282
- dataFormatter: fullDataFormatter$,
283
- axisSize: gridAxesSize$,
284
- fullChartParams: fullChartParams$,
285
- scaleRangeGroupLabels: scaleRangeGroupLabels$,
286
- groupLabels: groupLabels$,
287
- groupScaleDomain: groupScaleDomain$,
288
- columnAmount: columnAmount$,
289
- rowAmount: rowAmount$,
290
- layout: layout$
291
- }).pipe(
292
- takeUntil(destroy$),
293
- switchMap(async (d) => d),
294
- ).subscribe(data => {
295
-
296
- const reverse = data.dataFormatter.grid.valueAxis.position === 'right'
297
- || data.dataFormatter.grid.valueAxis.position === 'bottom'
298
- ? true : false
299
-
300
- // 比例尺座標對應非連續資料索引
301
- const xIndexScale = createAxisToLabelIndexScale({
302
- axisLabels: data.scaleRangeGroupLabels,
303
- axisWidth: data.axisSize.width,
304
- padding: data.dataFormatter.grid.groupAxis.scalePadding,
305
- reverse
306
- })
307
-
308
- // 依比例尺位置計算座標
309
- const axisValuePredicate = (event: any) => {
310
- return data.dataFormatter.grid.groupAxis.position === 'bottom'
311
- || data.dataFormatter.grid.groupAxis.position === 'top'
312
- ? event.offsetX - data.fullChartParams.padding.left
313
- : event.offsetY - data.fullChartParams.padding.top
314
- }
315
-
316
- // 比例尺座標取得groupData的function
317
- const createEventGroupData: (event: MouseEvent) => { groupIndex: number; groupLabel: string } = (event: any) => {
318
- // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
319
- const eventData = {
320
- offsetX: event.offsetX * data.columnAmount % data.layout.rootWidth,
321
- offsetY: event.offsetY * data.rowAmount % data.layout.rootHeight
322
- }
323
- // console.log('data.columnAmount', data.columnAmount, 'data.rowAmount', data.rowAmount, 'data.layout.rootWidth', data.layout.rootWidth, 'data.layout.rootHeight', data.layout.rootHeight)
324
- const axisValue = axisValuePredicate(eventData)
325
- const xIndex = xIndexScale(axisValue)
326
- const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
327
- const groupIndex = xIndex + currentxIndexStart
328
-
329
- return {
330
- groupIndex,
331
- groupLabel: data.groupLabels[groupIndex] ?? ''
332
- }
333
- }
334
-
335
- subscriber.next(createEventGroupData)
336
-
337
- return function unsubscribe () {
338
- destroy$.next(undefined)
339
- }
340
- })
341
- })
342
- }
343
-
344
- export const gridGroupPositionObservable = ({ rootSelection, fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
345
- rootSelection: d3.Selection<any, unknown, any, unknown>
346
- fullDataFormatter$: Observable<DataFormatterGrid>
347
- gridAxesSize$: Observable<{
348
- width: number;
349
- height: number;
350
- }>
351
- computedData$: Observable<ComputedDataGrid>
352
- fullChartParams$: Observable<ChartParams>
353
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
354
- layout$: Observable<Layout>
355
- }) => {
356
- const rootMousemove$ = d3EventObservable(rootSelection, 'mousemove')
357
-
358
- const groupScaleDomain$ = combineLatest({
359
- fullDataFormatter: fullDataFormatter$,
360
- gridAxesSize: gridAxesSize$,
361
- computedData: computedData$
362
- }).pipe(
363
- switchMap(async (d) => d),
364
- map(data => {
365
- const groupMin = 0
366
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
367
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
368
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
369
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
370
- const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
371
- const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
372
- ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
373
- : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
374
-
375
- return [groupScaleDomainMin, groupScaleDomainMax]
376
- }),
377
- shareReplay(1)
378
- )
379
-
380
- const groupLabels$ = combineLatest({
381
- fullDataFormatter: fullDataFormatter$,
382
- computedData: computedData$
383
- }).pipe(
384
- switchMap(async d => d),
385
- map(data => {
386
- return data.fullDataFormatter.grid.seriesDirection === 'row'
387
- ? (data.computedData[0] ?? []).map(d => d.groupLabel)
388
- : data.computedData.map(d => d[0].groupLabel)
389
- })
390
- )
391
-
392
- const scaleRangeGroupLabels$ = combineLatest({
393
- groupScaleDomain: groupScaleDomain$,
394
- groupLabels: groupLabels$
395
- }).pipe(
396
- switchMap(async d => d),
397
- map(data => {
398
- return data.groupLabels
399
- .filter((d, i) => {
400
- return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
401
- })
402
- })
403
- )
404
-
405
- const reverse$ = fullDataFormatter$.pipe(
406
- map(d => {
407
- return d.grid.valueAxis.position === 'right' || d.grid.valueAxis.position === 'bottom'
408
- ? true
409
- : false
410
- })
411
- )
412
-
413
- // 比例尺座標對應非連續資料索引
414
- const xIndexScale$ = combineLatest({
415
- reverse: reverse$,
416
- gridAxesSize: gridAxesSize$,
417
- scaleRangeGroupLabels: scaleRangeGroupLabels$,
418
- fullDataFormatter: fullDataFormatter$
419
- }).pipe(
420
- switchMap(async d => d),
421
- map(data => {
422
- return createAxisToLabelIndexScale({
423
- axisLabels: data.scaleRangeGroupLabels,
424
- axisWidth: data.gridAxesSize.width,
425
- padding: data.fullDataFormatter.grid.groupAxis.scalePadding,
426
- reverse: data.reverse
427
- })
428
- })
429
- )
430
-
431
- const columnAmount$ = gridContainerPosition$.pipe(
432
- map(gridContainerPosition => {
433
- const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
434
- return current.columnIndex > acc ? current.columnIndex : acc
435
- }, 0)
436
- return maxColumnIndex + 1
437
- }),
438
- distinctUntilChanged()
439
- )
440
-
441
- const rowAmount$ = gridContainerPosition$.pipe(
442
- map(gridContainerPosition => {
443
- const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
444
- return current.rowIndex > acc ? current.rowIndex : acc
445
- }, 0)
446
- return maxRowIndex + 1
447
- }),
448
- distinctUntilChanged()
449
- )
450
-
451
- const axisValue$ = combineLatest({
452
- fullDataFormatter: fullDataFormatter$,
453
- fullChartParams: fullChartParams$,
454
- rootMousemove: rootMousemove$,
455
- columnAmount: columnAmount$,
456
- rowAmount: rowAmount$,
457
- layout: layout$
458
- }).pipe(
459
- switchMap(async d => d),
460
- map(data => {
461
- // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
462
- const eventData = {
463
- offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
464
- offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
465
- }
466
- return data.fullDataFormatter.grid.groupAxis.position === 'bottom'
467
- || data.fullDataFormatter.grid.groupAxis.position === 'top'
468
- ? eventData.offsetX - data.fullChartParams.padding.left
469
- : eventData.offsetY - data.fullChartParams.padding.top
470
- })
471
- )
472
-
473
- const groupIndex$ = combineLatest({
474
- xIndexScale: xIndexScale$,
475
- axisValue: axisValue$,
476
- groupScaleDomain: groupScaleDomain$
477
- }).pipe(
478
- switchMap(async d => d),
479
- map(data => {
480
- const xIndex = data.xIndexScale(data.axisValue)
481
- const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
482
- return xIndex + currentxIndexStart
483
- })
484
- )
485
-
486
- const groupLabel$ = combineLatest({
487
- groupIndex: groupIndex$,
488
- groupLabels: groupLabels$
489
- }).pipe(
490
- switchMap(async d => d),
491
- map(data => {
492
- return data.groupLabels[data.groupIndex] ?? ''
493
- })
494
- )
495
-
496
- return combineLatest({
497
- groupIndex: groupIndex$,
498
- groupLabel: groupLabel$
499
- }).pipe(
500
- switchMap(async d => d),
501
- map(data => {
502
- return {
503
- groupIndex: data.groupIndex,
504
- groupLabel: data.groupLabel
505
- }
506
- })
507
- )
508
- }
509
-
510
- // const gridContainerEventData$ = ({ eventData$, gridContainerPosition$, layout$ }: {
511
- // eventData$: Observable<any>
512
- // gridContainerPosition$: Observable<ContainerPositionScaled[]>
513
- // layout$: Observable<Layout>
514
- // }): Observable<{
515
- // offsetX: number;
516
- // offsetY: number;
517
- // }> => {
518
- // const columnAmount$ = gridContainerPosition$.pipe(
519
- // map(gridContainerPosition => {
520
- // const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
521
- // return current.columnIndex > acc ? current.columnIndex : acc
522
- // }, 0)
523
- // return maxColumnIndex + 1
524
- // }),
525
- // distinctUntilChanged()
526
- // )
527
-
528
- // const rowAmount$ = gridContainerPosition$.pipe(
529
- // map(gridContainerPosition => {
530
- // const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
531
- // return current.rowIndex > acc ? current.rowIndex : acc
532
- // }, 0)
533
- // return maxRowIndex + 1
534
- // }),
535
- // distinctUntilChanged()
536
- // )
537
-
538
- // return combineLatest({
539
- // eventData: eventData$,
540
- // gridContainerPosition: gridContainerPosition$,
541
- // layout: layout$,
542
- // columnAmount: columnAmount$,
543
- // rowAmount: rowAmount$
544
- // }).pipe(
545
- // switchMap(async d => d),
546
- // map(data => {
547
- // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
548
- // const eventData = {
549
- // offsetX: data.eventData.offsetX * data.columnAmount % data.layout.rootWidth,
550
- // offsetY: data.eventData.offsetY * data.rowAmount % data.layout.rootHeight
551
- // }
552
- // return eventData
553
- // })
554
- // )
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Observable,
4
+ Subject,
5
+ of,
6
+ takeUntil,
7
+ filter,
8
+ map,
9
+ switchMap,
10
+ combineLatest,
11
+ merge,
12
+ shareReplay,
13
+ distinctUntilChanged
14
+ } from 'rxjs'
15
+ import type {
16
+ ChartParams,
17
+ HighlightTarget,
18
+ DataFormatterGrid,
19
+ ComputedDataGrid,
20
+ ComputedDatumGrid,
21
+ TransformData,
22
+ ContainerPositionScaled,
23
+ Layout } from '../../lib/core-types'
24
+ import { createAxisToLabelIndexScale } from '../../lib/core'
25
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
26
+ import { d3EventObservable } from '../utils/observables'
27
+
28
+ // 建立 grid 主要的 selection
29
+ export const gridSelectionsObservable = ({ selection, pluginName, clipPathID, seriesLabels$, gridContainerPosition$, gridAxesTransform$, gridGraphicTransform$ }: {
30
+ selection: d3.Selection<any, unknown, any, unknown>
31
+ pluginName: string
32
+ clipPathID: string
33
+ // computedData$: Observable<ComputedDataGrid>
34
+ seriesLabels$: Observable<string[]>
35
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
36
+ gridAxesTransform$: Observable<TransformData>
37
+ gridGraphicTransform$: Observable<TransformData>
38
+ }) => {
39
+ const seriesClassName = getClassName(pluginName, 'series')
40
+ const axesClassName = getClassName(pluginName, 'axes')
41
+ const graphicClassName = getClassName(pluginName, 'graphic')
42
+
43
+ // <g> series selection(container排放位置)
44
+ // <g> axes selection(旋轉圖軸方向)
45
+ // <defs> clipPath selection
46
+ // <g> graphic selection(圖形 scale 範圍的變形)
47
+ const seriesSelection$ = seriesLabels$.pipe(
48
+ map((seriesLabels, i) => {
49
+ return selection
50
+ .selectAll<SVGGElement, string>(`g.${seriesClassName}`)
51
+ .data(seriesLabels, d => d)
52
+ .join(
53
+ enter => {
54
+ return enter
55
+ .append('g')
56
+ .classed(seriesClassName, true)
57
+ .each((d, i, g) => {
58
+ const axesSelection = d3.select(g[i])
59
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${axesClassName}`)
60
+ .data([i])
61
+ .join(
62
+ enter => {
63
+ return enter
64
+ .append('g')
65
+ .classed(axesClassName, true)
66
+ .attr('clip-path', `url(#${clipPathID})`)
67
+ .each((d, i, g) => {
68
+ const defsSelection = d3.select(g[i])
69
+ .selectAll<SVGDefsElement, any>('defs')
70
+ .data([i])
71
+ .join('defs')
72
+
73
+ const graphicGSelection = d3.select(g[i])
74
+ .selectAll<SVGGElement, any>('g')
75
+ .data([i])
76
+ .join('g')
77
+ .classed(graphicClassName, true)
78
+ })
79
+ },
80
+ update => update,
81
+ exit => exit.remove()
82
+ )
83
+ })
84
+ },
85
+ update => update,
86
+ exit => exit.remove()
87
+ )
88
+ }),
89
+ shareReplay(1)
90
+ )
91
+
92
+ // <g> series selection
93
+ combineLatest({
94
+ seriesSelection: seriesSelection$,
95
+ gridContainerPosition: gridContainerPosition$
96
+ }).pipe(
97
+ switchMap(async d => d)
98
+ ).subscribe(data => {
99
+ data.seriesSelection
100
+ .transition()
101
+ .attr('transform', (d, i) => {
102
+ const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
103
+ const translate = gridContainerPosition.translate
104
+ const scale = gridContainerPosition.scale
105
+ return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
106
+ })
107
+ })
108
+
109
+ // <g> axes selection
110
+ const axesSelection$ = combineLatest({
111
+ seriesSelection: seriesSelection$,
112
+ gridAxesTransform: gridAxesTransform$
113
+ }).pipe(
114
+ switchMap(async d => d),
115
+ map(data => {
116
+ return data.seriesSelection
117
+ .select<SVGGElement>(`g.${axesClassName}`)
118
+ .style('transform', data.gridAxesTransform.value)
119
+ }),
120
+ shareReplay(1)
121
+ )
122
+
123
+ // <defs> clipPath selection
124
+ const defsSelection$ = axesSelection$.pipe(
125
+ map(axesSelection => {
126
+ return axesSelection.select<SVGDefsElement>('defs')
127
+ }),
128
+ shareReplay(1)
129
+ )
130
+
131
+ // <g> graphic selection
132
+ const graphicGSelection$ = combineLatest({
133
+ axesSelection: axesSelection$,
134
+ gridGraphicTransform: gridGraphicTransform$
135
+ }).pipe(
136
+ switchMap(async d => d),
137
+ map(data => {
138
+ const graphicGSelection = data.axesSelection
139
+ .select<SVGGElement>(`g.${graphicClassName}`)
140
+ graphicGSelection
141
+ .transition()
142
+ .duration(50)
143
+ .style('transform', data.gridGraphicTransform.value)
144
+ return graphicGSelection
145
+ }),
146
+ shareReplay(1)
147
+ )
148
+
149
+ return {
150
+ seriesSelection$,
151
+ axesSelection$,
152
+ defsSelection$,
153
+ graphicGSelection$
154
+ }
155
+ }
156
+
157
+ // 由事件取得group data的function
158
+ export const gridGroupPositionFnObservable = ({ fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
159
+ fullDataFormatter$: Observable<DataFormatterGrid>
160
+ gridAxesSize$: Observable<{
161
+ width: number;
162
+ height: number;
163
+ }>
164
+ computedData$: Observable<ComputedDataGrid>
165
+ // GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
166
+ fullChartParams$: Observable<ChartParams>
167
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
168
+ layout$: Observable<Layout>
169
+ }): Observable<(event: any) => { groupIndex: number; groupLabel: string }> => {
170
+ const destroy$ = new Subject()
171
+
172
+ // 顯示範圍內的group labels
173
+ // const scaleRangeGroupLabels$: Observable<string[]> = new Observable(subscriber => {
174
+ // combineLatest({
175
+ // dataFormatter: fullDataFormatter$,
176
+ // computedData: computedData$
177
+ // }).pipe(
178
+ // takeUntil(destroy$),
179
+ // switchMap(async (d) => d),
180
+ // ).subscribe(data => {
181
+ // const groupMin = 0
182
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
183
+ // const groupScaleDomainMin = data.dataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
184
+ // ? groupMin - data.dataFormatter.grid.groupAxis.scalePadding
185
+ // : data.dataFormatter.grid.groupAxis.scaleDomain[0] as number - data.dataFormatter.grid.groupAxis.scalePadding
186
+ // const groupScaleDomainMax = data.dataFormatter.grid.groupAxis.scaleDomain[1] === 'auto'
187
+ // ? groupMax + data.dataFormatter.grid.groupAxis.scalePadding
188
+ // : data.dataFormatter.grid.groupAxis.scaleDomain[1] as number + data.dataFormatter.grid.groupAxis.scalePadding
189
+
190
+ // // const groupingAmount = data.computedData[0]
191
+ // // ? data.computedData[0].length
192
+ // // : 0
193
+
194
+ // let _labels = data.dataFormatter.grid.seriesDirection === 'row'
195
+ // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
196
+ // : data.computedData.map(d => d[0].groupLabel)
197
+
198
+ // const _axisLabels =
199
+ // // new Array(groupingAmount).fill(0)
200
+ // // .map((d, i) => {
201
+ // // return _labels[i] != null
202
+ // // ? _labels[i]
203
+ // // : String(i) // 沒有label則用序列號填充
204
+ // // })
205
+ // _labels
206
+ // .filter((d, i) => {
207
+ // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
208
+ // })
209
+ // subscriber.next(_axisLabels)
210
+ // })
211
+ // })
212
+ const groupScaleDomain$ = combineLatest({
213
+ fullDataFormatter: fullDataFormatter$,
214
+ gridAxesSize: gridAxesSize$,
215
+ computedData: computedData$
216
+ }).pipe(
217
+ switchMap(async (d) => d),
218
+ map(data => {
219
+ const groupMin = 0
220
+ const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
221
+ // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
222
+ // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
223
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
224
+ const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
225
+ const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
226
+ ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
227
+ : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
228
+
229
+ return [groupScaleDomainMin, groupScaleDomainMax]
230
+ }),
231
+ shareReplay(1)
232
+ )
233
+
234
+ const groupLabels$ = combineLatest({
235
+ fullDataFormatter: fullDataFormatter$,
236
+ computedData: computedData$
237
+ }).pipe(
238
+ switchMap(async d => d),
239
+ map(data => {
240
+ return data.fullDataFormatter.grid.seriesDirection === 'row'
241
+ ? (data.computedData[0] ?? []).map(d => d.groupLabel)
242
+ : data.computedData.map(d => d[0].groupLabel)
243
+ })
244
+ )
245
+
246
+ // 顯示範圍內的group labels
247
+ const scaleRangeGroupLabels$ = combineLatest({
248
+ groupScaleDomain: groupScaleDomain$,
249
+ groupLabels: groupLabels$
250
+ }).pipe(
251
+ switchMap(async d => d),
252
+ map(data => {
253
+ return data.groupLabels
254
+ .filter((d, i) => {
255
+ return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
256
+ })
257
+ })
258
+ )
259
+
260
+ const columnAmount$ = gridContainerPosition$.pipe(
261
+ map(gridContainerPosition => {
262
+ const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
263
+ return current.columnIndex > acc ? current.columnIndex : acc
264
+ }, 0)
265
+ return maxColumnIndex + 1
266
+ }),
267
+ distinctUntilChanged()
268
+ )
269
+
270
+ const rowAmount$ = gridContainerPosition$.pipe(
271
+ map(gridContainerPosition => {
272
+ const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
273
+ return current.rowIndex > acc ? current.rowIndex : acc
274
+ }, 0)
275
+ return maxRowIndex + 1
276
+ }),
277
+ distinctUntilChanged()
278
+ )
279
+
280
+ return new Observable<(event: any) => { groupIndex: number; groupLabel: string }>(subscriber => {
281
+ combineLatest({
282
+ dataFormatter: fullDataFormatter$,
283
+ axisSize: gridAxesSize$,
284
+ fullChartParams: fullChartParams$,
285
+ scaleRangeGroupLabels: scaleRangeGroupLabels$,
286
+ groupLabels: groupLabels$,
287
+ groupScaleDomain: groupScaleDomain$,
288
+ columnAmount: columnAmount$,
289
+ rowAmount: rowAmount$,
290
+ layout: layout$
291
+ }).pipe(
292
+ takeUntil(destroy$),
293
+ switchMap(async (d) => d),
294
+ ).subscribe(data => {
295
+
296
+ const reverse = data.dataFormatter.grid.valueAxis.position === 'right'
297
+ || data.dataFormatter.grid.valueAxis.position === 'bottom'
298
+ ? true : false
299
+
300
+ // 比例尺座標對應非連續資料索引
301
+ const xIndexScale = createAxisToLabelIndexScale({
302
+ axisLabels: data.scaleRangeGroupLabels,
303
+ axisWidth: data.axisSize.width,
304
+ padding: data.dataFormatter.grid.groupAxis.scalePadding,
305
+ reverse
306
+ })
307
+
308
+ // 依比例尺位置計算座標
309
+ const axisValuePredicate = (event: any) => {
310
+ return data.dataFormatter.grid.groupAxis.position === 'bottom'
311
+ || data.dataFormatter.grid.groupAxis.position === 'top'
312
+ ? event.offsetX - data.fullChartParams.padding.left
313
+ : event.offsetY - data.fullChartParams.padding.top
314
+ }
315
+
316
+ // 比例尺座標取得groupData的function
317
+ const createEventGroupData: (event: MouseEvent) => { groupIndex: number; groupLabel: string } = (event: any) => {
318
+ // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
319
+ const eventData = {
320
+ offsetX: event.offsetX * data.columnAmount % data.layout.rootWidth,
321
+ offsetY: event.offsetY * data.rowAmount % data.layout.rootHeight
322
+ }
323
+ // console.log('data.columnAmount', data.columnAmount, 'data.rowAmount', data.rowAmount, 'data.layout.rootWidth', data.layout.rootWidth, 'data.layout.rootHeight', data.layout.rootHeight)
324
+ const axisValue = axisValuePredicate(eventData)
325
+ const xIndex = xIndexScale(axisValue)
326
+ const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
327
+ const groupIndex = xIndex + currentxIndexStart
328
+
329
+ return {
330
+ groupIndex,
331
+ groupLabel: data.groupLabels[groupIndex] ?? ''
332
+ }
333
+ }
334
+
335
+ subscriber.next(createEventGroupData)
336
+
337
+ return function unsubscribe () {
338
+ destroy$.next(undefined)
339
+ }
340
+ })
341
+ })
342
+ }
343
+
344
+ export const gridGroupPositionObservable = ({ rootSelection, fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
345
+ rootSelection: d3.Selection<any, unknown, any, unknown>
346
+ fullDataFormatter$: Observable<DataFormatterGrid>
347
+ gridAxesSize$: Observable<{
348
+ width: number;
349
+ height: number;
350
+ }>
351
+ computedData$: Observable<ComputedDataGrid>
352
+ fullChartParams$: Observable<ChartParams>
353
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
354
+ layout$: Observable<Layout>
355
+ }) => {
356
+ const rootMousemove$ = d3EventObservable(rootSelection, 'mousemove')
357
+
358
+ const groupScaleDomain$ = combineLatest({
359
+ fullDataFormatter: fullDataFormatter$,
360
+ gridAxesSize: gridAxesSize$,
361
+ computedData: computedData$
362
+ }).pipe(
363
+ switchMap(async (d) => d),
364
+ map(data => {
365
+ const groupMin = 0
366
+ const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
367
+ // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
368
+ // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
369
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
370
+ const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
371
+ const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
372
+ ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
373
+ : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
374
+
375
+ return [groupScaleDomainMin, groupScaleDomainMax]
376
+ }),
377
+ shareReplay(1)
378
+ )
379
+
380
+ const groupLabels$ = combineLatest({
381
+ fullDataFormatter: fullDataFormatter$,
382
+ computedData: computedData$
383
+ }).pipe(
384
+ switchMap(async d => d),
385
+ map(data => {
386
+ return data.fullDataFormatter.grid.seriesDirection === 'row'
387
+ ? (data.computedData[0] ?? []).map(d => d.groupLabel)
388
+ : data.computedData.map(d => d[0].groupLabel)
389
+ })
390
+ )
391
+
392
+ const scaleRangeGroupLabels$ = combineLatest({
393
+ groupScaleDomain: groupScaleDomain$,
394
+ groupLabels: groupLabels$
395
+ }).pipe(
396
+ switchMap(async d => d),
397
+ map(data => {
398
+ return data.groupLabels
399
+ .filter((d, i) => {
400
+ return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
401
+ })
402
+ })
403
+ )
404
+
405
+ const reverse$ = fullDataFormatter$.pipe(
406
+ map(d => {
407
+ return d.grid.valueAxis.position === 'right' || d.grid.valueAxis.position === 'bottom'
408
+ ? true
409
+ : false
410
+ })
411
+ )
412
+
413
+ // 比例尺座標對應非連續資料索引
414
+ const xIndexScale$ = combineLatest({
415
+ reverse: reverse$,
416
+ gridAxesSize: gridAxesSize$,
417
+ scaleRangeGroupLabels: scaleRangeGroupLabels$,
418
+ fullDataFormatter: fullDataFormatter$
419
+ }).pipe(
420
+ switchMap(async d => d),
421
+ map(data => {
422
+ return createAxisToLabelIndexScale({
423
+ axisLabels: data.scaleRangeGroupLabels,
424
+ axisWidth: data.gridAxesSize.width,
425
+ padding: data.fullDataFormatter.grid.groupAxis.scalePadding,
426
+ reverse: data.reverse
427
+ })
428
+ })
429
+ )
430
+
431
+ const columnAmount$ = gridContainerPosition$.pipe(
432
+ map(gridContainerPosition => {
433
+ const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
434
+ return current.columnIndex > acc ? current.columnIndex : acc
435
+ }, 0)
436
+ return maxColumnIndex + 1
437
+ }),
438
+ distinctUntilChanged()
439
+ )
440
+
441
+ const rowAmount$ = gridContainerPosition$.pipe(
442
+ map(gridContainerPosition => {
443
+ const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
444
+ return current.rowIndex > acc ? current.rowIndex : acc
445
+ }, 0)
446
+ return maxRowIndex + 1
447
+ }),
448
+ distinctUntilChanged()
449
+ )
450
+
451
+ const axisValue$ = combineLatest({
452
+ fullDataFormatter: fullDataFormatter$,
453
+ fullChartParams: fullChartParams$,
454
+ rootMousemove: rootMousemove$,
455
+ columnAmount: columnAmount$,
456
+ rowAmount: rowAmount$,
457
+ layout: layout$
458
+ }).pipe(
459
+ switchMap(async d => d),
460
+ map(data => {
461
+ // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
462
+ const eventData = {
463
+ offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
464
+ offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
465
+ }
466
+ return data.fullDataFormatter.grid.groupAxis.position === 'bottom'
467
+ || data.fullDataFormatter.grid.groupAxis.position === 'top'
468
+ ? eventData.offsetX - data.fullChartParams.padding.left
469
+ : eventData.offsetY - data.fullChartParams.padding.top
470
+ })
471
+ )
472
+
473
+ const groupIndex$ = combineLatest({
474
+ xIndexScale: xIndexScale$,
475
+ axisValue: axisValue$,
476
+ groupScaleDomain: groupScaleDomain$
477
+ }).pipe(
478
+ switchMap(async d => d),
479
+ map(data => {
480
+ const xIndex = data.xIndexScale(data.axisValue)
481
+ const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
482
+ return xIndex + currentxIndexStart
483
+ })
484
+ )
485
+
486
+ const groupLabel$ = combineLatest({
487
+ groupIndex: groupIndex$,
488
+ groupLabels: groupLabels$
489
+ }).pipe(
490
+ switchMap(async d => d),
491
+ map(data => {
492
+ return data.groupLabels[data.groupIndex] ?? ''
493
+ })
494
+ )
495
+
496
+ return combineLatest({
497
+ groupIndex: groupIndex$,
498
+ groupLabel: groupLabel$
499
+ }).pipe(
500
+ switchMap(async d => d),
501
+ map(data => {
502
+ return {
503
+ groupIndex: data.groupIndex,
504
+ groupLabel: data.groupLabel
505
+ }
506
+ })
507
+ )
508
+ }
509
+
510
+ // const gridContainerEventData$ = ({ eventData$, gridContainerPosition$, layout$ }: {
511
+ // eventData$: Observable<any>
512
+ // gridContainerPosition$: Observable<ContainerPositionScaled[]>
513
+ // layout$: Observable<Layout>
514
+ // }): Observable<{
515
+ // offsetX: number;
516
+ // offsetY: number;
517
+ // }> => {
518
+ // const columnAmount$ = gridContainerPosition$.pipe(
519
+ // map(gridContainerPosition => {
520
+ // const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
521
+ // return current.columnIndex > acc ? current.columnIndex : acc
522
+ // }, 0)
523
+ // return maxColumnIndex + 1
524
+ // }),
525
+ // distinctUntilChanged()
526
+ // )
527
+
528
+ // const rowAmount$ = gridContainerPosition$.pipe(
529
+ // map(gridContainerPosition => {
530
+ // const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
531
+ // return current.rowIndex > acc ? current.rowIndex : acc
532
+ // }, 0)
533
+ // return maxRowIndex + 1
534
+ // }),
535
+ // distinctUntilChanged()
536
+ // )
537
+
538
+ // return combineLatest({
539
+ // eventData: eventData$,
540
+ // gridContainerPosition: gridContainerPosition$,
541
+ // layout: layout$,
542
+ // columnAmount: columnAmount$,
543
+ // rowAmount: rowAmount$
544
+ // }).pipe(
545
+ // switchMap(async d => d),
546
+ // map(data => {
547
+ // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
548
+ // const eventData = {
549
+ // offsetX: data.eventData.offsetX * data.columnAmount % data.layout.rootWidth,
550
+ // offsetY: data.eventData.offsetY * data.rowAmount % data.layout.rootHeight
551
+ // }
552
+ // return eventData
553
+ // })
554
+ // )
555
555
  // }