@orbcharts/plugins-basic 3.0.0-alpha.50 → 3.0.0-alpha.51

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +4893 -4913
  3. package/dist/orbcharts-plugins-basic.umd.js +7 -7
  4. package/dist/src/base/BaseGroupAxis.d.ts +1 -0
  5. package/dist/src/grid/index.d.ts +1 -1
  6. package/dist/src/grid/plugins/BarsPN.d.ts +1 -0
  7. package/dist/src/grid/types.d.ts +3 -2
  8. package/dist/src/series/types.d.ts +2 -3
  9. package/package.json +42 -42
  10. package/src/base/BaseBarStack.ts +778 -778
  11. package/src/base/BaseBars.ts +764 -764
  12. package/src/base/BaseBarsTriangle.ts +672 -672
  13. package/src/base/BaseDots.ts +513 -502
  14. package/src/base/BaseGroupAxis.ts +562 -496
  15. package/src/base/BaseLegend.ts +641 -641
  16. package/src/base/BaseLineAreas.ts +625 -625
  17. package/src/base/BaseLines.ts +699 -699
  18. package/src/base/BaseValueAxis.ts +478 -478
  19. package/src/base/types.ts +2 -2
  20. package/src/grid/defaults.ts +125 -123
  21. package/src/grid/gridObservables.ts +248 -248
  22. package/src/grid/index.ts +15 -15
  23. package/src/grid/plugins/BarStack.ts +43 -43
  24. package/src/grid/plugins/Bars.ts +44 -44
  25. package/src/grid/plugins/{BarsDiverging.ts → BarsPN.ts} +41 -41
  26. package/src/grid/plugins/BarsTriangle.ts +42 -42
  27. package/src/grid/plugins/Dots.ts +37 -37
  28. package/src/grid/plugins/GridLegend.ts +59 -59
  29. package/src/grid/plugins/GroupAux.ts +645 -645
  30. package/src/grid/plugins/GroupAxis.ts +35 -35
  31. package/src/grid/plugins/LineAreas.ts +39 -39
  32. package/src/grid/plugins/Lines.ts +38 -38
  33. package/src/grid/plugins/ScalingArea.ts +173 -173
  34. package/src/grid/plugins/ValueAxis.ts +36 -36
  35. package/src/grid/plugins/ValueStackAxis.ts +38 -38
  36. package/src/grid/types.ts +122 -120
  37. package/src/index.ts +9 -9
  38. package/src/multiGrid/defaults.ts +152 -152
  39. package/src/multiGrid/index.ts +13 -13
  40. package/src/multiGrid/multiGridObservables.ts +44 -44
  41. package/src/multiGrid/plugins/MultiBarStack.ts +78 -78
  42. package/src/multiGrid/plugins/MultiBars.ts +77 -77
  43. package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -77
  44. package/src/multiGrid/plugins/MultiDots.ts +65 -65
  45. package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
  46. package/src/multiGrid/plugins/MultiGroupAxis.ts +69 -69
  47. package/src/multiGrid/plugins/MultiLineAreas.ts +67 -67
  48. package/src/multiGrid/plugins/MultiLines.ts +66 -66
  49. package/src/multiGrid/plugins/MultiValueAxis.ts +69 -69
  50. package/src/multiGrid/plugins/MultiValueStackAxis.ts +69 -69
  51. package/src/multiGrid/plugins/OverlappingValueAxes.ts +166 -166
  52. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +167 -167
  53. package/src/multiGrid/types.ts +71 -71
  54. package/src/noneData/defaults.ts +64 -64
  55. package/src/noneData/index.ts +3 -3
  56. package/src/noneData/plugins/Container.ts +10 -10
  57. package/src/noneData/plugins/Tooltip.ts +310 -310
  58. package/src/noneData/types.ts +26 -26
  59. package/src/series/defaults.ts +126 -126
  60. package/src/series/index.ts +9 -9
  61. package/src/series/plugins/Bubbles.ts +545 -602
  62. package/src/series/plugins/Pie.ts +576 -576
  63. package/src/series/plugins/PieEventTexts.ts +262 -262
  64. package/src/series/plugins/PieLabels.ts +304 -304
  65. package/src/series/plugins/Rose.ts +472 -472
  66. package/src/series/plugins/RoseLabels.ts +362 -362
  67. package/src/series/plugins/SeriesLegend.ts +59 -59
  68. package/src/series/seriesObservables.ts +145 -145
  69. package/src/series/seriesUtils.ts +51 -51
  70. package/src/series/types.ts +83 -83
  71. package/src/tree/defaults.ts +22 -22
  72. package/src/tree/index.ts +3 -3
  73. package/src/tree/plugins/TreeLegend.ts +59 -59
  74. package/src/tree/plugins/TreeMap.ts +305 -305
  75. package/src/tree/types.ts +23 -23
  76. package/src/utils/commonUtils.ts +21 -21
  77. package/src/utils/d3Graphics.ts +124 -124
  78. package/src/utils/d3Utils.ts +73 -73
  79. package/src/utils/observables.ts +14 -14
  80. package/src/utils/orbchartsUtils.ts +100 -100
  81. package/tsconfig.dev.json +16 -16
  82. package/tsconfig.json +13 -13
  83. package/tsconfig.prod.json +13 -13
  84. package/vite.config.js +49 -49
  85. package/dist/src/grid/plugins/BarsDiverging.d.ts +0 -1
