@orbcharts/core 3.0.0-alpha.42 → 3.0.0-alpha.43

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 (100) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-core.es.js +1905 -1896
  3. package/dist/orbcharts-core.umd.js +2 -2
  4. package/dist/src/defaults.d.ts +4 -3
  5. package/dist/src/grid/computeGridData.d.ts +4 -11
  6. package/dist/src/grid/gridObservables.d.ts +15 -18
  7. package/dist/src/multiGrid/multiGridObservables.d.ts +4 -11
  8. package/dist/src/series/seriesObservables.d.ts +26 -1
  9. package/dist/src/types/ComputedData.d.ts +1 -0
  10. package/dist/src/types/ComputedDataGrid.d.ts +0 -3
  11. package/dist/src/types/ComputedDataSeries.d.ts +1 -2
  12. package/dist/src/types/ContextObserverGrid.d.ts +11 -4
  13. package/dist/src/types/ContextObserverMultiGrid.d.ts +8 -3
  14. package/dist/src/types/ContextObserverSeries.d.ts +18 -0
  15. package/dist/src/types/DataFormatter.d.ts +8 -5
  16. package/dist/src/types/DataFormatterGrid.d.ts +13 -16
  17. package/dist/src/types/DataFormatterMultiGrid.d.ts +6 -3
  18. package/dist/src/types/DataFormatterMultiValue.d.ts +3 -0
  19. package/dist/src/types/DataFormatterRelationship.d.ts +3 -0
  20. package/dist/src/types/DataFormatterSeries.d.ts +10 -3
  21. package/dist/src/utils/orbchartsUtils.d.ts +14 -13
  22. package/package.json +41 -41
  23. package/src/AbstractChart.ts +48 -48
  24. package/src/GridChart.ts +20 -20
  25. package/src/MultiGridChart.ts +20 -20
  26. package/src/MultiValueChart.ts +20 -20
  27. package/src/RelationshipChart.ts +20 -20
  28. package/src/SeriesChart.ts +20 -20
  29. package/src/TreeChart.ts +20 -20
  30. package/src/base/createBaseChart.ts +367 -367
  31. package/src/base/createBasePlugin.ts +89 -89
  32. package/src/defaults.ts +220 -248
  33. package/src/defineGridPlugin.ts +3 -3
  34. package/src/defineMultiGridPlugin.ts +3 -3
  35. package/src/defineMultiValuePlugin.ts +3 -3
  36. package/src/defineNoneDataPlugin.ts +4 -4
  37. package/src/defineRelationshipPlugin.ts +3 -3
  38. package/src/defineSeriesPlugin.ts +3 -3
  39. package/src/defineTreePlugin.ts +3 -3
  40. package/src/grid/computeGridData.ts +134 -205
  41. package/src/grid/createGridContextObserver.ts +147 -130
  42. package/src/grid/gridObservables.ts +573 -486
  43. package/src/index.ts +21 -21
  44. package/src/multiGrid/computeMultiGridData.ts +130 -173
  45. package/src/multiGrid/createMultiGridContextObserver.ts +40 -40
  46. package/src/multiGrid/multiGridObservables.ts +350 -285
  47. package/src/multiValue/computeMultiValueData.ts +143 -136
  48. package/src/multiValue/createMultiValueContextObserver.ts +12 -12
  49. package/src/relationship/computeRelationshipData.ts +118 -106
  50. package/src/relationship/createRelationshipContextObserver.ts +12 -12
  51. package/src/series/computeSeriesData.ts +90 -153
  52. package/src/series/createSeriesContextObserver.ts +93 -38
  53. package/src/series/seriesObservables.ts +176 -24
  54. package/src/tree/computeTreeData.ts +131 -128
  55. package/src/tree/createTreeContextObserver.ts +61 -61
  56. package/src/tree/treeObservables.ts +94 -94
  57. package/src/types/Chart.ts +48 -48
  58. package/src/types/ChartParams.ts +51 -51
  59. package/src/types/ComputedData.ts +83 -82
  60. package/src/types/ComputedDataGrid.ts +13 -13
  61. package/src/types/ComputedDataMultiGrid.ts +2 -2
  62. package/src/types/ComputedDataMultiValue.ts +9 -9
  63. package/src/types/ComputedDataRelationship.ts +19 -19
  64. package/src/types/ComputedDataSeries.ts +8 -8
  65. package/src/types/ComputedDataTree.ts +19 -19
  66. package/src/types/ContextObserver.ts +38 -38
  67. package/src/types/ContextObserverGrid.ts +41 -33
  68. package/src/types/ContextObserverMultiGrid.ts +16 -28
  69. package/src/types/ContextObserverMultiValue.ts +4 -4
  70. package/src/types/ContextObserverRelationship.ts +4 -4
  71. package/src/types/ContextObserverSeries.ts +29 -9
  72. package/src/types/ContextObserverTree.ts +11 -11
  73. package/src/types/ContextSubject.ts +18 -18
  74. package/src/types/Data.ts +45 -45
  75. package/src/types/DataFormatter.ts +74 -95
  76. package/src/types/DataFormatterGrid.ts +67 -55
  77. package/src/types/DataFormatterMultiGrid.ts +44 -42
  78. package/src/types/DataFormatterMultiValue.ts +23 -20
  79. package/src/types/DataFormatterRelationship.ts +25 -22
  80. package/src/types/DataFormatterSeries.ts +20 -30
  81. package/src/types/DataFormatterTree.ts +12 -12
  82. package/src/types/DataGrid.ts +11 -11
  83. package/src/types/DataMultiGrid.ts +6 -6
  84. package/src/types/DataMultiValue.ts +12 -12
  85. package/src/types/DataRelationship.ts +27 -27
  86. package/src/types/DataSeries.ts +11 -11
  87. package/src/types/DataTree.ts +20 -20
  88. package/src/types/Event.ts +153 -153
  89. package/src/types/Layout.ts +11 -11
  90. package/src/types/Padding.ts +5 -5
  91. package/src/types/Plugin.ts +60 -60
  92. package/src/types/TransformData.ts +7 -7
  93. package/src/types/index.ts +37 -37
  94. package/src/utils/commonUtils.ts +50 -50
  95. package/src/utils/d3Utils.ts +89 -89
  96. package/src/utils/index.ts +4 -4
  97. package/src/utils/observables.ts +201 -201
  98. package/src/utils/orbchartsUtils.ts +349 -253
  99. package/tsconfig.json +13 -13
  100. package/vite.config.js +44 -44
