@orbcharts/plugins-basic 3.0.0-alpha.67 → 3.0.0-alpha.69

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +3436 -3358
  3. package/dist/orbcharts-plugins-basic.umd.js +14 -13
  4. package/dist/src/utils/d3Graphics.d.ts +10 -0
  5. package/package.json +42 -42
  6. package/src/base/BaseBarStack.ts +779 -779
  7. package/src/base/BaseBars.ts +764 -764
  8. package/src/base/BaseBarsTriangle.ts +672 -672
  9. package/src/base/BaseDots.ts +513 -513
  10. package/src/base/BaseGroupAxis.ts +675 -652
  11. package/src/base/BaseLegend.ts +642 -642
  12. package/src/base/BaseLineAreas.ts +628 -628
  13. package/src/base/BaseLines.ts +704 -704
  14. package/src/base/BaseValueAxis.ts +578 -578
  15. package/src/base/types.ts +2 -2
  16. package/src/grid/defaults.ts +128 -128
  17. package/src/grid/gridObservables.ts +543 -543
  18. package/src/grid/index.ts +15 -15
  19. package/src/grid/plugins/BarStack.ts +43 -43
  20. package/src/grid/plugins/Bars.ts +44 -44
  21. package/src/grid/plugins/BarsPN.ts +41 -41
  22. package/src/grid/plugins/BarsTriangle.ts +42 -42
  23. package/src/grid/plugins/Dots.ts +37 -37
  24. package/src/grid/plugins/GridLegend.ts +59 -59
  25. package/src/grid/plugins/GroupAux.ts +1014 -991
  26. package/src/grid/plugins/GroupAxis.ts +36 -36
  27. package/src/grid/plugins/LineAreas.ts +40 -40
  28. package/src/grid/plugins/Lines.ts +40 -40
  29. package/src/grid/plugins/ScalingArea.ts +174 -174
  30. package/src/grid/plugins/ValueAxis.ts +36 -36
  31. package/src/grid/plugins/ValueStackAxis.ts +38 -38
  32. package/src/grid/types.ts +123 -123
  33. package/src/index.ts +9 -9
  34. package/src/multiGrid/defaults.ts +158 -158
  35. package/src/multiGrid/index.ts +13 -13
  36. package/src/multiGrid/multiGridObservables.ts +49 -49
  37. package/src/multiGrid/plugins/MultiBarStack.ts +78 -78
  38. package/src/multiGrid/plugins/MultiBars.ts +77 -77
  39. package/src/multiGrid/plugins/MultiBarsTriangle.ts +77 -77
  40. package/src/multiGrid/plugins/MultiDots.ts +65 -65
  41. package/src/multiGrid/plugins/MultiGridLegend.ts +89 -89
  42. package/src/multiGrid/plugins/MultiGroupAxis.ts +70 -70
  43. package/src/multiGrid/plugins/MultiLineAreas.ts +77 -77
  44. package/src/multiGrid/plugins/MultiLines.ts +77 -77
  45. package/src/multiGrid/plugins/MultiValueAxis.ts +69 -69
  46. package/src/multiGrid/plugins/MultiValueStackAxis.ts +69 -69
  47. package/src/multiGrid/plugins/OverlappingValueAxes.ts +170 -170
  48. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +169 -169
  49. package/src/multiGrid/types.ts +72 -72
  50. package/src/noneData/defaults.ts +102 -102
  51. package/src/noneData/index.ts +3 -3
  52. package/src/noneData/plugins/Container.ts +10 -10
  53. package/src/noneData/plugins/Tooltip.ts +327 -327
  54. package/src/noneData/types.ts +26 -26
  55. package/src/series/defaults.ts +149 -149
  56. package/src/series/index.ts +9 -9
  57. package/src/series/plugins/Bubbles.ts +545 -545
  58. package/src/series/plugins/Pie.ts +584 -584
  59. package/src/series/plugins/PieEventTexts.ts +262 -262
  60. package/src/series/plugins/PieLabels.ts +604 -598
  61. package/src/series/plugins/Rose.ts +481 -481
  62. package/src/series/plugins/RoseLabels.ts +571 -565
  63. package/src/series/plugins/SeriesLegend.ts +59 -59
  64. package/src/series/seriesObservables.ts +145 -145
  65. package/src/series/seriesUtils.ts +51 -51
  66. package/src/series/types.ts +87 -87
  67. package/src/tree/defaults.ts +23 -23
  68. package/src/tree/index.ts +3 -3
  69. package/src/tree/plugins/TreeLegend.ts +59 -59
  70. package/src/tree/plugins/TreeMap.ts +305 -305
  71. package/src/tree/types.ts +23 -23
  72. package/src/utils/commonUtils.ts +21 -21
  73. package/src/utils/d3Graphics.ts +174 -124
  74. package/src/utils/d3Utils.ts +73 -73
  75. package/src/utils/observables.ts +14 -14
  76. package/src/utils/orbchartsUtils.ts +100 -100
  77. package/tsconfig.base.json +13 -13
  78. package/tsconfig.json +2 -2
  79. package/vite.config.js +22 -22