@@ -1,65 +1,65 @@
1
- import * as d3 from 'd3'
2
- import {
3
- takeUntil,
4
- Subject } from 'rxjs'
5
- import {
6
- defineMultiGridPlugin } from '@orbcharts/core'
7
- import { DEFAULT_MULTI_DOTS_PARAMS } from '../defaults'
8
- import { createBaseDots } from '../../base/BaseDots'
9
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
10
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
11
-
12
- const pluginName = 'MultiDots'
13
-
14
- const gridClassName = getClassName(pluginName, 'grid')
15
-
16
- export const MultiDots = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_DOTS_PARAMS)(({ selection, name, subject, observer }) => {
17
- const destroy$ = new Subject()
18
-
19
- const unsubscribeFnArr: (() => void)[] = []
20
-
21
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
22
-
23
- multiGridPluginDetail$
24
- .pipe(
25
- takeUntil(destroy$)
26
- )
27
- .subscribe(data => {
28
- // 每次重新計算時,清除之前的訂閱
29
- unsubscribeFnArr.forEach(fn => fn())
30
-
31
- selection.selectAll(`g.${gridClassName}`)
32
- .data(data)
33
- .join('g')
34
- .attr('class', gridClassName)
35
- .each((d, i, g) => {
36
-
37
- const gridSelection = d3.select(g[i])
38
-
39
- unsubscribeFnArr[i] = createBaseDots(pluginName, {
40
- selection: gridSelection,
41
- computedData$: d.computedData$,
42
- visibleComputedData$: d.visibleComputedData$,
43
- computedLayoutData$: d.computedLayoutData$,
44
- visibleComputedLayoutData$: d.visibleComputedLayoutData$,
45
- seriesLabels$: d.seriesLabels$,
46
- SeriesDataMap$: d.SeriesDataMap$,
47
- GroupDataMap$: d.GroupDataMap$,
48
- fullParams$: observer.fullParams$,
49
- fullChartParams$: observer.fullChartParams$,
50
- gridAxesTransform$: d.gridAxesTransform$,
51
- gridGraphicTransform$: d.gridGraphicTransform$,
52
- gridGraphicReverseScale$: d.gridGraphicReverseScale$,
53
- gridAxesSize$: d.gridAxesSize$,
54
- gridHighlight$: d.gridHighlight$,
55
- gridContainerPosition$: d.gridContainerPosition$,
56
- event$: subject.event$ as Subject<any>,
57
- })
58
- })
59
- })
60
-
61
- return () => {
62
- destroy$.next(undefined)
63
- unsubscribeFnArr.forEach(fn => fn())
64
- }
65
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ takeUntil,
4
+ Subject } from 'rxjs'
5
+ import {
6
+ defineMultiGridPlugin } from '@orbcharts/core'
7
+ import { DEFAULT_MULTI_DOTS_PARAMS } from '../defaults'
8
+ import { createBaseDots } from '../../base/BaseDots'
9
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
10
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
11
+
12
+ const pluginName = 'MultiDots'
13
+
14
+ const gridClassName = getClassName(pluginName, 'grid')
15
+
16
+ export const MultiDots = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_DOTS_PARAMS)(({ selection, name, subject, observer }) => {
17
+ const destroy$ = new Subject()
18
+
19
+ const unsubscribeFnArr: (() => void)[] = []
20
+
21
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
22
+
23
+ multiGridPluginDetail$
24
+ .pipe(
25
+ takeUntil(destroy$)
26
+ )
27
+ .subscribe(data => {
28
+ // 每次重新計算時,清除之前的訂閱
29
+ unsubscribeFnArr.forEach(fn => fn())
30
+
31
+ selection.selectAll(`g.${gridClassName}`)
32
+ .data(data)
33
+ .join('g')
34
+ .attr('class', gridClassName)
35
+ .each((d, i, g) => {
36
+
37
+ const gridSelection = d3.select(g[i])
38
+
39
+ unsubscribeFnArr[i] = createBaseDots(pluginName, {
40
+ selection: gridSelection,
41
+ computedData$: d.computedData$,
42
+ visibleComputedData$: d.visibleComputedData$,
43
+ computedLayoutData$: d.computedLayoutData$,
44
+ visibleComputedLayoutData$: d.visibleComputedLayoutData$,
45
+ seriesLabels$: d.seriesLabels$,
46
+ SeriesDataMap$: d.SeriesDataMap$,
47
+ GroupDataMap$: d.GroupDataMap$,
48
+ fullParams$: observer.fullParams$,
49
+ fullChartParams$: observer.fullChartParams$,
50
+ gridAxesTransform$: d.gridAxesTransform$,
51
+ gridGraphicTransform$: d.gridGraphicTransform$,
52
+ gridGraphicReverseScale$: d.gridGraphicReverseScale$,
53
+ gridAxesSize$: d.gridAxesSize$,
54
+ gridHighlight$: d.gridHighlight$,
55
+ gridContainerPosition$: d.gridContainerPosition$,
56
+ event$: subject.event$ as Subject<any>,
57
+ })
58
+ })
59
+ })
60
+
61
+ return () => {
62
+ destroy$.next(undefined)
63
+ unsubscribeFnArr.forEach(fn => fn())
64
+ }
65
+ })
@@ -1,89 +1,89 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- takeUntil,
7
- Observable,
8
- Subject } from 'rxjs'
9
- import {
10
- defineMultiGridPlugin, mergeOptionsWithDefault } from '@orbcharts/core'
11
- import { DEFAULT_MULTI_GRID_LEGEND_PARAMS } from '../defaults'
12
- import { createBaseLegend } from '../../base/BaseLegend'
13
- import type { BaseLegendParams } from '../../base/BaseLegend'
14
-
15
- const pluginName = 'MultiGridLegend'
16
-
17
- export const MultiGridLegend = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GRID_LEGEND_PARAMS)(({ selection, rootSelection, observer, subject }) => {
18
-
19
- const destroy$ = new Subject()
20
-
21
- const seriesLabels$ = observer.multiGridEachDetail$.pipe(
22
- takeUntil(destroy$),
23
- map(multiGrid => {
24
- const seriesLabelsObservableArr = multiGrid.map((grid, gridIndex) => {
25
- return grid.SeriesDataMap$.pipe(
26
- // grid內的seriesLabels
27
- map(seriesDataMap => Array.from(seriesDataMap.keys()))
28
- )
29
- })
30
- return seriesLabelsObservableArr
31
- }),
32
- switchMap(seriesLabelsObservableArr => combineLatest(seriesLabelsObservableArr)),
33
- map(data => data.flat())
34
- )
35
-
36
- const seriesList$ = combineLatest({
37
- fullParams: observer.fullParams$,
38
- // multiGrid: observer.multiGridEachDetail$,
39
- computedData: observer.computedData$,
40
- }).pipe(
41
- takeUntil(destroy$),
42
- switchMap(async d => d),
43
- map(data => {
44
- // grid
45
- return data.computedData
46
- .map((gridData, gridIndex) => {
47
- // 這個grid全部series要套用的圖例列點樣式
48
- const gridListStyle = mergeOptionsWithDefault(data.fullParams.gridList[gridIndex] ?? {}, {
49
- listRectWidth: data.fullParams.listRectWidth,
50
- listRectHeight: data.fullParams.listRectHeight,
51
- listRectRadius: data.fullParams.listRectRadius,
52
- })
53
- // series
54
- return gridData.map(d => gridListStyle)
55
- })
56
- .flat()
57
-
58
- })
59
- )
60
-
61
- const fullParams$: Observable<BaseLegendParams> = combineLatest({
62
- fullParams: observer.fullParams$,
63
- seriesList: seriesList$
64
- }).pipe(
65
- takeUntil(destroy$),
66
- switchMap(async d => d),
67
- map(d => {
68
- return {
69
- ...d.fullParams,
70
- seriesList: d.seriesList
71
- }
72
- })
73
- )
74
-
75
- const unsubscribeBaseLegend = createBaseLegend(pluginName, {
76
- rootSelection,
77
- seriesLabels$,
78
- fullParams$,
79
- layout$: observer.layout$,
80
- fullChartParams$: observer.fullChartParams$,
81
- textSizePx$: observer.textSizePx$
82
- })
83
-
84
- return () => {
85
- destroy$.next(undefined)
86
- unsubscribeBaseLegend()
87
- }
88
- })
89
-
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ Observable,
8
+ Subject } from 'rxjs'
9
+ import {
10
+ defineMultiGridPlugin, mergeOptionsWithDefault } from '@orbcharts/core'
11
+ import { DEFAULT_MULTI_GRID_LEGEND_PARAMS } from '../defaults'
12
+ import { createBaseLegend } from '../../base/BaseLegend'
13
+ import type { BaseLegendParams } from '../../base/BaseLegend'
14
+
15
+ const pluginName = 'MultiGridLegend'
16
+
17
+ export const MultiGridLegend = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GRID_LEGEND_PARAMS)(({ selection, rootSelection, observer, subject }) => {
18
+
19
+ const destroy$ = new Subject()
20
+
21
+ const seriesLabels$ = observer.multiGridEachDetail$.pipe(
22
+ takeUntil(destroy$),
23
+ map(multiGrid => {
24
+ const seriesLabelsObservableArr = multiGrid.map((grid, gridIndex) => {
25
+ return grid.SeriesDataMap$.pipe(
26
+ // grid內的seriesLabels
27
+ map(seriesDataMap => Array.from(seriesDataMap.keys()))
28
+ )
29
+ })
30
+ return seriesLabelsObservableArr
31
+ }),
32
+ switchMap(seriesLabelsObservableArr => combineLatest(seriesLabelsObservableArr)),
33
+ map(data => data.flat())
34
+ )
35
+
36
+ const seriesList$ = combineLatest({
37
+ fullParams: observer.fullParams$,
38
+ // multiGrid: observer.multiGridEachDetail$,
39
+ computedData: observer.computedData$,
40
+ }).pipe(
41
+ takeUntil(destroy$),
42
+ switchMap(async d => d),
43
+ map(data => {
44
+ // grid
45
+ return data.computedData
46
+ .map((gridData, gridIndex) => {
47
+ // 這個grid全部series要套用的圖例列點樣式
48
+ const gridListStyle = mergeOptionsWithDefault(data.fullParams.gridList[gridIndex] ?? {}, {
49
+ listRectWidth: data.fullParams.listRectWidth,
50
+ listRectHeight: data.fullParams.listRectHeight,
51
+ listRectRadius: data.fullParams.listRectRadius,
52
+ })
53
+ // series
54
+ return gridData.map(d => gridListStyle)
55
+ })
56
+ .flat()
57
+
58
+ })
59
+ )
60
+
61
+ const fullParams$: Observable<BaseLegendParams> = combineLatest({
62
+ fullParams: observer.fullParams$,
63
+ seriesList: seriesList$
64
+ }).pipe(
65
+ takeUntil(destroy$),
66
+ switchMap(async d => d),
67
+ map(d => {
68
+ return {
69
+ ...d.fullParams,
70
+ seriesList: d.seriesList
71
+ }
72
+ })
73
+ )
74
+
75
+ const unsubscribeBaseLegend = createBaseLegend(pluginName, {
76
+ rootSelection,
77
+ seriesLabels$,
78
+ fullParams$,
79
+ layout$: observer.layout$,
80
+ fullChartParams$: observer.fullChartParams$,
81
+ textSizePx$: observer.textSizePx$
82
+ })
83
+
84
+ return () => {
85
+ destroy$.next(undefined)
86
+ unsubscribeBaseLegend()
87
+ }
88
+ })
89
+
@@ -1,69 +1,69 @@
1
- import * as d3 from 'd3'
2
- import {
3
- Subject,
4
- map,
5
- distinctUntilChanged,
6
- shareReplay,
7
- takeUntil
8
- } from 'rxjs'
9
- import {
10
- defineMultiGridPlugin } from '@orbcharts/core'
11
- import { DEFAULT_MULTI_GROUP_AXIS_PARAMS } from '../defaults'
12
- import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
13
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
14
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
15
-
16
- const pluginName = 'MultiGroupAxis'
17
-
18
- const gridClassName = getClassName(pluginName, 'grid')
19
-
20
- export const MultiGroupAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GROUP_AXIS_PARAMS)(({ selection, name, subject, observer }) => {
21
- const destroy$ = new Subject()
22
-
23
- const unsubscribeFnArr: (() => void)[] = []
24
-
25
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
26
-
27
- multiGridPluginDetail$
28
- .pipe(
29
- takeUntil(destroy$)
30
- )
31
- .subscribe(data => {
32
- // 每次重新計算時,清除之前的訂閱
33
- unsubscribeFnArr.forEach(fn => fn())
34
-
35
- selection.selectAll(`g.${gridClassName}`)
36
- .data(data)
37
- .join('g')
38
- .attr('class', gridClassName)
39
- .each((d, i, g) => {
40
-
41
- const gridSelection = d3.select(g[i])
42
-
43
- const isSeriesSeprate$ = d.dataFormatter$.pipe(
44
- takeUntil(destroy$),
45
- map(d => d.grid.separateSeries),
46
- distinctUntilChanged(),
47
- shareReplay(1)
48
- )
49
-
50
- unsubscribeFnArr[i] = createBaseGroupAxis(pluginName, {
51
- selection: gridSelection,
52
- computedData$: d.computedData$,
53
- fullParams$: observer.fullParams$,
54
- fullDataFormatter$: d.dataFormatter$,
55
- fullChartParams$: observer.fullChartParams$,
56
- gridAxesTransform$: d.gridAxesTransform$,
57
- gridAxesReverseTransform$: d.gridAxesReverseTransform$,
58
- gridAxesSize$: d.gridAxesSize$,
59
- gridContainerPosition$: d.gridContainerPosition$,
60
- isSeriesSeprate$,
61
- })
62
- })
63
- })
64
-
65
- return () => {
66
- destroy$.next(undefined)
67
- unsubscribeFnArr.forEach(fn => fn())
68
- }
69
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Subject,
4
+ map,
5
+ distinctUntilChanged,
6
+ shareReplay,
7
+ takeUntil
8
+ } from 'rxjs'
9
+ import {
10
+ defineMultiGridPlugin } from '@orbcharts/core'
11
+ import { DEFAULT_MULTI_GROUP_AXIS_PARAMS } from '../defaults'
12
+ import { createBaseGroupAxis } from '../../base/BaseGroupAxis'
13
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
14
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
15
+
16
+ const pluginName = 'MultiGroupAxis'
17
+
18
+ const gridClassName = getClassName(pluginName, 'grid')
19
+
20
+ export const MultiGroupAxis = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_GROUP_AXIS_PARAMS)(({ selection, name, subject, observer }) => {
21
+ const destroy$ = new Subject()
22
+
23
+ const unsubscribeFnArr: (() => void)[] = []
24
+
25
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
26
+
27
+ multiGridPluginDetail$
28
+ .pipe(
29
+ takeUntil(destroy$)
30
+ )
31
+ .subscribe(data => {
32
+ // 每次重新計算時,清除之前的訂閱
33
+ unsubscribeFnArr.forEach(fn => fn())
34
+
35
+ selection.selectAll(`g.${gridClassName}`)
36
+ .data(data)
37
+ .join('g')
38
+ .attr('class', gridClassName)
39
+ .each((d, i, g) => {
40
+
41
+ const gridSelection = d3.select(g[i])
42
+
43
+ const isSeriesSeprate$ = d.dataFormatter$.pipe(
44
+ takeUntil(destroy$),
45
+ map(d => d.grid.separateSeries),
46
+ distinctUntilChanged(),
47
+ shareReplay(1)
48
+ )
49
+
50
+ unsubscribeFnArr[i] = createBaseGroupAxis(pluginName, {
51
+ selection: gridSelection,
52
+ computedData$: d.computedData$,
53
+ fullParams$: observer.fullParams$,
54
+ fullDataFormatter$: d.dataFormatter$,
55
+ fullChartParams$: observer.fullChartParams$,
56
+ gridAxesTransform$: d.gridAxesTransform$,
57
+ gridAxesReverseTransform$: d.gridAxesReverseTransform$,
58
+ gridAxesSize$: d.gridAxesSize$,
59
+ gridContainerPosition$: d.gridContainerPosition$,
60
+ isSeriesSeprate$,
61
+ })
62
+ })
63
+ })
64
+
65
+ return () => {
66
+ destroy$.next(undefined)
67
+ unsubscribeFnArr.forEach(fn => fn())
68
+ }
69
+ })
@@ -1,67 +1,67 @@
1
- import * as d3 from 'd3'
2
- import {
3
- takeUntil,
4
- Subject } from 'rxjs'
5
- import {
6
- defineMultiGridPlugin } from '@orbcharts/core'
7
-
8
- import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
9
- import { createBaseLineAreas } from '../../base/BaseLineAreas'
10
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
11
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
12
-
13
- const pluginName = 'MultiLineAreas'
14
-
15
- const gridClassName = getClassName(pluginName, 'grid')
16
-
17
- export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
18
- const destroy$ = new Subject()
19
-
20
- const unsubscribeFnArr: (() => void)[] = []
21
-
22
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
23
-
24
- multiGridPluginDetail$
25
- .pipe(
26
- takeUntil(destroy$)
27
- )
28
- .subscribe(data => {
29
- // 每次重新計算時,清除之前的訂閱
30
- unsubscribeFnArr.forEach(fn => fn())
31
-
32
- selection.selectAll(`g.${gridClassName}`)
33
- .data(data)
34
- .join('g')
35
- .attr('class', gridClassName)
36
- .each((d, i, g) => {
37
-
38
- const gridSelection = d3.select(g[i])
39
-
40
- unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
41
- selection: gridSelection,
42
- computedData$: d.computedData$,
43
- computedLayoutData$: d.computedLayoutData$,
44
- visibleComputedData$: d.visibleComputedData$,
45
- visibleComputedLayoutData$: d.visibleComputedLayoutData$,
46
- seriesLabels$: d.seriesLabels$,
47
- SeriesDataMap$: d.SeriesDataMap$,
48
- GroupDataMap$: d.GroupDataMap$,
49
- fullDataFormatter$: d.dataFormatter$,
50
- fullParams$: observer.fullParams$,
51
- fullChartParams$: observer.fullChartParams$,
52
- gridAxesTransform$: d.gridAxesTransform$,
53
- gridGraphicTransform$: d.gridGraphicTransform$,
54
- gridAxesSize$: d.gridAxesSize$,
55
- gridHighlight$: d.gridHighlight$,
56
- gridContainerPosition$: d.gridContainerPosition$,
57
- layout$: observer.layout$,
58
- event$: subject.event$ as Subject<any>,
59
- })
60
- })
61
- })
62
-
63
- return () => {
64
- destroy$.next(undefined)
65
- unsubscribeFnArr.forEach(fn => fn())
66
- }
67
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ takeUntil,
4
+ Subject } from 'rxjs'
5
+ import {
6
+ defineMultiGridPlugin } from '@orbcharts/core'
7
+
8
+ import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
9
+ import { createBaseLineAreas } from '../../base/BaseLineAreas'
10
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
11
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
12
+
13
+ const pluginName = 'MultiLineAreas'
14
+
15
+ const gridClassName = getClassName(pluginName, 'grid')
16
+
17
+ export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
18
+ const destroy$ = new Subject()
19
+
20
+ const unsubscribeFnArr: (() => void)[] = []
21
+
22
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
23
+
24
+ multiGridPluginDetail$
25
+ .pipe(
26
+ takeUntil(destroy$)
27
+ )
28
+ .subscribe(data => {
29
+ // 每次重新計算時,清除之前的訂閱
30
+ unsubscribeFnArr.forEach(fn => fn())
31
+
32
+ selection.selectAll(`g.${gridClassName}`)
33
+ .data(data)
34
+ .join('g')
35
+ .attr('class', gridClassName)
36
+ .each((d, i, g) => {
37
+
38
+ const gridSelection = d3.select(g[i])
39
+
40
+ unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
41
+ selection: gridSelection,
42
+ computedData$: d.computedData$,
43
+ computedLayoutData$: d.computedLayoutData$,
44
+ visibleComputedData$: d.visibleComputedData$,
45
+ visibleComputedLayoutData$: d.visibleComputedLayoutData$,
46
+ seriesLabels$: d.seriesLabels$,
47
+ SeriesDataMap$: d.SeriesDataMap$,
48
+ GroupDataMap$: d.GroupDataMap$,
49
+ fullDataFormatter$: d.dataFormatter$,
50
+ fullParams$: observer.fullParams$,
51
+ fullChartParams$: observer.fullChartParams$,
52
+ gridAxesTransform$: d.gridAxesTransform$,
53
+ gridGraphicTransform$: d.gridGraphicTransform$,
54
+ gridAxesSize$: d.gridAxesSize$,
55
+ gridHighlight$: d.gridHighlight$,
56
+ gridContainerPosition$: d.gridContainerPosition$,
57
+ layout$: observer.layout$,
58
+ event$: subject.event$ as Subject<any>,
59
+ })
60
+ })
61
+ })
62
+
63
+ return () => {
64
+ destroy$.next(undefined)
65
+ unsubscribeFnArr.forEach(fn => fn())
66
+ }
67
+ })