@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,613 +1,613 @@
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
- // 建立 grid 主要的 selection - 只取的container
158
- export const gridContainerSelectionsObservable = ({ selection, pluginName, computedData$, gridContainerPosition$, isSeriesSeprate$ }: {
159
- selection: d3.Selection<any, unknown, any, unknown>
160
- pluginName: string
161
- computedData$: Observable<ComputedDataGrid>
162
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
163
- isSeriesSeprate$: Observable<boolean>
164
- }) => {
165
- const containerClassName = getClassName(pluginName, 'container')
166
-
167
- const containerSelection$ = combineLatest({
168
- computedData: computedData$.pipe(
169
- distinctUntilChanged((a, b) => {
170
- // 只有當series的數量改變時,才重新計算
171
- return a.length === b.length
172
- }),
173
- ),
174
- isSeriesSeprate: isSeriesSeprate$
175
- }).pipe(
176
- switchMap(async (d) => d),
177
- map(data => {
178
- return data.isSeriesSeprate
179
- // series分開的時候顯示各別axis
180
- ? data.computedData
181
- // series合併的時候只顯示第一個axis
182
- : [data.computedData[0]]
183
- }),
184
- map((computedData, i) => {
185
- return selection
186
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
187
- .data(computedData, d => d[0] ? d[0].seriesIndex : i)
188
- .join('g')
189
- .classed(containerClassName, true)
190
- }),
191
- shareReplay(1)
192
- )
193
-
194
- combineLatest({
195
- containerSelection: containerSelection$,
196
- gridContainerPosition: gridContainerPosition$
197
- }).pipe(
198
- switchMap(async d => d)
199
- ).subscribe(data => {
200
- data.containerSelection
201
- .attr('transform', (d, i) => {
202
- const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
203
- const translate = gridContainerPosition.translate
204
- const scale = gridContainerPosition.scale
205
- return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
206
- })
207
- // .attr('opacity', 0)
208
- // .transition()
209
- // .attr('opacity', 1)
210
- })
211
-
212
- return containerSelection$
213
- }
214
-
215
- // 由事件取得group data的function
216
- export const gridGroupPositionFnObservable = ({ fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
217
- fullDataFormatter$: Observable<DataFormatterGrid>
218
- gridAxesSize$: Observable<{
219
- width: number;
220
- height: number;
221
- }>
222
- computedData$: Observable<ComputedDataGrid>
223
- // GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
224
- fullChartParams$: Observable<ChartParams>
225
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
226
- layout$: Observable<Layout>
227
- }): Observable<(event: any) => { groupIndex: number; groupLabel: string }> => {
228
- const destroy$ = new Subject()
229
-
230
- // 顯示範圍內的group labels
231
- // const scaleRangeGroupLabels$: Observable<string[]> = new Observable(subscriber => {
232
- // combineLatest({
233
- // dataFormatter: fullDataFormatter$,
234
- // computedData: computedData$
235
- // }).pipe(
236
- // takeUntil(destroy$),
237
- // switchMap(async (d) => d),
238
- // ).subscribe(data => {
239
- // const groupMin = 0
240
- // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
241
- // const groupScaleDomainMin = data.dataFormatter.groupAxis.scaleDomain[0] === 'auto'
242
- // ? groupMin - data.dataFormatter.groupAxis.scalePadding
243
- // : data.dataFormatter.groupAxis.scaleDomain[0] as number - data.dataFormatter.groupAxis.scalePadding
244
- // const groupScaleDomainMax = data.dataFormatter.groupAxis.scaleDomain[1] === 'auto'
245
- // ? groupMax + data.dataFormatter.groupAxis.scalePadding
246
- // : data.dataFormatter.groupAxis.scaleDomain[1] as number + data.dataFormatter.groupAxis.scalePadding
247
-
248
- // // const groupingAmount = data.computedData[0]
249
- // // ? data.computedData[0].length
250
- // // : 0
251
-
252
- // let _labels = data.dataFormatter.seriesDirection === 'row'
253
- // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
254
- // : data.computedData.map(d => d[0].groupLabel)
255
-
256
- // const _axisLabels =
257
- // // new Array(groupingAmount).fill(0)
258
- // // .map((d, i) => {
259
- // // return _labels[i] != null
260
- // // ? _labels[i]
261
- // // : String(i) // 沒有label則用序列號填充
262
- // // })
263
- // _labels
264
- // .filter((d, i) => {
265
- // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
266
- // })
267
- // subscriber.next(_axisLabels)
268
- // })
269
- // })
270
- const groupScaleDomain$ = combineLatest({
271
- fullDataFormatter: fullDataFormatter$,
272
- gridAxesSize: gridAxesSize$,
273
- computedData: computedData$
274
- }).pipe(
275
- switchMap(async (d) => d),
276
- map(data => {
277
- const groupMin = 0
278
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
279
- // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
280
- // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
281
- // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
282
- const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] - data.fullDataFormatter.groupAxis.scalePadding
283
- const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'max'
284
- ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
285
- : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
286
-
287
- return [groupScaleDomainMin, groupScaleDomainMax]
288
- }),
289
- shareReplay(1)
290
- )
291
-
292
- const groupLabels$ = combineLatest({
293
- fullDataFormatter: fullDataFormatter$,
294
- computedData: computedData$
295
- }).pipe(
296
- switchMap(async d => d),
297
- map(data => {
298
- return data.fullDataFormatter.seriesDirection === 'row'
299
- ? (data.computedData[0] ?? []).map(d => d.groupLabel)
300
- : data.computedData.map(d => d[0].groupLabel)
301
- })
302
- )
303
-
304
- // 顯示範圍內的group labels
305
- const scaleRangeGroupLabels$ = combineLatest({
306
- groupScaleDomain: groupScaleDomain$,
307
- groupLabels: groupLabels$
308
- }).pipe(
309
- switchMap(async d => d),
310
- map(data => {
311
- return data.groupLabels
312
- .filter((d, i) => {
313
- return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
314
- })
315
- })
316
- )
317
-
318
- const columnAmount$ = gridContainerPosition$.pipe(
319
- map(gridContainerPosition => {
320
- const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
321
- return current.columnIndex > acc ? current.columnIndex : acc
322
- }, 0)
323
- return maxColumnIndex + 1
324
- }),
325
- distinctUntilChanged()
326
- )
327
-
328
- const rowAmount$ = gridContainerPosition$.pipe(
329
- map(gridContainerPosition => {
330
- const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
331
- return current.rowIndex > acc ? current.rowIndex : acc
332
- }, 0)
333
- return maxRowIndex + 1
334
- }),
335
- distinctUntilChanged()
336
- )
337
-
338
- return new Observable<(event: any) => { groupIndex: number; groupLabel: string }>(subscriber => {
339
- combineLatest({
340
- dataFormatter: fullDataFormatter$,
341
- axisSize: gridAxesSize$,
342
- fullChartParams: fullChartParams$,
343
- scaleRangeGroupLabels: scaleRangeGroupLabels$,
344
- groupLabels: groupLabels$,
345
- groupScaleDomain: groupScaleDomain$,
346
- columnAmount: columnAmount$,
347
- rowAmount: rowAmount$,
348
- layout: layout$
349
- }).pipe(
350
- takeUntil(destroy$),
351
- switchMap(async (d) => d),
352
- ).subscribe(data => {
353
-
354
- const reverse = data.dataFormatter.valueAxis.position === 'right'
355
- || data.dataFormatter.valueAxis.position === 'bottom'
356
- ? true : false
357
-
358
- // 比例尺座標對應非連續資料索引
359
- const xIndexScale = createAxisToLabelIndexScale({
360
- axisLabels: data.scaleRangeGroupLabels,
361
- axisWidth: data.axisSize.width,
362
- padding: data.dataFormatter.groupAxis.scalePadding,
363
- reverse
364
- })
365
-
366
- // 依比例尺位置計算座標
367
- const axisValuePredicate = (event: any) => {
368
- return data.dataFormatter.groupAxis.position === 'bottom'
369
- || data.dataFormatter.groupAxis.position === 'top'
370
- ? event.offsetX - data.fullChartParams.padding.left
371
- : event.offsetY - data.fullChartParams.padding.top
372
- }
373
-
374
- // 比例尺座標取得groupData的function
375
- const createEventGroupData: (event: MouseEvent) => { groupIndex: number; groupLabel: string } = (event: any) => {
376
- // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
377
- const eventData = {
378
- offsetX: event.offsetX * data.columnAmount % data.layout.rootWidth,
379
- offsetY: event.offsetY * data.rowAmount % data.layout.rootHeight
380
- }
381
- // console.log('data.columnAmount', data.columnAmount, 'data.rowAmount', data.rowAmount, 'data.layout.rootWidth', data.layout.rootWidth, 'data.layout.rootHeight', data.layout.rootHeight)
382
- const axisValue = axisValuePredicate(eventData)
383
- const xIndex = xIndexScale(axisValue)
384
- const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
385
- const groupIndex = xIndex + currentxIndexStart
386
-
387
- return {
388
- groupIndex,
389
- groupLabel: data.groupLabels[groupIndex] ?? ''
390
- }
391
- }
392
-
393
- subscriber.next(createEventGroupData)
394
-
395
- return function unsubscribe () {
396
- destroy$.next(undefined)
397
- }
398
- })
399
- })
400
- }
401
-
402
- export const gridGroupPositionObservable = ({ rootSelection, fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
403
- rootSelection: d3.Selection<any, unknown, any, unknown>
404
- fullDataFormatter$: Observable<DataFormatterGrid>
405
- gridAxesSize$: Observable<{
406
- width: number;
407
- height: number;
408
- }>
409
- computedData$: Observable<ComputedDataGrid>
410
- fullChartParams$: Observable<ChartParams>
411
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
412
- layout$: Observable<Layout>
413
- }) => {
414
- const rootMousemove$ = d3EventObservable(rootSelection, 'mousemove')
415
-
416
- const groupScaleDomain$ = combineLatest({
417
- fullDataFormatter: fullDataFormatter$,
418
- gridAxesSize: gridAxesSize$,
419
- computedData: computedData$
420
- }).pipe(
421
- switchMap(async (d) => d),
422
- map(data => {
423
- const groupMin = 0
424
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
425
- // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
426
- // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
427
- // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
428
- const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] - data.fullDataFormatter.groupAxis.scalePadding
429
- const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'max'
430
- ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
431
- : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
432
-
433
- return [groupScaleDomainMin, groupScaleDomainMax]
434
- }),
435
- shareReplay(1)
436
- )
437
-
438
- const groupLabels$ = combineLatest({
439
- fullDataFormatter: fullDataFormatter$,
440
- computedData: computedData$
441
- }).pipe(
442
- switchMap(async d => d),
443
- map(data => {
444
- return data.fullDataFormatter.seriesDirection === 'row'
445
- ? (data.computedData[0] ?? []).map(d => d.groupLabel)
446
- : data.computedData.map(d => d[0].groupLabel)
447
- })
448
- )
449
-
450
- const scaleRangeGroupLabels$ = combineLatest({
451
- groupScaleDomain: groupScaleDomain$,
452
- groupLabels: groupLabels$
453
- }).pipe(
454
- switchMap(async d => d),
455
- map(data => {
456
- return data.groupLabels
457
- .filter((d, i) => {
458
- return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
459
- })
460
- })
461
- )
462
-
463
- const reverse$ = fullDataFormatter$.pipe(
464
- map(d => {
465
- return d.valueAxis.position === 'right' || d.valueAxis.position === 'bottom'
466
- ? true
467
- : false
468
- })
469
- )
470
-
471
- // 比例尺座標對應非連續資料索引
472
- const xIndexScale$ = combineLatest({
473
- reverse: reverse$,
474
- gridAxesSize: gridAxesSize$,
475
- scaleRangeGroupLabels: scaleRangeGroupLabels$,
476
- fullDataFormatter: fullDataFormatter$
477
- }).pipe(
478
- switchMap(async d => d),
479
- map(data => {
480
- return createAxisToLabelIndexScale({
481
- axisLabels: data.scaleRangeGroupLabels,
482
- axisWidth: data.gridAxesSize.width,
483
- padding: data.fullDataFormatter.groupAxis.scalePadding,
484
- reverse: data.reverse
485
- })
486
- })
487
- )
488
-
489
- const columnAmount$ = gridContainerPosition$.pipe(
490
- map(gridContainerPosition => {
491
- const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
492
- return current.columnIndex > acc ? current.columnIndex : acc
493
- }, 0)
494
- return maxColumnIndex + 1
495
- }),
496
- distinctUntilChanged()
497
- )
498
-
499
- const rowAmount$ = gridContainerPosition$.pipe(
500
- map(gridContainerPosition => {
501
- const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
502
- return current.rowIndex > acc ? current.rowIndex : acc
503
- }, 0)
504
- return maxRowIndex + 1
505
- }),
506
- distinctUntilChanged()
507
- )
508
-
509
- const axisValue$ = combineLatest({
510
- fullDataFormatter: fullDataFormatter$,
511
- fullChartParams: fullChartParams$,
512
- rootMousemove: rootMousemove$,
513
- columnAmount: columnAmount$,
514
- rowAmount: rowAmount$,
515
- layout: layout$
516
- }).pipe(
517
- switchMap(async d => d),
518
- map(data => {
519
- // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
520
- const eventData = {
521
- offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
522
- offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
523
- }
524
- return data.fullDataFormatter.groupAxis.position === 'bottom'
525
- || data.fullDataFormatter.groupAxis.position === 'top'
526
- ? eventData.offsetX - data.fullChartParams.padding.left
527
- : eventData.offsetY - data.fullChartParams.padding.top
528
- })
529
- )
530
-
531
- const groupIndex$ = combineLatest({
532
- xIndexScale: xIndexScale$,
533
- axisValue: axisValue$,
534
- groupScaleDomain: groupScaleDomain$
535
- }).pipe(
536
- switchMap(async d => d),
537
- map(data => {
538
- const xIndex = data.xIndexScale(data.axisValue)
539
- const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
540
- return xIndex + currentxIndexStart
541
- })
542
- )
543
-
544
- const groupLabel$ = combineLatest({
545
- groupIndex: groupIndex$,
546
- groupLabels: groupLabels$
547
- }).pipe(
548
- switchMap(async d => d),
549
- map(data => {
550
- return data.groupLabels[data.groupIndex] ?? ''
551
- })
552
- )
553
-
554
- return combineLatest({
555
- groupIndex: groupIndex$,
556
- groupLabel: groupLabel$
557
- }).pipe(
558
- switchMap(async d => d),
559
- map(data => {
560
- return {
561
- groupIndex: data.groupIndex,
562
- groupLabel: data.groupLabel
563
- }
564
- })
565
- )
566
- }
567
-
568
- // const gridContainerEventData$ = ({ eventData$, gridContainerPosition$, layout$ }: {
569
- // eventData$: Observable<any>
570
- // gridContainerPosition$: Observable<ContainerPositionScaled[]>
571
- // layout$: Observable<Layout>
572
- // }): Observable<{
573
- // offsetX: number;
574
- // offsetY: number;
575
- // }> => {
576
- // const columnAmount$ = gridContainerPosition$.pipe(
577
- // map(gridContainerPosition => {
578
- // const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
579
- // return current.columnIndex > acc ? current.columnIndex : acc
580
- // }, 0)
581
- // return maxColumnIndex + 1
582
- // }),
583
- // distinctUntilChanged()
584
- // )
585
-
586
- // const rowAmount$ = gridContainerPosition$.pipe(
587
- // map(gridContainerPosition => {
588
- // const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
589
- // return current.rowIndex > acc ? current.rowIndex : acc
590
- // }, 0)
591
- // return maxRowIndex + 1
592
- // }),
593
- // distinctUntilChanged()
594
- // )
595
-
596
- // return combineLatest({
597
- // eventData: eventData$,
598
- // gridContainerPosition: gridContainerPosition$,
599
- // layout: layout$,
600
- // columnAmount: columnAmount$,
601
- // rowAmount: rowAmount$
602
- // }).pipe(
603
- // switchMap(async d => d),
604
- // map(data => {
605
- // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
606
- // const eventData = {
607
- // offsetX: data.eventData.offsetX * data.columnAmount % data.layout.rootWidth,
608
- // offsetY: data.eventData.offsetY * data.rowAmount % data.layout.rootHeight
609
- // }
610
- // return eventData
611
- // })
612
- // )
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
+ // 建立 grid 主要的 selection - 只取的container
158
+ export const gridContainerSelectionsObservable = ({ selection, pluginName, computedData$, gridContainerPosition$, isSeriesSeprate$ }: {
159
+ selection: d3.Selection<any, unknown, any, unknown>
160
+ pluginName: string
161
+ computedData$: Observable<ComputedDataGrid>
162
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
163
+ isSeriesSeprate$: Observable<boolean>
164
+ }) => {
165
+ const containerClassName = getClassName(pluginName, 'container')
166
+
167
+ const containerSelection$ = combineLatest({
168
+ computedData: computedData$.pipe(
169
+ distinctUntilChanged((a, b) => {
170
+ // 只有當series的數量改變時,才重新計算
171
+ return a.length === b.length
172
+ }),
173
+ ),
174
+ isSeriesSeprate: isSeriesSeprate$
175
+ }).pipe(
176
+ switchMap(async (d) => d),
177
+ map(data => {
178
+ return data.isSeriesSeprate
179
+ // series分開的時候顯示各別axis
180
+ ? data.computedData
181
+ // series合併的時候只顯示第一個axis
182
+ : [data.computedData[0]]
183
+ }),
184
+ map((computedData, i) => {
185
+ return selection
186
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
187
+ .data(computedData, d => d[0] ? d[0].seriesIndex : i)
188
+ .join('g')
189
+ .classed(containerClassName, true)
190
+ }),
191
+ shareReplay(1)
192
+ )
193
+
194
+ combineLatest({
195
+ containerSelection: containerSelection$,
196
+ gridContainerPosition: gridContainerPosition$
197
+ }).pipe(
198
+ switchMap(async d => d)
199
+ ).subscribe(data => {
200
+ data.containerSelection
201
+ .attr('transform', (d, i) => {
202
+ const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
203
+ const translate = gridContainerPosition.translate
204
+ const scale = gridContainerPosition.scale
205
+ return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
206
+ })
207
+ // .attr('opacity', 0)
208
+ // .transition()
209
+ // .attr('opacity', 1)
210
+ })
211
+
212
+ return containerSelection$
213
+ }
214
+
215
+ // 由事件取得group data的function
216
+ export const gridGroupPositionFnObservable = ({ fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
217
+ fullDataFormatter$: Observable<DataFormatterGrid>
218
+ gridAxesSize$: Observable<{
219
+ width: number;
220
+ height: number;
221
+ }>
222
+ computedData$: Observable<ComputedDataGrid>
223
+ // GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
224
+ fullChartParams$: Observable<ChartParams>
225
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
226
+ layout$: Observable<Layout>
227
+ }): Observable<(event: any) => { groupIndex: number; groupLabel: string }> => {
228
+ const destroy$ = new Subject()
229
+
230
+ // 顯示範圍內的group labels
231
+ // const scaleRangeGroupLabels$: Observable<string[]> = new Observable(subscriber => {
232
+ // combineLatest({
233
+ // dataFormatter: fullDataFormatter$,
234
+ // computedData: computedData$
235
+ // }).pipe(
236
+ // takeUntil(destroy$),
237
+ // switchMap(async (d) => d),
238
+ // ).subscribe(data => {
239
+ // const groupMin = 0
240
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
241
+ // const groupScaleDomainMin = data.dataFormatter.groupAxis.scaleDomain[0] === 'auto'
242
+ // ? groupMin - data.dataFormatter.groupAxis.scalePadding
243
+ // : data.dataFormatter.groupAxis.scaleDomain[0] as number - data.dataFormatter.groupAxis.scalePadding
244
+ // const groupScaleDomainMax = data.dataFormatter.groupAxis.scaleDomain[1] === 'auto'
245
+ // ? groupMax + data.dataFormatter.groupAxis.scalePadding
246
+ // : data.dataFormatter.groupAxis.scaleDomain[1] as number + data.dataFormatter.groupAxis.scalePadding
247
+
248
+ // // const groupingAmount = data.computedData[0]
249
+ // // ? data.computedData[0].length
250
+ // // : 0
251
+
252
+ // let _labels = data.dataFormatter.seriesDirection === 'row'
253
+ // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
254
+ // : data.computedData.map(d => d[0].groupLabel)
255
+
256
+ // const _axisLabels =
257
+ // // new Array(groupingAmount).fill(0)
258
+ // // .map((d, i) => {
259
+ // // return _labels[i] != null
260
+ // // ? _labels[i]
261
+ // // : String(i) // 沒有label則用序列號填充
262
+ // // })
263
+ // _labels
264
+ // .filter((d, i) => {
265
+ // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
266
+ // })
267
+ // subscriber.next(_axisLabels)
268
+ // })
269
+ // })
270
+ const groupScaleDomain$ = combineLatest({
271
+ fullDataFormatter: fullDataFormatter$,
272
+ gridAxesSize: gridAxesSize$,
273
+ computedData: computedData$
274
+ }).pipe(
275
+ switchMap(async (d) => d),
276
+ map(data => {
277
+ const groupMin = 0
278
+ const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
279
+ // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
280
+ // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
281
+ // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
282
+ const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] - data.fullDataFormatter.groupAxis.scalePadding
283
+ const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'max'
284
+ ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
285
+ : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
286
+
287
+ return [groupScaleDomainMin, groupScaleDomainMax]
288
+ }),
289
+ shareReplay(1)
290
+ )
291
+
292
+ const groupLabels$ = combineLatest({
293
+ fullDataFormatter: fullDataFormatter$,
294
+ computedData: computedData$
295
+ }).pipe(
296
+ switchMap(async d => d),
297
+ map(data => {
298
+ return data.fullDataFormatter.seriesDirection === 'row'
299
+ ? (data.computedData[0] ?? []).map(d => d.groupLabel)
300
+ : data.computedData.map(d => d[0].groupLabel)
301
+ })
302
+ )
303
+
304
+ // 顯示範圍內的group labels
305
+ const scaleRangeGroupLabels$ = combineLatest({
306
+ groupScaleDomain: groupScaleDomain$,
307
+ groupLabels: groupLabels$
308
+ }).pipe(
309
+ switchMap(async d => d),
310
+ map(data => {
311
+ return data.groupLabels
312
+ .filter((d, i) => {
313
+ return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
314
+ })
315
+ })
316
+ )
317
+
318
+ const columnAmount$ = gridContainerPosition$.pipe(
319
+ map(gridContainerPosition => {
320
+ const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
321
+ return current.columnIndex > acc ? current.columnIndex : acc
322
+ }, 0)
323
+ return maxColumnIndex + 1
324
+ }),
325
+ distinctUntilChanged()
326
+ )
327
+
328
+ const rowAmount$ = gridContainerPosition$.pipe(
329
+ map(gridContainerPosition => {
330
+ const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
331
+ return current.rowIndex > acc ? current.rowIndex : acc
332
+ }, 0)
333
+ return maxRowIndex + 1
334
+ }),
335
+ distinctUntilChanged()
336
+ )
337
+
338
+ return new Observable<(event: any) => { groupIndex: number; groupLabel: string }>(subscriber => {
339
+ combineLatest({
340
+ dataFormatter: fullDataFormatter$,
341
+ axisSize: gridAxesSize$,
342
+ fullChartParams: fullChartParams$,
343
+ scaleRangeGroupLabels: scaleRangeGroupLabels$,
344
+ groupLabels: groupLabels$,
345
+ groupScaleDomain: groupScaleDomain$,
346
+ columnAmount: columnAmount$,
347
+ rowAmount: rowAmount$,
348
+ layout: layout$
349
+ }).pipe(
350
+ takeUntil(destroy$),
351
+ switchMap(async (d) => d),
352
+ ).subscribe(data => {
353
+
354
+ const reverse = data.dataFormatter.valueAxis.position === 'right'
355
+ || data.dataFormatter.valueAxis.position === 'bottom'
356
+ ? true : false
357
+
358
+ // 比例尺座標對應非連續資料索引
359
+ const xIndexScale = createAxisToLabelIndexScale({
360
+ axisLabels: data.scaleRangeGroupLabels,
361
+ axisWidth: data.axisSize.width,
362
+ padding: data.dataFormatter.groupAxis.scalePadding,
363
+ reverse
364
+ })
365
+
366
+ // 依比例尺位置計算座標
367
+ const axisValuePredicate = (event: any) => {
368
+ return data.dataFormatter.groupAxis.position === 'bottom'
369
+ || data.dataFormatter.groupAxis.position === 'top'
370
+ ? event.offsetX - data.fullChartParams.padding.left
371
+ : event.offsetY - data.fullChartParams.padding.top
372
+ }
373
+
374
+ // 比例尺座標取得groupData的function
375
+ const createEventGroupData: (event: MouseEvent) => { groupIndex: number; groupLabel: string } = (event: any) => {
376
+ // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
377
+ const eventData = {
378
+ offsetX: event.offsetX * data.columnAmount % data.layout.rootWidth,
379
+ offsetY: event.offsetY * data.rowAmount % data.layout.rootHeight
380
+ }
381
+ // console.log('data.columnAmount', data.columnAmount, 'data.rowAmount', data.rowAmount, 'data.layout.rootWidth', data.layout.rootWidth, 'data.layout.rootHeight', data.layout.rootHeight)
382
+ const axisValue = axisValuePredicate(eventData)
383
+ const xIndex = xIndexScale(axisValue)
384
+ const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
385
+ const groupIndex = xIndex + currentxIndexStart
386
+
387
+ return {
388
+ groupIndex,
389
+ groupLabel: data.groupLabels[groupIndex] ?? ''
390
+ }
391
+ }
392
+
393
+ subscriber.next(createEventGroupData)
394
+
395
+ return function unsubscribe () {
396
+ destroy$.next(undefined)
397
+ }
398
+ })
399
+ })
400
+ }
401
+
402
+ export const gridGroupPositionObservable = ({ rootSelection, fullDataFormatter$, gridAxesSize$, computedData$, fullChartParams$, gridContainerPosition$, layout$ }: {
403
+ rootSelection: d3.Selection<any, unknown, any, unknown>
404
+ fullDataFormatter$: Observable<DataFormatterGrid>
405
+ gridAxesSize$: Observable<{
406
+ width: number;
407
+ height: number;
408
+ }>
409
+ computedData$: Observable<ComputedDataGrid>
410
+ fullChartParams$: Observable<ChartParams>
411
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
412
+ layout$: Observable<Layout>
413
+ }) => {
414
+ const rootMousemove$ = d3EventObservable(rootSelection, 'mousemove')
415
+
416
+ const groupScaleDomain$ = combineLatest({
417
+ fullDataFormatter: fullDataFormatter$,
418
+ gridAxesSize: gridAxesSize$,
419
+ computedData: computedData$
420
+ }).pipe(
421
+ switchMap(async (d) => d),
422
+ map(data => {
423
+ const groupMin = 0
424
+ const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
425
+ // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
426
+ // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
427
+ // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
428
+ const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] - data.fullDataFormatter.groupAxis.scalePadding
429
+ const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'max'
430
+ ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
431
+ : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
432
+
433
+ return [groupScaleDomainMin, groupScaleDomainMax]
434
+ }),
435
+ shareReplay(1)
436
+ )
437
+
438
+ const groupLabels$ = combineLatest({
439
+ fullDataFormatter: fullDataFormatter$,
440
+ computedData: computedData$
441
+ }).pipe(
442
+ switchMap(async d => d),
443
+ map(data => {
444
+ return data.fullDataFormatter.seriesDirection === 'row'
445
+ ? (data.computedData[0] ?? []).map(d => d.groupLabel)
446
+ : data.computedData.map(d => d[0].groupLabel)
447
+ })
448
+ )
449
+
450
+ const scaleRangeGroupLabels$ = combineLatest({
451
+ groupScaleDomain: groupScaleDomain$,
452
+ groupLabels: groupLabels$
453
+ }).pipe(
454
+ switchMap(async d => d),
455
+ map(data => {
456
+ return data.groupLabels
457
+ .filter((d, i) => {
458
+ return i >= data.groupScaleDomain[0] && i <= data.groupScaleDomain[1]
459
+ })
460
+ })
461
+ )
462
+
463
+ const reverse$ = fullDataFormatter$.pipe(
464
+ map(d => {
465
+ return d.valueAxis.position === 'right' || d.valueAxis.position === 'bottom'
466
+ ? true
467
+ : false
468
+ })
469
+ )
470
+
471
+ // 比例尺座標對應非連續資料索引
472
+ const xIndexScale$ = combineLatest({
473
+ reverse: reverse$,
474
+ gridAxesSize: gridAxesSize$,
475
+ scaleRangeGroupLabels: scaleRangeGroupLabels$,
476
+ fullDataFormatter: fullDataFormatter$
477
+ }).pipe(
478
+ switchMap(async d => d),
479
+ map(data => {
480
+ return createAxisToLabelIndexScale({
481
+ axisLabels: data.scaleRangeGroupLabels,
482
+ axisWidth: data.gridAxesSize.width,
483
+ padding: data.fullDataFormatter.groupAxis.scalePadding,
484
+ reverse: data.reverse
485
+ })
486
+ })
487
+ )
488
+
489
+ const columnAmount$ = gridContainerPosition$.pipe(
490
+ map(gridContainerPosition => {
491
+ const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
492
+ return current.columnIndex > acc ? current.columnIndex : acc
493
+ }, 0)
494
+ return maxColumnIndex + 1
495
+ }),
496
+ distinctUntilChanged()
497
+ )
498
+
499
+ const rowAmount$ = gridContainerPosition$.pipe(
500
+ map(gridContainerPosition => {
501
+ const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
502
+ return current.rowIndex > acc ? current.rowIndex : acc
503
+ }, 0)
504
+ return maxRowIndex + 1
505
+ }),
506
+ distinctUntilChanged()
507
+ )
508
+
509
+ const axisValue$ = combineLatest({
510
+ fullDataFormatter: fullDataFormatter$,
511
+ fullChartParams: fullChartParams$,
512
+ rootMousemove: rootMousemove$,
513
+ columnAmount: columnAmount$,
514
+ rowAmount: rowAmount$,
515
+ layout: layout$
516
+ }).pipe(
517
+ switchMap(async d => d),
518
+ map(data => {
519
+ // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
520
+ const eventData = {
521
+ offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
522
+ offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
523
+ }
524
+ return data.fullDataFormatter.groupAxis.position === 'bottom'
525
+ || data.fullDataFormatter.groupAxis.position === 'top'
526
+ ? eventData.offsetX - data.fullChartParams.padding.left
527
+ : eventData.offsetY - data.fullChartParams.padding.top
528
+ })
529
+ )
530
+
531
+ const groupIndex$ = combineLatest({
532
+ xIndexScale: xIndexScale$,
533
+ axisValue: axisValue$,
534
+ groupScaleDomain: groupScaleDomain$
535
+ }).pipe(
536
+ switchMap(async d => d),
537
+ map(data => {
538
+ const xIndex = data.xIndexScale(data.axisValue)
539
+ const currentxIndexStart = Math.ceil(data.groupScaleDomain[0]) // 因為有padding所以會有小數點,所以要無條件進位
540
+ return xIndex + currentxIndexStart
541
+ })
542
+ )
543
+
544
+ const groupLabel$ = combineLatest({
545
+ groupIndex: groupIndex$,
546
+ groupLabels: groupLabels$
547
+ }).pipe(
548
+ switchMap(async d => d),
549
+ map(data => {
550
+ return data.groupLabels[data.groupIndex] ?? ''
551
+ })
552
+ )
553
+
554
+ return combineLatest({
555
+ groupIndex: groupIndex$,
556
+ groupLabel: groupLabel$
557
+ }).pipe(
558
+ switchMap(async d => d),
559
+ map(data => {
560
+ return {
561
+ groupIndex: data.groupIndex,
562
+ groupLabel: data.groupLabel
563
+ }
564
+ })
565
+ )
566
+ }
567
+
568
+ // const gridContainerEventData$ = ({ eventData$, gridContainerPosition$, layout$ }: {
569
+ // eventData$: Observable<any>
570
+ // gridContainerPosition$: Observable<ContainerPositionScaled[]>
571
+ // layout$: Observable<Layout>
572
+ // }): Observable<{
573
+ // offsetX: number;
574
+ // offsetY: number;
575
+ // }> => {
576
+ // const columnAmount$ = gridContainerPosition$.pipe(
577
+ // map(gridContainerPosition => {
578
+ // const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
579
+ // return current.columnIndex > acc ? current.columnIndex : acc
580
+ // }, 0)
581
+ // return maxColumnIndex + 1
582
+ // }),
583
+ // distinctUntilChanged()
584
+ // )
585
+
586
+ // const rowAmount$ = gridContainerPosition$.pipe(
587
+ // map(gridContainerPosition => {
588
+ // const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
589
+ // return current.rowIndex > acc ? current.rowIndex : acc
590
+ // }, 0)
591
+ // return maxRowIndex + 1
592
+ // }),
593
+ // distinctUntilChanged()
594
+ // )
595
+
596
+ // return combineLatest({
597
+ // eventData: eventData$,
598
+ // gridContainerPosition: gridContainerPosition$,
599
+ // layout: layout$,
600
+ // columnAmount: columnAmount$,
601
+ // rowAmount: rowAmount$
602
+ // }).pipe(
603
+ // switchMap(async d => d),
604
+ // map(data => {
605
+ // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
606
+ // const eventData = {
607
+ // offsetX: data.eventData.offsetX * data.columnAmount % data.layout.rootWidth,
608
+ // offsetY: data.eventData.offsetY * data.rowAmount % data.layout.rootHeight
609
+ // }
610
+ // return eventData
611
+ // })
612
+ // )
613
613
  // }