@@ -1,487 +1,574 @@
1
- import {
2
- combineLatest,
3
- distinctUntilChanged,
4
- filter,
5
- map,
6
- merge,
7
- takeUntil,
8
- shareReplay,
9
- switchMap,
10
- Subject,
11
- Observable } from 'rxjs'
12
- import type {
13
- AxisPosition,
14
- ChartType,
15
- ChartParams,
16
- ComputedDataTypeMap,
17
- ComputedDatumTypeMap,
18
- ContextObserverFn,
19
- DataTypeMap,
20
- DataFormatterTypeMap,
21
- DataFormatterGrid,
22
- DataFormatterGridContainer,
23
- DataFormatterValueAxis,
24
- DataFormatterGroupAxis,
25
- ContainerPosition,
26
- HighlightTarget,
27
- Layout,
28
- TransformData } from '../types'
29
- import { getMinAndMaxGrid } from '../utils/orbchartsUtils'
30
- import { createAxisLinearScale, createAxisPointScale, createAxisQuantizeScale } from '../utils/d3Utils'
31
- import { highlightObservable } from '../utils/observables'
32
- import { calcGridContainerPosition } from '../utils/orbchartsUtils'
33
- import { DATA_FORMATTER_GRID_GRID_DEFAULT } from '../defaults'
34
-
35
- export const gridAxesTransformObservable = ({ fullDataFormatter$, layout$ }: {
36
- fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
37
- layout$: Observable<Layout>
38
- }): Observable<TransformData> => {
39
- const destroy$ = new Subject()
40
-
41
- function calcAxesTransform ({ xAxis, yAxis, width, height }: {
42
- xAxis: DataFormatterGroupAxis | DataFormatterValueAxis,
43
- yAxis: DataFormatterValueAxis,
44
- width: number,
45
- height: number
46
- }): TransformData {
47
- if (!xAxis || !yAxis) {
48
- return {
49
- translate: [0, 0],
50
- scale: [1, 1],
51
- rotate: 0,
52
- rotateX: 0,
53
- rotateY: 0,
54
- value: ''
55
- }
56
- }
57
- // const width = size.width - fullChartParams.layout.left - fullChartParams.layout.right
58
- // const height = size.height - fullChartParams.layout.top - fullChartParams.layout.bottom
59
- let translateX = 0
60
- let translateY = 0
61
- let rotate = 0
62
- let rotateX = 0
63
- let rotateY = 0
64
- if (xAxis.position === 'bottom') {
65
- if (yAxis.position === 'left') {
66
- rotateX = 180
67
- translateY = height
68
- } else if (yAxis.position === 'right') {
69
- rotateX = 180
70
- rotateY = 180
71
- translateX = width
72
- translateY = height
73
- } else {
74
- // 預設
75
- rotateX = 180
76
- translateY = height
77
- }
78
- } else if (xAxis.position === 'top') {
79
- if (yAxis.position === 'left') {
80
- } else if (yAxis.position === 'right') {
81
- rotateY = 180
82
- translateX = width
83
- } else {
84
- // 預設
85
- rotateX = 180
86
- translateY = height
87
- }
88
- } else if (xAxis.position === 'left') {
89
- if (yAxis.position === 'bottom') {
90
- rotate = -90
91
- translateY = height
92
- } else if (yAxis.position === 'top') {
93
- rotate = -90
94
- rotateY = 180
95
- } else {
96
- // 預設
97
- rotateX = 180
98
- translateY = height
99
- }
100
- } else if (xAxis.position === 'right') {
101
- if (yAxis.position === 'bottom') {
102
- rotate = -90
103
- rotateX = 180
104
- translateY = height
105
- translateX = width
106
- } else if (yAxis.position === 'top') {
107
- rotate = -90
108
- rotateX = 180
109
- rotateY = 180
110
- translateX = width
111
- } else {
112
- // 預設
113
- rotateX = 180
114
- translateY = height
115
- }
116
- }
117
- // selection.style('transform', `translate(${translateX}px, ${translateY}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`)
118
-
119
- return {
120
- translate: [translateX, translateY],
121
- scale: [1, 1],
122
- rotate,
123
- rotateX,
124
- rotateY,
125
- value: `translate(${translateX}px, ${translateY}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`
126
- }
127
- }
128
-
129
- return new Observable(subscriber => {
130
- combineLatest({
131
- fullDataFormatter: fullDataFormatter$,
132
- layout: layout$
133
- }).pipe(
134
- takeUntil(destroy$),
135
- switchMap(async (d) => d),
136
- ).subscribe(data => {
137
- const axesTransformData = calcAxesTransform({
138
- xAxis: data.fullDataFormatter.grid.groupAxis,
139
- yAxis: data.fullDataFormatter.grid.valueAxis,
140
- width: data.layout.width,
141
- height: data.layout.height
142
- })
143
-
144
- subscriber.next(axesTransformData)
145
- })
146
-
147
- return function unscbscribe () {
148
- destroy$.next(undefined)
149
- }
150
- })
151
- }
152
-
153
-
154
- export const gridAxesReverseTransformObservable = ({ gridAxesTransform$ }: {
155
- gridAxesTransform$: Observable<TransformData>
156
- }): Observable<TransformData> => {
157
- return gridAxesTransform$.pipe(
158
- map(d => {
159
- // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
160
- const translate: [number, number] = [0, 0] // 無需逆轉
161
- const scale: [number, number] = [1 / d.scale[0], 1 / d.scale[1]]
162
- const rotate = d.rotate * -1
163
- const rotateX = d.rotateX * -1
164
- const rotateY = d.rotateY * -1
165
- return {
166
- translate,
167
- scale,
168
- rotate,
169
- rotateX,
170
- rotateY,
171
- value: `translate(${translate[0]}px, ${translate[1]}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`
172
- }
173
- }),
174
- )
175
- }
176
-
177
- export const gridGraphicTransformObservable = ({ computedData$, fullDataFormatter$, layout$ }: {
178
- computedData$: Observable<ComputedDataTypeMap<'grid'>>
179
- fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
180
- layout$: Observable<Layout>
181
- }): Observable<TransformData> => {
182
- const destroy$ = new Subject()
183
-
184
- function calcGridDataAreaTransform ({ data, groupAxis, valueAxis, width, height }: {
185
- data: ComputedDataTypeMap<'grid'>
186
- groupAxis: DataFormatterGroupAxis
187
- valueAxis: DataFormatterValueAxis
188
- width: number
189
- height: number
190
- }): TransformData {
191
- let translateX = 0
192
- let translateY = 0
193
- let scaleX = 0
194
- let scaleY = 0
195
-
196
- // -- groupScale --
197
- const groupAxisWidth = (groupAxis.position === 'top' || groupAxis.position === 'bottom')
198
- ? width
199
- : height
200
- const groupMin = 0
201
- const groupMax = data[0] ? data[0].length - 1 : 0
202
- const groupScaleDomainMin = groupAxis.scaleDomain[0] === 'auto'
203
- ? groupMin - groupAxis.scalePadding
204
- : groupAxis.scaleDomain[0] as number - groupAxis.scalePadding
205
- const groupScaleDomainMax = groupAxis.scaleDomain[1] === 'auto'
206
- ? groupMax + groupAxis.scalePadding
207
- : groupAxis.scaleDomain[1] as number + groupAxis.scalePadding
208
-
209
- const groupScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
210
- maxValue: groupMax,
211
- minValue: groupMin,
212
- axisWidth: groupAxisWidth,
213
- // scaleDomain: groupAxis.scaleDomain,
214
- scaleDomain: [groupScaleDomainMin, groupScaleDomainMax],
215
- scaleRange: [0, 1]
216
- })
217
-
218
- // -- translateX, scaleX --
219
- const rangeMinX = groupScale(groupMin)
220
- const rangeMaxX = groupScale(groupMax)
221
- translateX = rangeMinX
222
- const gWidth = rangeMaxX - rangeMinX
223
- scaleX = gWidth / groupAxisWidth
224
-
225
- // -- valueScale --
226
- const filteredData = data.map((d, i) => {
227
- return d.filter((_d, _i) => {
228
- return _i >= groupScaleDomainMin && _i <= groupScaleDomainMax && _d.visible == true
229
- })
230
- })
231
-
232
- const filteredMinAndMax = getMinAndMaxGrid(filteredData)
233
-
234
- const valueAxisWidth = (valueAxis.position === 'left' || valueAxis.position === 'right')
235
- ? height
236
- : width
237
-
238
- const valueScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
239
- maxValue: filteredMinAndMax[1],
240
- minValue: filteredMinAndMax[0],
241
- axisWidth: valueAxisWidth,
242
- scaleDomain: valueAxis.scaleDomain,
243
- scaleRange: valueAxis.scaleRange
244
- })
245
-
246
- // -- translateY, scaleY --
247
- const minAndMax = getMinAndMaxGrid(data)
248
- const rangeMinY = valueScale(minAndMax[0])
249
- const rangeMaxY = valueScale(minAndMax[1])
250
- translateY = rangeMinY
251
- const gHeight = rangeMaxY - rangeMinY
252
- scaleY = gHeight / valueAxisWidth
253
-
254
- return {
255
- translate: [translateX, translateY],
256
- scale: [scaleX, scaleY],
257
- rotate: 0,
258
- rotateX: 0,
259
- rotateY: 0,
260
- value: `translate(${translateX}px, ${translateY}px) scale(${scaleX}, ${scaleY})`
261
- }
262
- }
263
-
264
- return new Observable(subscriber => {
265
- combineLatest({
266
- computedData: computedData$,
267
- fullDataFormatter: fullDataFormatter$,
268
- layout: layout$
269
- }).pipe(
270
- takeUntil(destroy$),
271
- switchMap(async (d) => d),
272
- ).subscribe(data => {
273
- const dataAreaTransformData = calcGridDataAreaTransform ({
274
- data: data.computedData,
275
- groupAxis: data.fullDataFormatter.grid.groupAxis,
276
- valueAxis: data.fullDataFormatter.grid.valueAxis,
277
- width: data.layout.width,
278
- height: data.layout.height
279
- })
280
-
281
- subscriber.next(dataAreaTransformData)
282
- })
283
-
284
- return function unscbscribe () {
285
- destroy$.next(undefined)
286
- }
287
- })
288
- }
289
-
290
- export const gridGraphicReverseScaleObservable = ({ gridContainer$, gridAxesTransform$, gridGraphicTransform$ }: {
291
- gridContainer$: Observable<ContainerPosition[]>
292
- gridAxesTransform$: Observable<TransformData>
293
- gridGraphicTransform$: Observable<TransformData>
294
- }): Observable<[number, number][]> => {
295
- return combineLatest({
296
- gridContainer: gridContainer$,
297
- gridAxesTransform: gridAxesTransform$,
298
- gridGraphicTransform: gridGraphicTransform$,
299
- }).pipe(
300
- switchMap(async (d) => d),
301
- map(data => {
302
- if (data.gridAxesTransform.rotate == 0 || data.gridAxesTransform.rotate == 180) {
303
- return data.gridContainer.map((series, seriesIndex) => {
304
- return [
305
- 1 / data.gridGraphicTransform.scale[0] / data.gridContainer[seriesIndex].scale[0],
306
- 1 / data.gridGraphicTransform.scale[1] / data.gridContainer[seriesIndex].scale[1],
307
- ]
308
- })
309
- } else {
310
- return data.gridContainer.map((series, seriesIndex) => {
311
- // 由於有垂直的旋轉,所以外層 (container) x和y的scale要互換
312
- return [
313
- 1 / data.gridGraphicTransform.scale[0] / data.gridContainer[seriesIndex].scale[1],
314
- 1 / data.gridGraphicTransform.scale[1] / data.gridContainer[seriesIndex].scale[0],
315
- ]
316
- })
317
- }
318
- }),
319
- )
320
- }
321
-
322
- export const gridAxesSizeObservable = ({ fullDataFormatter$, layout$ }: {
323
- fullDataFormatter$: Observable<DataFormatterGrid>
324
- layout$: Observable<Layout>
325
- }): Observable<{
326
- width: number;
327
- height: number;
328
- }> => {
329
- const destroy$ = new Subject()
330
-
331
- function calcAxesSize ({ xAxisPosition, yAxisPosition, width, height }: {
332
- xAxisPosition: AxisPosition
333
- yAxisPosition: AxisPosition
334
- width: number
335
- height: number
336
- }) {
337
- if ((xAxisPosition === 'bottom' || xAxisPosition === 'top') && (yAxisPosition === 'left' || yAxisPosition === 'right')) {
338
- return { width, height }
339
- } else if ((xAxisPosition === 'left' || xAxisPosition === 'right') && (yAxisPosition === 'bottom' || yAxisPosition === 'top')) {
340
- return {
341
- width: height,
342
- height: width
343
- }
344
- }
345
- }
346
-
347
- return new Observable(subscriber => {
348
- combineLatest({
349
- fullDataFormatter: fullDataFormatter$,
350
- layout: layout$
351
- }).pipe(
352
- takeUntil(destroy$),
353
- switchMap(async (d) => d),
354
- ).subscribe(data => {
355
-
356
- const axisSize = calcAxesSize({
357
- xAxisPosition: data.fullDataFormatter.grid.groupAxis.position,
358
- yAxisPosition: data.fullDataFormatter.grid.valueAxis.position,
359
- width: data.layout.width,
360
- height: data.layout.height,
361
- })
362
-
363
- subscriber.next(axisSize)
364
-
365
- return function unsubscribe () {
366
- destroy$.next(undefined)
367
- }
368
- })
369
- })
370
- }
371
-
372
- // export const gridHighlightObservable = ({ computedData$, fullChartParams$, event$ }: {
373
- // computedData$: Observable<ComputedDataTypeMap<'grid'>>
374
- // fullChartParams$: Observable<ChartParams>
375
- // event$: Subject<any>
376
- // }): Observable<string[]> => {
377
- // const datumList$ = computedData$.pipe(
378
- // map(d => d.flat())
379
- // )
380
- // return highlightObservable ({ datumList$, fullChartParams$, event$ })
381
- // }
382
-
383
- export const existSeriesLabelsObservable = ({ computedData$ }: { computedData$: Observable<ComputedDataTypeMap<'grid'>> }) => {
384
- return computedData$.pipe(
385
- map(data => {
386
- return data
387
- .filter(series => series.length)
388
- .map(series => {
389
- return series[0].seriesLabel
390
- })
391
- }),
392
- distinctUntilChanged((a, b) => {
393
- return JSON.stringify(a).length === JSON.stringify(b).length
394
- }),
395
- )
396
- }
397
-
398
- export const gridVisibleComputedDataObservable = ({ computedData$ }: { computedData$: Observable<ComputedDataTypeMap<'grid'>> }) => {
399
- return computedData$.pipe(
400
- map(data => {
401
- const visibleComputedData = data
402
- .map(d => {
403
- return d.filter(_d => {
404
- return _d.visible == true
405
- })
406
- })
407
- .filter(d => d.length)
408
- return visibleComputedData
409
- })
410
- )
411
- }
412
-
413
- export const isSeriesPositionSeprateObservable = ({ computedData$, fullDataFormatter$ }: {
414
- computedData$: Observable<ComputedDataTypeMap<'grid'>>
415
- fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
416
- }) => {
417
- return combineLatest({
418
- computedData: computedData$,
419
- fullDataFormatter: fullDataFormatter$
420
- }).pipe(
421
- map(data => {
422
- return data.fullDataFormatter.grid.seriesSlotIndexes && data.fullDataFormatter.grid.seriesSlotIndexes.length === data.computedData.length
423
- ? true
424
- : false
425
- }),
426
- distinctUntilChanged()
427
- )
428
- }
429
-
430
- // 所有container位置(對應series)
431
- export const gridContainerObservable = ({ computedData$, fullDataFormatter$, fullChartParams$, layout$ }: {
432
- computedData$: Observable<ComputedDataTypeMap<'grid'>>
433
- fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
434
- fullChartParams$: Observable<ChartParams>
435
- layout$: Observable<Layout>
436
- }) => {
437
-
438
- const gridContainer$ = combineLatest({
439
- computedData: computedData$,
440
- fullDataFormatter: fullDataFormatter$,
441
- fullChartParams: fullChartParams$,
442
- layout: layout$,
443
- }).pipe(
444
- switchMap(async (d) => d),
445
- map(data => {
446
-
447
- const grid = data.fullDataFormatter.grid
448
-
449
- // 有設定series定位
450
- const hasSeriesPosition = grid.seriesSlotIndexes && grid.seriesSlotIndexes.length === data.computedData.length
451
- ? true
452
- : false
453
-
454
- if (hasSeriesPosition) {
455
- // -- 依seriesSlotIndexes計算 --
456
- return data.computedData.map((seriesData, seriesIndex) => {
457
- const columnIndex = grid.seriesSlotIndexes[seriesIndex] % data.fullDataFormatter.container.columnAmount
458
- const rowIndex = Math.floor(grid.seriesSlotIndexes[seriesIndex] / data.fullDataFormatter.container.columnAmount)
459
- const { translate, scale } = calcGridContainerPosition(data.layout, data.fullDataFormatter.container, rowIndex, columnIndex)
460
- return {
461
- slotIndex: grid.seriesSlotIndexes[seriesIndex],
462
- rowIndex,
463
- columnIndex,
464
- translate,
465
- scale,
466
- }
467
- })
468
- } else {
469
- // -- 依grid的slotIndex計算 --
470
- const columnIndex = grid.slotIndex % data.fullDataFormatter.container.columnAmount
471
- const rowIndex = Math.floor(grid.slotIndex / data.fullDataFormatter.container.columnAmount)
472
- return data.computedData.map((seriesData, seriesIndex) => {
473
- const { translate, scale } = calcGridContainerPosition(data.layout, data.fullDataFormatter.container, rowIndex, columnIndex)
474
- return {
475
- slotIndex: grid.slotIndex,
476
- rowIndex,
477
- columnIndex,
478
- translate,
479
- scale,
480
- }
481
- })
482
- }
483
- })
484
- )
485
-
486
- return gridContainer$
1
+ import {
2
+ combineLatest,
3
+ distinctUntilChanged,
4
+ filter,
5
+ map,
6
+ merge,
7
+ takeUntil,
8
+ shareReplay,
9
+ switchMap,
10
+ Subject,
11
+ Observable } from 'rxjs'
12
+ import type {
13
+ AxisPosition,
14
+ ChartType,
15
+ ChartParams,
16
+ ComputedDataTypeMap,
17
+ ComputedDatumTypeMap,
18
+ ContextObserverFn,
19
+ DataTypeMap,
20
+ DataGridDatum,
21
+ ComputedDatumGrid,
22
+ DataFormatterTypeMap,
23
+ DataFormatterGrid,
24
+ DataFormatterValueAxis,
25
+ DataFormatterGroupAxis,
26
+ ComputedLayoutDatumGrid,
27
+ ComputedLayoutDataGrid,
28
+ GridContainerPosition,
29
+ HighlightTarget,
30
+ Layout,
31
+ TransformData } from '../types'
32
+ import { getMinAndMaxGrid } from '../utils/orbchartsUtils'
33
+ import { createAxisLinearScale, createAxisPointScale, createAxisQuantizeScale } from '../utils/d3Utils'
34
+ import { highlightObservable } from '../utils/observables'
35
+ import { calcGridContainerLayout } from '../utils/orbchartsUtils'
36
+ import { DATA_FORMATTER_GRID_GRID_DEFAULT } from '../defaults'
37
+ import { getMinAndMaxValue, transposeData, createGridSeriesLabels, createGridGroupLabels, seriesColorPredicate } from '../utils/orbchartsUtils'
38
+
39
+ export const gridComputedLayoutDataObservable = ({ computedData$, fullDataFormatter$, layout$ }: {
40
+ computedData$: Observable<ComputedDataTypeMap<'grid'>>
41
+ fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
42
+ layout$: Observable<Layout>
43
+ }): Observable<ComputedLayoutDatumGrid[][]> => {
44
+
45
+ // 未篩選group範圍前的group scale
46
+ function createOriginGroupScale (computedData: ComputedDatumGrid[][], dataFormatter: DataFormatterGrid, layout: Layout) {
47
+ const groupAxisWidth = (dataFormatter.grid.groupAxis.position === 'top' || dataFormatter.grid.groupAxis.position === 'bottom')
48
+ ? layout.width
49
+ : layout.height
50
+ const groupEndIndex = computedData[0] ? computedData[0].length - 1 : 0
51
+ const groupScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
52
+ maxValue: groupEndIndex,
53
+ minValue: 0,
54
+ axisWidth: groupAxisWidth,
55
+ scaleDomain: [0, groupEndIndex], // 不使用dataFormatter設定
56
+ scaleRange: [0, 1] // 不使用dataFormatter設定
57
+ })
58
+ return groupScale
59
+ }
60
+
61
+ // 未篩選group範圍及visible前的value scale
62
+ function createOriginValueScale (computedData: ComputedDatumGrid[][], dataFormatter: DataFormatterGrid, layout: Layout) {
63
+ const valueAxisWidth = (dataFormatter.grid.valueAxis.position === 'left' || dataFormatter.grid.valueAxis.position === 'right')
64
+ ? layout.height
65
+ : layout.width
66
+
67
+ const listData = computedData.flat()
68
+ const [minValue, maxValue] = getMinAndMaxValue(listData)
69
+
70
+ const valueScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
71
+ maxValue,
72
+ minValue,
73
+ axisWidth: valueAxisWidth,
74
+ scaleDomain: [minValue, maxValue], // 不使用dataFormatter設定
75
+ scaleRange: [0, 1] // 不使用dataFormatter設定
76
+ })
77
+
78
+ return valueScale
79
+ }
80
+
81
+ return combineLatest({
82
+ computedData: computedData$,
83
+ fullDataFormatter: fullDataFormatter$,
84
+ layout: layout$
85
+ }).pipe(
86
+ switchMap(async d => d),
87
+ map(data => {
88
+ const groupScale = createOriginGroupScale(data.computedData, data.fullDataFormatter, data.layout)
89
+ const valueScale = createOriginValueScale(data.computedData, data.fullDataFormatter, data.layout)
90
+ const zeroY = valueScale(0)
91
+
92
+ return data.computedData.map((seriesData, seriesIndex) => {
93
+ return seriesData.map((groupDatum, groupIndex) => {
94
+ const axisX = groupScale(groupIndex)
95
+ const axisY = valueScale(groupDatum.value ?? 0)
96
+ return {
97
+ ...groupDatum,
98
+ axisX,
99
+ axisY,
100
+ axisYFromZero: axisY - zeroY
101
+ }
102
+ })
103
+ })
104
+ })
105
+ )
106
+ }
107
+
108
+ export const gridAxesTransformObservable = ({ fullDataFormatter$, layout$ }: {
109
+ fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
110
+ layout$: Observable<Layout>
111
+ }): Observable<TransformData> => {
112
+ const destroy$ = new Subject()
113
+
114
+ function calcAxesTransform ({ xAxis, yAxis, width, height }: {
115
+ xAxis: DataFormatterGroupAxis | DataFormatterValueAxis,
116
+ yAxis: DataFormatterValueAxis,
117
+ width: number,
118
+ height: number
119
+ }): TransformData {
120
+ if (!xAxis || !yAxis) {
121
+ return {
122
+ translate: [0, 0],
123
+ scale: [1, 1],
124
+ rotate: 0,
125
+ rotateX: 0,
126
+ rotateY: 0,
127
+ value: ''
128
+ }
129
+ }
130
+ // const width = size.width - fullChartParams.layout.left - fullChartParams.layout.right
131
+ // const height = size.height - fullChartParams.layout.top - fullChartParams.layout.bottom
132
+ let translateX = 0
133
+ let translateY = 0
134
+ let rotate = 0
135
+ let rotateX = 0
136
+ let rotateY = 0
137
+ if (xAxis.position === 'bottom') {
138
+ if (yAxis.position === 'left') {
139
+ rotateX = 180
140
+ translateY = height
141
+ } else if (yAxis.position === 'right') {
142
+ rotateX = 180
143
+ rotateY = 180
144
+ translateX = width
145
+ translateY = height
146
+ } else {
147
+ // 預設
148
+ rotateX = 180
149
+ translateY = height
150
+ }
151
+ } else if (xAxis.position === 'top') {
152
+ if (yAxis.position === 'left') {
153
+ } else if (yAxis.position === 'right') {
154
+ rotateY = 180
155
+ translateX = width
156
+ } else {
157
+ // 預設
158
+ rotateX = 180
159
+ translateY = height
160
+ }
161
+ } else if (xAxis.position === 'left') {
162
+ if (yAxis.position === 'bottom') {
163
+ rotate = -90
164
+ translateY = height
165
+ } else if (yAxis.position === 'top') {
166
+ rotate = -90
167
+ rotateY = 180
168
+ } else {
169
+ // 預設
170
+ rotateX = 180
171
+ translateY = height
172
+ }
173
+ } else if (xAxis.position === 'right') {
174
+ if (yAxis.position === 'bottom') {
175
+ rotate = -90
176
+ rotateX = 180
177
+ translateY = height
178
+ translateX = width
179
+ } else if (yAxis.position === 'top') {
180
+ rotate = -90
181
+ rotateX = 180
182
+ rotateY = 180
183
+ translateX = width
184
+ } else {
185
+ // 預設
186
+ rotateX = 180
187
+ translateY = height
188
+ }
189
+ }
190
+ // selection.style('transform', `translate(${translateX}px, ${translateY}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`)
191
+
192
+ return {
193
+ translate: [translateX, translateY],
194
+ scale: [1, 1],
195
+ rotate,
196
+ rotateX,
197
+ rotateY,
198
+ value: `translate(${translateX}px, ${translateY}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`
199
+ }
200
+ }
201
+
202
+ return new Observable(subscriber => {
203
+ combineLatest({
204
+ fullDataFormatter: fullDataFormatter$,
205
+ layout: layout$
206
+ }).pipe(
207
+ takeUntil(destroy$),
208
+ switchMap(async (d) => d),
209
+ ).subscribe(data => {
210
+ const axesTransformData = calcAxesTransform({
211
+ xAxis: data.fullDataFormatter.grid.groupAxis,
212
+ yAxis: data.fullDataFormatter.grid.valueAxis,
213
+ width: data.layout.width,
214
+ height: data.layout.height
215
+ })
216
+
217
+ subscriber.next(axesTransformData)
218
+ })
219
+
220
+ return function unscbscribe () {
221
+ destroy$.next(undefined)
222
+ }
223
+ })
224
+ }
225
+
226
+
227
+ export const gridAxesReverseTransformObservable = ({ gridAxesTransform$ }: {
228
+ gridAxesTransform$: Observable<TransformData>
229
+ }): Observable<TransformData> => {
230
+ return gridAxesTransform$.pipe(
231
+ map(d => {
232
+ // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
233
+ const translate: [number, number] = [0, 0] // 無需逆轉
234
+ const scale: [number, number] = [1 / d.scale[0], 1 / d.scale[1]]
235
+ const rotate = d.rotate * -1
236
+ const rotateX = d.rotateX * -1
237
+ const rotateY = d.rotateY * -1
238
+ return {
239
+ translate,
240
+ scale,
241
+ rotate,
242
+ rotateX,
243
+ rotateY,
244
+ value: `translate(${translate[0]}px, ${translate[1]}px) rotate(${rotate}deg) rotateX(${rotateX}deg) rotateY(${rotateY}deg)`
245
+ }
246
+ }),
247
+ )
248
+ }
249
+
250
+ export const gridGraphicTransformObservable = ({ computedData$, fullDataFormatter$, layout$ }: {
251
+ computedData$: Observable<ComputedDataTypeMap<'grid'>>
252
+ fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
253
+ layout$: Observable<Layout>
254
+ }): Observable<TransformData> => {
255
+ const destroy$ = new Subject()
256
+
257
+ function calcGridDataAreaTransform ({ data, groupAxis, valueAxis, width, height }: {
258
+ data: ComputedDataTypeMap<'grid'>
259
+ groupAxis: DataFormatterGroupAxis
260
+ valueAxis: DataFormatterValueAxis
261
+ width: number
262
+ height: number
263
+ }): TransformData {
264
+ let translateX = 0
265
+ let translateY = 0
266
+ let scaleX = 0
267
+ let scaleY = 0
268
+
269
+ // -- groupScale --
270
+ const groupAxisWidth = (groupAxis.position === 'top' || groupAxis.position === 'bottom')
271
+ ? width
272
+ : height
273
+ const groupMin = 0
274
+ const groupMax = data[0] ? data[0].length - 1 : 0
275
+ const groupScaleDomainMin = groupAxis.scaleDomain[0] === 'auto'
276
+ ? groupMin - groupAxis.scalePadding
277
+ : groupAxis.scaleDomain[0] as number - groupAxis.scalePadding
278
+ const groupScaleDomainMax = groupAxis.scaleDomain[1] === 'auto'
279
+ ? groupMax + groupAxis.scalePadding
280
+ : groupAxis.scaleDomain[1] as number + groupAxis.scalePadding
281
+
282
+ const groupScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
283
+ maxValue: groupMax,
284
+ minValue: groupMin,
285
+ axisWidth: groupAxisWidth,
286
+ // scaleDomain: groupAxis.scaleDomain,
287
+ scaleDomain: [groupScaleDomainMin, groupScaleDomainMax],
288
+ scaleRange: [0, 1]
289
+ })
290
+
291
+ // -- translateX, scaleX --
292
+ const rangeMinX = groupScale(groupMin)
293
+ const rangeMaxX = groupScale(groupMax)
294
+ if (groupMin == groupMax) {
295
+ // 當group只有一個
296
+ translateX = 0
297
+ scaleX = 1
298
+ } else {
299
+ translateX = rangeMinX
300
+ const gWidth = rangeMaxX - rangeMinX
301
+ scaleX = gWidth / groupAxisWidth
302
+ }
303
+
304
+ // -- valueScale --
305
+ const filteredData = data.map((d, i) => {
306
+ return d.filter((_d, _i) => {
307
+ return _i >= groupScaleDomainMin && _i <= groupScaleDomainMax && _d.visible == true
308
+ })
309
+ })
310
+
311
+ const filteredMinAndMax = getMinAndMaxGrid(filteredData)
312
+
313
+ const valueAxisWidth = (valueAxis.position === 'left' || valueAxis.position === 'right')
314
+ ? height
315
+ : width
316
+
317
+ const valueScale: d3.ScaleLinear<number, number> = createAxisLinearScale({
318
+ maxValue: filteredMinAndMax[1],
319
+ minValue: filteredMinAndMax[0],
320
+ axisWidth: valueAxisWidth,
321
+ scaleDomain: valueAxis.scaleDomain,
322
+ scaleRange: valueAxis.scaleRange
323
+ })
324
+
325
+ // -- translateY, scaleY --
326
+ const minAndMax = getMinAndMaxGrid(data)
327
+ const rangeMinY = valueScale(minAndMax[0])
328
+ const rangeMaxY = valueScale(minAndMax[1])
329
+ translateY = rangeMinY
330
+ const gHeight = rangeMaxY - rangeMinY
331
+ scaleY = gHeight / valueAxisWidth
332
+
333
+ return {
334
+ translate: [translateX, translateY],
335
+ scale: [scaleX, scaleY],
336
+ rotate: 0,
337
+ rotateX: 0,
338
+ rotateY: 0,
339
+ value: `translate(${translateX}px, ${translateY}px) scale(${scaleX}, ${scaleY})`
340
+ }
341
+ }
342
+
343
+ return new Observable(subscriber => {
344
+ combineLatest({
345
+ computedData: computedData$,
346
+ fullDataFormatter: fullDataFormatter$,
347
+ layout: layout$
348
+ }).pipe(
349
+ takeUntil(destroy$),
350
+ switchMap(async (d) => d),
351
+ ).subscribe(data => {
352
+ const dataAreaTransformData = calcGridDataAreaTransform ({
353
+ data: data.computedData,
354
+ groupAxis: data.fullDataFormatter.grid.groupAxis,
355
+ valueAxis: data.fullDataFormatter.grid.valueAxis,
356
+ width: data.layout.width,
357
+ height: data.layout.height
358
+ })
359
+
360
+ subscriber.next(dataAreaTransformData)
361
+ })
362
+
363
+ return function unscbscribe () {
364
+ destroy$.next(undefined)
365
+ }
366
+ })
367
+ }
368
+
369
+ export const gridGraphicReverseScaleObservable = ({ gridContainerPosition$, gridAxesTransform$, gridGraphicTransform$ }: {
370
+ gridContainerPosition$: Observable<GridContainerPosition[]>
371
+ gridAxesTransform$: Observable<TransformData>
372
+ gridGraphicTransform$: Observable<TransformData>
373
+ }): Observable<[number, number][]> => {
374
+ return combineLatest({
375
+ gridContainerPosition: gridContainerPosition$,
376
+ gridAxesTransform: gridAxesTransform$,
377
+ gridGraphicTransform: gridGraphicTransform$,
378
+ }).pipe(
379
+ switchMap(async (d) => d),
380
+ map(data => {
381
+ if (data.gridAxesTransform.rotate == 0 || data.gridAxesTransform.rotate == 180) {
382
+ return data.gridContainerPosition.map((series, seriesIndex) => {
383
+ return [
384
+ 1 / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[seriesIndex].scale[0],
385
+ 1 / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[seriesIndex].scale[1],
386
+ ]
387
+ })
388
+ } else {
389
+ return data.gridContainerPosition.map((series, seriesIndex) => {
390
+ // 由於有垂直的旋轉,所以外層 (container) x和y的scale要互換
391
+ return [
392
+ 1 / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[seriesIndex].scale[1],
393
+ 1 / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[seriesIndex].scale[0],
394
+ ]
395
+ })
396
+ }
397
+ }),
398
+ )
399
+ }
400
+
401
+ export const gridAxesSizeObservable = ({ fullDataFormatter$, layout$ }: {
402
+ fullDataFormatter$: Observable<DataFormatterGrid>
403
+ layout$: Observable<Layout>
404
+ }): Observable<{
405
+ width: number;
406
+ height: number;
407
+ }> => {
408
+ const destroy$ = new Subject()
409
+
410
+ function calcAxesSize ({ xAxisPosition, yAxisPosition, width, height }: {
411
+ xAxisPosition: AxisPosition
412
+ yAxisPosition: AxisPosition
413
+ width: number
414
+ height: number
415
+ }) {
416
+ if ((xAxisPosition === 'bottom' || xAxisPosition === 'top') && (yAxisPosition === 'left' || yAxisPosition === 'right')) {
417
+ return { width, height }
418
+ } else if ((xAxisPosition === 'left' || xAxisPosition === 'right') && (yAxisPosition === 'bottom' || yAxisPosition === 'top')) {
419
+ return {
420
+ width: height,
421
+ height: width
422
+ }
423
+ }
424
+ }
425
+
426
+ return new Observable(subscriber => {
427
+ combineLatest({
428
+ fullDataFormatter: fullDataFormatter$,
429
+ layout: layout$
430
+ }).pipe(
431
+ takeUntil(destroy$),
432
+ switchMap(async (d) => d),
433
+ ).subscribe(data => {
434
+
435
+ const axisSize = calcAxesSize({
436
+ xAxisPosition: data.fullDataFormatter.grid.groupAxis.position,
437
+ yAxisPosition: data.fullDataFormatter.grid.valueAxis.position,
438
+ width: data.layout.width,
439
+ height: data.layout.height,
440
+ })
441
+
442
+ subscriber.next(axisSize)
443
+
444
+ return function unsubscribe () {
445
+ destroy$.next(undefined)
446
+ }
447
+ })
448
+ })
449
+ }
450
+
451
+ // export const gridHighlightObservable = ({ computedData$, fullChartParams$, event$ }: {
452
+ // computedData$: Observable<ComputedDataTypeMap<'grid'>>
453
+ // fullChartParams$: Observable<ChartParams>
454
+ // event$: Subject<any>
455
+ // }): Observable<string[]> => {
456
+ // const datumList$ = computedData$.pipe(
457
+ // map(d => d.flat())
458
+ // )
459
+ // return highlightObservable ({ datumList$, fullChartParams$, event$ })
460
+ // }
461
+
462
+ export const seriesLabelsObservable = ({ computedData$ }: { computedData$: Observable<ComputedDataTypeMap<'grid'>> }) => {
463
+ return computedData$.pipe(
464
+ map(data => {
465
+ return data
466
+ .filter(series => series.length)
467
+ .map(series => {
468
+ return series[0].seriesLabel
469
+ })
470
+ }),
471
+ distinctUntilChanged((a, b) => {
472
+ return JSON.stringify(a).length === JSON.stringify(b).length
473
+ }),
474
+ )
475
+ }
476
+
477
+ export const gridVisibleComputedDataObservable = ({ computedData$ }: { computedData$: Observable<ComputedDataTypeMap<'grid'>> }) => {
478
+ return computedData$.pipe(
479
+ map(data => {
480
+ const visibleComputedData = data
481
+ .map(d => {
482
+ return d.filter(_d => {
483
+ return _d.visible == true
484
+ })
485
+ })
486
+ .filter(d => d.length)
487
+ return visibleComputedData
488
+ })
489
+ )
490
+ }
491
+
492
+ export const gridVisibleComputedLayoutDataObservable = ({ computedLayoutData$ }: { computedLayoutData$: Observable<ComputedLayoutDataGrid> }) => {
493
+ return computedLayoutData$.pipe(
494
+ map(data => {
495
+ const visibleComputedData = data
496
+ .map(d => {
497
+ return d.filter(_d => {
498
+ return _d.visible == true
499
+ })
500
+ })
501
+ .filter(d => d.length)
502
+ return visibleComputedData
503
+ })
504
+ )
505
+ }
506
+
507
+ // export const isSeriesSeprateObservable = ({ computedData$, fullDataFormatter$ }: {
508
+ // computedData$: Observable<ComputedDataTypeMap<'grid'>>
509
+ // fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
510
+ // }) => {
511
+ // return combineLatest({
512
+ // computedData: computedData$,
513
+ // fullDataFormatter: fullDataFormatter$
514
+ // }).pipe(
515
+ // map(data => {
516
+ // return data.fullDataFormatter.grid.seriesSlotIndexes && data.fullDataFormatter.grid.seriesSlotIndexes.length === data.computedData.length
517
+ // ? true
518
+ // : false
519
+ // }),
520
+ // distinctUntilChanged()
521
+ // )
522
+ // }
523
+
524
+ // 所有container位置(對應series)
525
+ export const gridContainerPositionObservable = ({ computedData$, fullDataFormatter$, layout$ }: {
526
+ computedData$: Observable<ComputedDataTypeMap<'grid'>>
527
+ fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
528
+ layout$: Observable<Layout>
529
+ }): Observable<GridContainerPosition[]> => {
530
+
531
+ const gridContainerPosition$ = combineLatest({
532
+ computedData: computedData$,
533
+ fullDataFormatter: fullDataFormatter$,
534
+ layout: layout$,
535
+ }).pipe(
536
+ switchMap(async (d) => d),
537
+ map(data => {
538
+
539
+ if (data.fullDataFormatter.grid.separateSeries) {
540
+ // -- 依slotIndexes計算 --
541
+ return calcGridContainerLayout(data.layout, data.fullDataFormatter.container, data.computedData.length)
542
+ // return data.computedData.map((seriesData, seriesIndex) => {
543
+ // const columnIndex = seriesIndex % data.fullDataFormatter.container.columnAmount
544
+ // const rowIndex = Math.floor(seriesIndex / data.fullDataFormatter.container.columnAmount)
545
+ // const { translate, scale } = calcGridContainerPosition(data.layout, data.fullDataFormatter.container, rowIndex, columnIndex)
546
+ // return {
547
+ // slotIndex: seriesIndex,
548
+ // rowIndex,
549
+ // columnIndex,
550
+ // translate,
551
+ // scale,
552
+ // }
553
+ // })
554
+ } else {
555
+ // -- 無拆分 --
556
+ return calcGridContainerLayout(data.layout, data.fullDataFormatter.container, 1)
557
+ // const columnIndex = 0
558
+ // const rowIndex = 0
559
+ // return data.computedData.map((seriesData, seriesIndex) => {
560
+ // const { translate, scale } = calcGridContainerPosition(data.layout, data.fullDataFormatter.container, rowIndex, columnIndex)
561
+ // return {
562
+ // slotIndex: 0,
563
+ // rowIndex,
564
+ // columnIndex,
565
+ // translate,
566
+ // scale,
567
+ // }
568
+ // })
569
+ }
570
+ })
571
+ )
572
+
573
+ return gridContainerPosition$
487
574
  }