@@ -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,70 +1,70 @@
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
- textSizePx$: observer.textSizePx$,
62
- })
63
- })
64
- })
65
-
66
- return () => {
67
- destroy$.next(undefined)
68
- unsubscribeFnArr.forEach(fn => fn())
69
- }
70
- })
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
+ textSizePx$: observer.textSizePx$,
62
+ })
63
+ })
64
+ })
65
+
66
+ return () => {
67
+ destroy$.next(undefined)
68
+ unsubscribeFnArr.forEach(fn => fn())
69
+ }
70
+ })
@@ -1,77 +1,77 @@
1
- import * as d3 from 'd3'
2
- import {
3
- map,
4
- takeUntil,
5
- Subject } from 'rxjs'
6
- import {
7
- defineMultiGridPlugin } from '@orbcharts/core'
8
-
9
- import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
10
- import { createBaseLineAreas } from '../../base/BaseLineAreas'
11
- import { multiGridPluginDetailObservables } from '../multiGridObservables'
12
- import { getClassName, getUniID } from '../../utils/orbchartsUtils'
13
-
14
- const pluginName = 'MultiLineAreas'
15
-
16
- const gridClassName = getClassName(pluginName, 'grid')
17
-
18
- export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
19
- const destroy$ = new Subject()
20
-
21
- const unsubscribeFnArr: (() => void)[] = []
22
-
23
- // 攤平所有grid的containerPosition
24
- const allContainerPosition$ = observer.multiGridContainerPosition$.pipe(
25
- takeUntil(destroy$),
26
- map(data => {
27
- return data.flat()
28
- })
29
- )
30
-
31
- const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
32
-
33
- multiGridPluginDetail$
34
- .pipe(
35
- takeUntil(destroy$)
36
- )
37
- .subscribe(data => {
38
- // 每次重新計算時,清除之前的訂閱
39
- unsubscribeFnArr.forEach(fn => fn())
40
-
41
- selection.selectAll(`g.${gridClassName}`)
42
- .data(data)
43
- .join('g')
44
- .attr('class', gridClassName)
45
- .each((d, i, g) => {
46
-
47
- const gridSelection = d3.select(g[i])
48
-
49
- unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
50
- selection: gridSelection,
51
- computedData$: d.computedData$,
52
- computedLayoutData$: d.computedLayoutData$,
53
- visibleComputedData$: d.visibleComputedData$,
54
- visibleComputedLayoutData$: d.visibleComputedLayoutData$,
55
- seriesLabels$: d.seriesLabels$,
56
- SeriesDataMap$: d.SeriesDataMap$,
57
- GroupDataMap$: d.GroupDataMap$,
58
- fullDataFormatter$: d.dataFormatter$,
59
- fullParams$: observer.fullParams$,
60
- fullChartParams$: observer.fullChartParams$,
61
- gridAxesTransform$: d.gridAxesTransform$,
62
- gridGraphicTransform$: d.gridGraphicTransform$,
63
- gridAxesSize$: d.gridAxesSize$,
64
- gridHighlight$: d.gridHighlight$,
65
- gridContainerPosition$: d.gridContainerPosition$,
66
- allContainerPosition$: allContainerPosition$,
67
- layout$: observer.layout$,
68
- event$: subject.event$ as Subject<any>,
69
- })
70
- })
71
- })
72
-
73
- return () => {
74
- destroy$.next(undefined)
75
- unsubscribeFnArr.forEach(fn => fn())
76
- }
77
- })
1
+ import * as d3 from 'd3'
2
+ import {
3
+ map,
4
+ takeUntil,
5
+ Subject } from 'rxjs'
6
+ import {
7
+ defineMultiGridPlugin } from '@orbcharts/core'
8
+
9
+ import { DEFAULT_MULTI_LINE_AREAS_PARAMS } from '../defaults'
10
+ import { createBaseLineAreas } from '../../base/BaseLineAreas'
11
+ import { multiGridPluginDetailObservables } from '../multiGridObservables'
12
+ import { getClassName, getUniID } from '../../utils/orbchartsUtils'
13
+
14
+ const pluginName = 'MultiLineAreas'
15
+
16
+ const gridClassName = getClassName(pluginName, 'grid')
17
+
18
+ export const MultiLineAreas = defineMultiGridPlugin(pluginName, DEFAULT_MULTI_LINE_AREAS_PARAMS)(({ selection, name, subject, observer }) => {
19
+ const destroy$ = new Subject()
20
+
21
+ const unsubscribeFnArr: (() => void)[] = []
22
+
23
+ // 攤平所有grid的containerPosition
24
+ const allContainerPosition$ = observer.multiGridContainerPosition$.pipe(
25
+ takeUntil(destroy$),
26
+ map(data => {
27
+ return data.flat()
28
+ })
29
+ )
30
+
31
+ const multiGridPluginDetail$ = multiGridPluginDetailObservables(observer)
32
+
33
+ multiGridPluginDetail$
34
+ .pipe(
35
+ takeUntil(destroy$)
36
+ )
37
+ .subscribe(data => {
38
+ // 每次重新計算時,清除之前的訂閱
39
+ unsubscribeFnArr.forEach(fn => fn())
40
+
41
+ selection.selectAll(`g.${gridClassName}`)
42
+ .data(data)
43
+ .join('g')
44
+ .attr('class', gridClassName)
45
+ .each((d, i, g) => {
46
+
47
+ const gridSelection = d3.select(g[i])
48
+
49
+ unsubscribeFnArr[i] = createBaseLineAreas(pluginName, {
50
+ selection: gridSelection,
51
+ computedData$: d.computedData$,
52
+ computedLayoutData$: d.computedLayoutData$,
53
+ visibleComputedData$: d.visibleComputedData$,
54
+ visibleComputedLayoutData$: d.visibleComputedLayoutData$,
55
+ seriesLabels$: d.seriesLabels$,
56
+ SeriesDataMap$: d.SeriesDataMap$,
57
+ GroupDataMap$: d.GroupDataMap$,
58
+ fullDataFormatter$: d.dataFormatter$,
59
+ fullParams$: observer.fullParams$,
60
+ fullChartParams$: observer.fullChartParams$,
61
+ gridAxesTransform$: d.gridAxesTransform$,
62
+ gridGraphicTransform$: d.gridGraphicTransform$,
63
+ gridAxesSize$: d.gridAxesSize$,
64
+ gridHighlight$: d.gridHighlight$,
65
+ gridContainerPosition$: d.gridContainerPosition$,
66
+ allContainerPosition$: allContainerPosition$,
67
+ layout$: observer.layout$,
68
+ event$: subject.event$ as Subject<any>,
69
+ })
70
+ })
71
+ })
72
+
73
+ return () => {
74
+ destroy$.next(undefined)
75
+ unsubscribeFnArr.forEach(fn => fn())
76
+ }
77
+ })