@orbcharts/plugins-basic 3.0.0-beta.15 → 3.0.0-beta.17
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.
- package/LICENSE +200 -200
- package/dist/orbcharts-plugins-basic.es.js +11839 -10485
- package/dist/orbcharts-plugins-basic.umd.js +231 -171
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseBars.d.ts +3 -3
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseBarsTriangle.d.ts +3 -3
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseDots.d.ts +3 -3
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLineAreas.d.ts +3 -3
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLines.d.ts +3 -3
- package/dist/src/base/BaseRacingBars.d.ts +23 -0
- package/dist/src/base/BaseRacingLabels.d.ts +20 -0
- package/dist/src/base/BaseRacingValueLabels.d.ts +20 -0
- package/dist/{orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts → src/base/BaseStackedBars.d.ts} +7 -7
- package/dist/{orbcharts-plugins-basic/src → src}/base/BaseValueAxis.d.ts +4 -7
- package/dist/src/base/BaseXAxis.d.ts +20 -0
- package/dist/src/base/BaseYAxis.d.ts +18 -0
- package/dist/{orbcharts-plugins-basic/src → src}/grid/defaults.d.ts +3 -3
- package/dist/{orbcharts-plugins-basic/src → src}/grid/gridObservables.d.ts +8 -1
- package/dist/{orbcharts-plugins-basic/src → src}/grid/index.d.ts +2 -2
- package/dist/src/grid/plugins/GroupZoom.d.ts +1 -0
- package/dist/src/grid/plugins/StackedBars.d.ts +1 -0
- package/dist/src/index.d.ts +7 -1
- package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/defaults.d.ts +2 -2
- package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/index.d.ts +1 -1
- package/dist/src/multiGrid/plugins/MultiStackedBars.d.ts +1 -0
- package/dist/src/multiValue/defaults.d.ts +13 -0
- package/dist/{orbcharts-plugins-basic/src → src}/multiValue/index.d.ts +5 -1
- package/dist/src/multiValue/multiValueObservables.d.ts +56 -0
- package/dist/src/multiValue/plugins/RacingBars.d.ts +1 -0
- package/dist/src/multiValue/plugins/RacingCounterTexts.d.ts +3 -0
- package/dist/src/multiValue/plugins/RacingValueAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/XAxis.d.ts +1 -0
- package/dist/src/multiValue/plugins/XYAxes.d.ts +1 -0
- package/dist/src/multiValue/plugins/XZoom.d.ts +1 -0
- package/dist/{orbcharts-plugins-basic/src → src}/utils/commonUtils.d.ts +1 -0
- package/dist/{orbcharts-plugins-basic/src → src}/utils/d3Graphics.d.ts +2 -1
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +44 -44
- package/src/base/BaseBars.ts +765 -765
- package/src/base/BaseBarsTriangle.ts +676 -676
- package/src/base/BaseDots.ts +464 -464
- package/src/base/BaseGroupAxis.ts +691 -679
- package/src/base/BaseLegend.ts +684 -684
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/BaseRacingBars.ts +552 -0
- package/src/base/BaseRacingLabels.ts +396 -0
- package/src/base/BaseRacingValueLabels.ts +403 -0
- package/src/base/{BaseStackedBar.ts → BaseStackedBars.ts} +782 -782
- package/src/base/BaseTooltip.ts +386 -385
- package/src/base/BaseValueAxis.ts +600 -583
- package/src/base/BaseXAxis.ts +427 -0
- package/src/base/BaseYAxis.ts +389 -0
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +213 -250
- package/src/grid/gridObservables.ts +612 -554
- package/src/grid/index.ts +16 -16
- package/src/grid/plugins/Bars.ts +69 -69
- package/src/grid/plugins/BarsPN.ts +66 -66
- package/src/grid/plugins/BarsTriangle.ts +73 -73
- package/src/grid/plugins/Dots.ts +68 -68
- package/src/grid/plugins/GridLegend.ts +107 -107
- package/src/grid/plugins/GridTooltip.ts +66 -66
- package/src/grid/plugins/GroupAux.ts +1120 -1103
- package/src/grid/plugins/GroupAxis.ts +73 -97
- package/src/grid/plugins/{GridZoom.ts → GroupZoom.ts} +218 -218
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/{StackedBar.ts → StackedBars.ts} +64 -64
- package/src/grid/plugins/StackedValueAxis.ts +96 -96
- package/src/grid/plugins/ValueAxis.ts +94 -94
- package/src/index.ts +6 -6
- package/src/multiGrid/defaults.ts +244 -228
- package/src/multiGrid/index.ts +14 -14
- package/src/multiGrid/multiGridObservables.ts +50 -49
- package/src/multiGrid/plugins/MultiBars.ts +108 -108
- package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
- package/src/multiGrid/plugins/MultiDots.ts +102 -102
- package/src/multiGrid/plugins/MultiGridLegend.ts +169 -159
- package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
- package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
- package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
- package/src/multiGrid/plugins/MultiLines.ts +101 -101
- package/src/multiGrid/plugins/{MultiStackedBar.ts → MultiStackedBars.ts} +106 -106
- package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
- package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
- package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -299
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
- package/src/multiValue/defaults.ts +388 -166
- package/src/multiValue/index.ts +13 -9
- package/src/multiValue/multiValueObservables.ts +667 -297
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
- package/src/multiValue/plugins/OrdinalBubbles.ts +0 -0
- package/src/multiValue/plugins/OrdinalXAxis.ts +0 -0
- package/src/multiValue/plugins/RacingBars.ts +373 -0
- package/src/multiValue/plugins/RacingCounterAxis.ts +0 -0
- package/src/multiValue/plugins/RacingCounterTexts.ts +300 -0
- package/src/multiValue/plugins/RacingValueAxis.ts +115 -0
- package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -0
- package/src/multiValue/plugins/Scatter.ts +426 -426
- package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
- package/src/multiValue/plugins/XAxis.ts +108 -0
- package/src/multiValue/plugins/XYAux.ts +682 -681
- package/src/multiValue/plugins/XYAxes.ts +194 -684
- package/src/multiValue/plugins/XYAxes_legacy.ts +684 -0
- package/src/multiValue/plugins/{XYZoom.ts → XZoom.ts} +299 -299
- package/src/noneData/defaults.ts +102 -102
- package/src/noneData/index.ts +3 -3
- package/src/noneData/plugins/Container.ts +27 -27
- package/src/noneData/plugins/Tooltip.ts +373 -373
- package/src/relationship/defaults.ts +220 -218
- package/src/relationship/index.ts +5 -5
- package/src/relationship/plugins/ForceDirected.ts +1168 -1168
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1403 -1403
- package/src/relationship/plugins/RelationshipLegend.ts +100 -100
- package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
- package/src/relationship/relationshipObservables.ts +49 -49
- package/src/series/defaults.ts +221 -230
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +636 -620
- package/src/series/plugins/Pie.ts +623 -623
- package/src/series/plugins/PieEventTexts.ts +284 -284
- package/src/series/plugins/PieLabels.ts +640 -640
- package/src/series/plugins/Rose.ts +516 -516
- package/src/series/plugins/RoseLabels.ts +600 -600
- package/src/series/plugins/SeriesLegend.ts +107 -107
- package/src/series/plugins/SeriesTooltip.ts +66 -66
- package/src/series/seriesObservables.ts +145 -145
- package/src/series/seriesUtils.ts +51 -51
- package/src/tree/defaults.ts +102 -100
- package/src/tree/index.ts +4 -4
- package/src/tree/plugins/TreeLegend.ts +100 -100
- package/src/tree/plugins/TreeMap.ts +341 -341
- package/src/tree/plugins/TreeTooltip.ts +66 -66
- package/src/utils/commonUtils.ts +31 -22
- package/src/utils/d3Graphics.ts +176 -174
- package/src/utils/d3Utils.ts +92 -92
- package/src/utils/observables.ts +14 -14
- package/src/utils/orbchartsUtils.ts +129 -129
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite.config.js +22 -22
- package/dist/orbcharts-plugins-basic/src/grid/plugins/GridZoom.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/index.d.ts +0 -7
- package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +0 -1
- package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +0 -9
- package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +0 -33
- package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +0 -1
- /package/dist/{orbcharts-plugins-basic/lib → lib}/core-types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/lib → lib}/core.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/lib → lib}/plugins-basic-types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseGroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/BaseTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/base/types.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/const.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Bars.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/BarsPN.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/BarsTriangle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Dots.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GridLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GridTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GroupAux.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/GroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/LineAreas.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/Lines.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/StackedValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/grid/plugins/ValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/multiGridObservables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiBars.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiDots.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiLines.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiStackedValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/MultiValueLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/MultiValueTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src/multiValue/plugins/Ranking.d.ts → src/multiValue/plugins/OrdinalBubbles.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src/multiValue/plugins/RankingAxis.d.ts → src/multiValue/plugins/OrdinalXAxis.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts → src/multiValue/plugins/RacingCounterAxis.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts → src/multiValue/plugins/RankingAxis_legacy.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/Scatter.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/ScatterBubbles.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/multiValue/plugins/XYAux.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts → src/multiValue/plugins/XYAxes_legacy.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/noneData/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src/series/plugins/Waffle.d.ts → src/noneData/plugins/Container.d.ts} +0 -0
- /package/{src/multiValue/plugins/Ranking.ts → dist/src/noneData/plugins/Tooltip.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/plugins/ForceDirected.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/plugins/ForceDirectedBubbles.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/plugins/RelationshipLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/plugins/RelationshipTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/relationship/relationshipObservables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Bubbles.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Pie.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/PieEventTexts.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/PieLabels.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/Rose.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/RoseLabels.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/SeriesLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/plugins/SeriesTooltip.d.ts +0 -0
- /package/{src/multiValue/plugins/RankingAxis.ts → dist/src/series/plugins/Waffle.d.ts} +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/seriesObservables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/series/seriesUtils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/defaults.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/index.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/plugins/TreeLegend.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/plugins/TreeMap.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/tree/plugins/TreeTooltip.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/d3Utils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/observables.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/src → src}/utils/orbchartsUtils.d.ts +0 -0
- /package/dist/{orbcharts-plugins-basic/vite.config.d.ts → vite.config.d.ts} +0 -0
@@ -0,0 +1,373 @@
|
|
1
|
+
import {
|
2
|
+
takeUntil,
|
3
|
+
combineLatest,
|
4
|
+
of,
|
5
|
+
iif,
|
6
|
+
interval,
|
7
|
+
map,
|
8
|
+
distinctUntilChanged,
|
9
|
+
shareReplay,
|
10
|
+
switchMap,
|
11
|
+
EMPTY,
|
12
|
+
Subject,
|
13
|
+
} from 'rxjs'
|
14
|
+
import type { Observable } from 'rxjs'
|
15
|
+
import type {
|
16
|
+
DefinePluginConfig,
|
17
|
+
} from '../../../lib/core-types'
|
18
|
+
import type { BaseRacingLabelsParams, BaseRacingBarsParams } from '../../../lib/plugins-basic-types'
|
19
|
+
import { defineMultiValuePlugin } from '../../../lib/core'
|
20
|
+
import { createBaseRacingLabels } from '../../base/BaseRacingLabels'
|
21
|
+
import { createBaseRacingValueLabels } from '../../base/BaseRacingValueLabels'
|
22
|
+
import { createBaseRacingBars } from '../../base/BaseRacingBars'
|
23
|
+
import { DEFAULT_RACING_BARS_PARAMS } from '../defaults'
|
24
|
+
import { LAYER_INDEX_OF_GRAPHIC } from '../../const'
|
25
|
+
import {
|
26
|
+
// visibleComputedSumDataObservable,
|
27
|
+
// visibleComputedRankingByIndexDataObservable,
|
28
|
+
// rankingAmountLimitObservable,
|
29
|
+
computedRankingAmountObservable,
|
30
|
+
rankingItemHeightObservable,
|
31
|
+
rankingScaleListObservable,
|
32
|
+
// computedRankingWithXYDataObservable
|
33
|
+
} from '../multiValueObservables'
|
34
|
+
|
35
|
+
const pluginName = 'RacingBars'
|
36
|
+
|
37
|
+
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RACING_BARS_PARAMS> = {
|
38
|
+
name: pluginName,
|
39
|
+
defaultParams: DEFAULT_RACING_BARS_PARAMS,
|
40
|
+
layerIndex: LAYER_INDEX_OF_GRAPHIC,
|
41
|
+
validator: (params, { validateColumns }) => {
|
42
|
+
const result = validateColumns(params, {
|
43
|
+
bar: {
|
44
|
+
toBeTypes: ['object']
|
45
|
+
},
|
46
|
+
barLabel: {
|
47
|
+
toBeTypes: ['object']
|
48
|
+
},
|
49
|
+
valueLabel: {
|
50
|
+
toBeTypes: ['object']
|
51
|
+
},
|
52
|
+
axisLabel: {
|
53
|
+
toBeTypes: ['object']
|
54
|
+
},
|
55
|
+
rankingAmount: {
|
56
|
+
toBe: 'number | "auto"',
|
57
|
+
test: (value: any) => {
|
58
|
+
return typeof value === 'number' || value === 'auto'
|
59
|
+
}
|
60
|
+
},
|
61
|
+
autorun: {
|
62
|
+
toBeTypes: ['boolean']
|
63
|
+
},
|
64
|
+
loop: {
|
65
|
+
toBeTypes: ['boolean']
|
66
|
+
},
|
67
|
+
})
|
68
|
+
if (params.bar) {
|
69
|
+
const barResult = validateColumns(params.bar, {
|
70
|
+
barWidth: {
|
71
|
+
toBeTypes: ['number']
|
72
|
+
},
|
73
|
+
barPadding: {
|
74
|
+
toBeTypes: ['number']
|
75
|
+
},
|
76
|
+
barRadius: {
|
77
|
+
toBeTypes: ['number', 'boolean']
|
78
|
+
},
|
79
|
+
})
|
80
|
+
if (barResult.status === 'error') {
|
81
|
+
return barResult
|
82
|
+
}
|
83
|
+
}
|
84
|
+
if (params.barLabel) {
|
85
|
+
const barLabelResult = validateColumns(params.barLabel, {
|
86
|
+
position: {
|
87
|
+
toBe: '"inside" | "outside" | "none"',
|
88
|
+
test: (value: any) => {
|
89
|
+
return value === 'inside' || value === 'outside' || value === 'none'
|
90
|
+
}
|
91
|
+
},
|
92
|
+
padding: {
|
93
|
+
toBeTypes: ['number']
|
94
|
+
},
|
95
|
+
rotate: {
|
96
|
+
toBeTypes: ['number']
|
97
|
+
},
|
98
|
+
colorType: {
|
99
|
+
toBeOption: 'ColorType',
|
100
|
+
},
|
101
|
+
})
|
102
|
+
if (barLabelResult.status === 'error') {
|
103
|
+
return barLabelResult
|
104
|
+
}
|
105
|
+
}
|
106
|
+
if (params.valueLabel) {
|
107
|
+
const valueLabelResult = validateColumns(params.valueLabel, {
|
108
|
+
padding: {
|
109
|
+
toBeTypes: ['number']
|
110
|
+
},
|
111
|
+
colorType: {
|
112
|
+
toBeOption: 'ColorType',
|
113
|
+
},
|
114
|
+
format: {
|
115
|
+
toBeTypes: ['Function']
|
116
|
+
},
|
117
|
+
})
|
118
|
+
if (valueLabelResult.status === 'error') {
|
119
|
+
return valueLabelResult
|
120
|
+
}
|
121
|
+
}
|
122
|
+
if (params.axisLabel) {
|
123
|
+
const axisLabelResult = validateColumns(params.axisLabel, {
|
124
|
+
offset: {
|
125
|
+
toBe: '[number, number]',
|
126
|
+
test: (value) => Array.isArray(value) && value.length === 2 && typeof value[0] === 'number' && typeof value[1] === 'number'
|
127
|
+
},
|
128
|
+
colorType: {
|
129
|
+
toBeOption: 'ColorType',
|
130
|
+
},
|
131
|
+
})
|
132
|
+
if (axisLabelResult.status === 'error') {
|
133
|
+
return axisLabelResult
|
134
|
+
}
|
135
|
+
}
|
136
|
+
return result
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
export const RacingBars = defineMultiValuePlugin(pluginConfig)(({ selection, name, observer, subject }) => {
|
141
|
+
|
142
|
+
const baseRacingBarsSelection = selection.append('g').attr('class', `${pluginName}-bars`)
|
143
|
+
const baseRacingLabelsSelection = selection.append('g').attr('class', `${pluginName}-labels`)
|
144
|
+
const baseRacingValueLabelsSelection = selection.append('g').attr('class', `${pluginName}-valueLabels`)
|
145
|
+
|
146
|
+
const destroy$ = new Subject()
|
147
|
+
|
148
|
+
// const baseRacingLabelsParams$: Observable<BaseRacingLabelsParams> = observer.fullParams$.pipe(
|
149
|
+
// takeUntil(destroy$),
|
150
|
+
// map(params => {
|
151
|
+
// return {
|
152
|
+
// ...params,
|
153
|
+
// axisLabel: {
|
154
|
+
// offset: [0, 0],
|
155
|
+
// colorType: 'primary'
|
156
|
+
// }
|
157
|
+
// }
|
158
|
+
// })
|
159
|
+
// )
|
160
|
+
|
161
|
+
// const baseRacingBarsParams$: Observable<BaseRacingBarsParams> = observer.fullParams$.pipe(
|
162
|
+
// takeUntil(destroy$),
|
163
|
+
// map(params => {
|
164
|
+
// return {
|
165
|
+
// ...params
|
166
|
+
// }
|
167
|
+
// })
|
168
|
+
// )
|
169
|
+
|
170
|
+
const baseRacingValueLabelsParams$ = observer.fullParams$.pipe(
|
171
|
+
takeUntil(destroy$),
|
172
|
+
map(params => {
|
173
|
+
return params.valueLabel
|
174
|
+
})
|
175
|
+
)
|
176
|
+
|
177
|
+
const rankingAmount$ = observer.fullParams$.pipe(
|
178
|
+
takeUntil(destroy$),
|
179
|
+
map(p => p.rankingAmount),
|
180
|
+
distinctUntilChanged(),
|
181
|
+
)
|
182
|
+
|
183
|
+
const computedRankingAmount$ = computedRankingAmountObservable({
|
184
|
+
containerSize$: observer.containerSize$,
|
185
|
+
visibleComputedData$: observer.visibleComputedData$,
|
186
|
+
textSizePx$: observer.textSizePx$,
|
187
|
+
rankingAmount$
|
188
|
+
}).pipe(
|
189
|
+
takeUntil(destroy$),
|
190
|
+
shareReplay(1)
|
191
|
+
)
|
192
|
+
|
193
|
+
const rankingItemHeight$ = rankingItemHeightObservable({
|
194
|
+
containerSize$: observer.containerSize$,
|
195
|
+
// visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
196
|
+
textSizePx$: observer.textSizePx$,
|
197
|
+
computedRankingAmount$
|
198
|
+
}).pipe(
|
199
|
+
takeUntil(destroy$),
|
200
|
+
shareReplay(1)
|
201
|
+
)
|
202
|
+
|
203
|
+
const rankingScaleList$ = rankingScaleListObservable({
|
204
|
+
visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
205
|
+
rankingItemHeight$
|
206
|
+
}).pipe(
|
207
|
+
takeUntil(destroy$),
|
208
|
+
shareReplay(1)
|
209
|
+
)
|
210
|
+
|
211
|
+
// const computedRankingWithXYData$ = computedRankingWithXYDataObservable({
|
212
|
+
// visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
213
|
+
// rankingScaleList$
|
214
|
+
// }).pipe(
|
215
|
+
// takeUntil(destroy$),
|
216
|
+
// )
|
217
|
+
|
218
|
+
// const xScale$ = combineLatest({
|
219
|
+
// xScale: observer.xScale$,
|
220
|
+
// layout: observer.layout$,
|
221
|
+
// containerSize: observer.containerSize$,
|
222
|
+
// }).pipe(
|
223
|
+
// takeUntil(destroy$),
|
224
|
+
// switchMap(async d => d),
|
225
|
+
// map(data => {
|
226
|
+
// // 原本的 xScale 是根據 layout 計算的,現在要根據 containerSize 重新計算
|
227
|
+
// const containerWidthScale = data.containerSize.width / data.layout.width
|
228
|
+
|
229
|
+
// return (n: number) => {
|
230
|
+
// const originWidth = data.xScale(n)
|
231
|
+
// if (originWidth == null) {
|
232
|
+
// return 0
|
233
|
+
// }
|
234
|
+
// return data.xScale(n) * containerWidthScale
|
235
|
+
// }
|
236
|
+
// }),
|
237
|
+
// shareReplay(1)
|
238
|
+
// )
|
239
|
+
|
240
|
+
const unsubscribeBaseRacingLabels = createBaseRacingLabels(`${pluginName}-labels`, {
|
241
|
+
selection: baseRacingLabelsSelection,
|
242
|
+
computedData$: observer.computedData$,
|
243
|
+
visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
244
|
+
rankingScaleList$,
|
245
|
+
xScale$: observer.xScale$,
|
246
|
+
fullParams$: observer.fullParams$,
|
247
|
+
fullDataFormatter$: observer.fullDataFormatter$,
|
248
|
+
fullChartParams$: observer.fullChartParams$,
|
249
|
+
// layout$: observer.layout$,
|
250
|
+
containerPosition$: observer.containerPosition$,
|
251
|
+
containerSize$: observer.containerSize$,
|
252
|
+
isCategorySeprate$: observer.isCategorySeprate$,
|
253
|
+
// xyValueIndex$: observer.xyValueIndex$,
|
254
|
+
})
|
255
|
+
|
256
|
+
const unsubscribeBaseRacingValueLabels = createBaseRacingValueLabels(`${pluginName}-valueLabels`, {
|
257
|
+
selection: baseRacingValueLabelsSelection,
|
258
|
+
computedData$: observer.computedData$,
|
259
|
+
visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
260
|
+
rankingScaleList$,
|
261
|
+
xScale$: observer.xScale$,
|
262
|
+
computedRankingAmount$,
|
263
|
+
fullParams$: baseRacingValueLabelsParams$,
|
264
|
+
// fullDataFormatter$: observer.fullDataFormatter$,
|
265
|
+
fullChartParams$: observer.fullChartParams$,
|
266
|
+
// layout$: observer.layout$,
|
267
|
+
containerPosition$: observer.containerPosition$,
|
268
|
+
containerSize$: observer.containerSize$,
|
269
|
+
isCategorySeprate$: observer.isCategorySeprate$,
|
270
|
+
// xyValueIndex$: observer.xyValueIndex$,
|
271
|
+
})
|
272
|
+
|
273
|
+
const unsubscribeBaseRacingBars = createBaseRacingBars(`${pluginName}-bars`, {
|
274
|
+
selection: baseRacingBarsSelection,
|
275
|
+
computedData$: observer.computedData$,
|
276
|
+
visibleComputedRankingData$: observer.visibleComputedRankingByIndexData$,
|
277
|
+
// xyValueIndex$: observer.xyValueIndex$,
|
278
|
+
CategoryDataMap$: observer.CategoryDataMap$,
|
279
|
+
fullParams$: observer.fullParams$,
|
280
|
+
fullChartParams$: observer.fullChartParams$,
|
281
|
+
highlight$: observer.highlight$,
|
282
|
+
rankingItemHeight$,
|
283
|
+
rankingScaleList$,
|
284
|
+
xScale$: observer.xScale$,
|
285
|
+
containerPosition$: observer.containerPosition$,
|
286
|
+
containerSize$: observer.containerSize$,
|
287
|
+
// layout$: observer.layout$,
|
288
|
+
isCategorySeprate$: observer.isCategorySeprate$,
|
289
|
+
event$: subject.event$,
|
290
|
+
})
|
291
|
+
|
292
|
+
const valueAmount$ = observer.visibleComputedRankingByIndexData$.pipe(
|
293
|
+
takeUntil(destroy$),
|
294
|
+
map(d => (d[0] && d[0][0] && d[0][0].value.length) ?? 0),
|
295
|
+
distinctUntilChanged()
|
296
|
+
)
|
297
|
+
|
298
|
+
const autorun$ = observer.fullParams$.pipe(
|
299
|
+
takeUntil(destroy$),
|
300
|
+
map(p => p.autorun),
|
301
|
+
distinctUntilChanged()
|
302
|
+
)
|
303
|
+
|
304
|
+
const loop$ = observer.fullParams$.pipe(
|
305
|
+
takeUntil(destroy$),
|
306
|
+
map(p => p.loop),
|
307
|
+
distinctUntilChanged()
|
308
|
+
)
|
309
|
+
|
310
|
+
const tickDurationPeriod$ = observer.fullChartParams$.pipe(
|
311
|
+
takeUntil(destroy$),
|
312
|
+
map(p => p.transitionDuration),
|
313
|
+
distinctUntilChanged()
|
314
|
+
)
|
315
|
+
|
316
|
+
// -- autorun --
|
317
|
+
let toggle = true
|
318
|
+
|
319
|
+
combineLatest({
|
320
|
+
autorun: autorun$,
|
321
|
+
loop: loop$,
|
322
|
+
valueAmount: valueAmount$,
|
323
|
+
tickDurationPeriod: tickDurationPeriod$,
|
324
|
+
// xyValueIndex: observer.xyValueIndex$,
|
325
|
+
fullDataFormatter: observer.fullDataFormatter$,
|
326
|
+
}).pipe(
|
327
|
+
takeUntil(destroy$),
|
328
|
+
switchMap(async d => d)
|
329
|
+
).subscribe(({ autorun, loop, valueAmount, tickDurationPeriod, fullDataFormatter }) => {
|
330
|
+
if (toggle == false) {
|
331
|
+
return
|
332
|
+
}
|
333
|
+
if (autorun) {
|
334
|
+
const nextIndex = fullDataFormatter.xAxis.valueIndex + 1
|
335
|
+
if (nextIndex < valueAmount) {
|
336
|
+
toggle = false // timer 執行期間不可再次執行
|
337
|
+
|
338
|
+
setTimeout(() => {
|
339
|
+
subject.dataFormatter$.next({
|
340
|
+
...fullDataFormatter,
|
341
|
+
xAxis: {
|
342
|
+
...fullDataFormatter.xAxis,
|
343
|
+
valueIndex: nextIndex
|
344
|
+
}
|
345
|
+
})
|
346
|
+
|
347
|
+
toggle = true
|
348
|
+
}, tickDurationPeriod)
|
349
|
+
} else if (nextIndex >= valueAmount && loop) {
|
350
|
+
toggle = false // timer 執行期間不可再次執行
|
351
|
+
|
352
|
+
setTimeout(() => {
|
353
|
+
subject.dataFormatter$.next({
|
354
|
+
...fullDataFormatter,
|
355
|
+
xAxis: {
|
356
|
+
...fullDataFormatter.xAxis,
|
357
|
+
valueIndex: 0
|
358
|
+
}
|
359
|
+
})
|
360
|
+
|
361
|
+
toggle = true
|
362
|
+
}, tickDurationPeriod)
|
363
|
+
}
|
364
|
+
}
|
365
|
+
})
|
366
|
+
|
367
|
+
return () => {
|
368
|
+
destroy$.next(undefined)
|
369
|
+
unsubscribeBaseRacingLabels()
|
370
|
+
unsubscribeBaseRacingValueLabels()
|
371
|
+
unsubscribeBaseRacingBars()
|
372
|
+
}
|
373
|
+
})
|
File without changes
|
@@ -0,0 +1,300 @@
|
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
combineLatest,
|
4
|
+
switchMap,
|
5
|
+
first,
|
6
|
+
takeUntil,
|
7
|
+
map,
|
8
|
+
distinctUntilChanged,
|
9
|
+
shareReplay,
|
10
|
+
Observable,
|
11
|
+
Subject } from 'rxjs'
|
12
|
+
import type { DefinePluginConfig } from '../../../lib/core-types'
|
13
|
+
import type { Subscription } from 'rxjs'
|
14
|
+
import {
|
15
|
+
defineMultiValuePlugin} from '../../../lib/core'
|
16
|
+
import type {
|
17
|
+
ComputedDatumMultiValue,
|
18
|
+
ComputedDataMultiValue,
|
19
|
+
ChartParams,
|
20
|
+
ContainerPositionScaled,
|
21
|
+
ContainerSize
|
22
|
+
} from '../../../lib/core-types'
|
23
|
+
import type { RacingCounterTextsParams } from '../../../lib/plugins-basic-types'
|
24
|
+
import { DEFAULT_RACING_COUNTER_TEXTS_PARAMS } from '../defaults'
|
25
|
+
// import { getD3TransitionEase } from '../../utils/d3Utils'
|
26
|
+
import { getClassName } from '../../utils/orbchartsUtils'
|
27
|
+
import { LAYER_INDEX_OF_LABEL } from '../../const'
|
28
|
+
|
29
|
+
type TextDatum = {
|
30
|
+
text: string
|
31
|
+
attr: { [key:string]: any }
|
32
|
+
style: { [key:string]: any }
|
33
|
+
}
|
34
|
+
|
35
|
+
const pluginName = 'RacingCounterTexts'
|
36
|
+
const containerClassName = getClassName(pluginName, 'container')
|
37
|
+
const boxClassName = getClassName(pluginName, 'box')
|
38
|
+
const textClassName = getClassName(pluginName, 'text')
|
39
|
+
|
40
|
+
const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_RACING_COUNTER_TEXTS_PARAMS> = {
|
41
|
+
name: pluginName,
|
42
|
+
defaultParams: DEFAULT_RACING_COUNTER_TEXTS_PARAMS,
|
43
|
+
layerIndex: LAYER_INDEX_OF_LABEL,
|
44
|
+
validator: (params, { validateColumns }) => {
|
45
|
+
const result = validateColumns(params, {
|
46
|
+
renderFn: {
|
47
|
+
toBeTypes: ['Function'],
|
48
|
+
},
|
49
|
+
textAttrs: {
|
50
|
+
toBeTypes: ['object[]'],
|
51
|
+
},
|
52
|
+
textStyles: {
|
53
|
+
toBeTypes: ['object[]'],
|
54
|
+
},
|
55
|
+
paddingRight: {
|
56
|
+
toBeTypes: ['number']
|
57
|
+
},
|
58
|
+
paddingBottom: {
|
59
|
+
toBeTypes: ['number']
|
60
|
+
},
|
61
|
+
})
|
62
|
+
return result
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
function renderText ({ selection, data, fullParams, containerSize }: {
|
67
|
+
selection: d3.Selection<SVGGElement, unknown, any, any>,
|
68
|
+
data: Array<TextDatum>
|
69
|
+
fullParams: RacingCounterTextsParams,
|
70
|
+
containerSize: ContainerSize
|
71
|
+
}): d3.Selection<SVGTextElement, TextDatum, SVGGElement, unknown> {
|
72
|
+
|
73
|
+
const x = containerSize.width - fullParams.paddingRight
|
74
|
+
const y = containerSize.height - fullParams.paddingBottom
|
75
|
+
|
76
|
+
const gSelection = selection
|
77
|
+
.selectAll<SVGGElement, unknown>(`g.${boxClassName}`)
|
78
|
+
.data([boxClassName])
|
79
|
+
.join('g')
|
80
|
+
.classed(boxClassName, true)
|
81
|
+
.attr('transform', `translate(${x}, ${y})`)
|
82
|
+
.each((d, i, g) => {
|
83
|
+
const _g = d3.select(g[i])
|
84
|
+
const textSelection = _g.selectAll<SVGTextElement, TextDatum>(`text.${textClassName}`)
|
85
|
+
.data(data)
|
86
|
+
.join('text')
|
87
|
+
.classed(textClassName, true)
|
88
|
+
.each((d, i, g) => {
|
89
|
+
const t = d3.select(g[i])
|
90
|
+
.text(d.text)
|
91
|
+
Object.keys(d.attr)
|
92
|
+
.forEach(key => {
|
93
|
+
t.attr(key, d.attr[key])
|
94
|
+
})
|
95
|
+
Object.keys(d.style)
|
96
|
+
.forEach(key => {
|
97
|
+
t.style(key, d.style[key])
|
98
|
+
})
|
99
|
+
})
|
100
|
+
})
|
101
|
+
|
102
|
+
return gSelection.selectAll<SVGTextElement, TextDatum>(`text.${textClassName}`)
|
103
|
+
}
|
104
|
+
|
105
|
+
function createTextData ({ computedData, valueLabel, valueIndex, renderFn, textAttrs, textStyles }: {
|
106
|
+
computedData: ComputedDataMultiValue
|
107
|
+
valueLabel: string
|
108
|
+
valueIndex: number
|
109
|
+
// eventData: EventMultiValue,
|
110
|
+
// t: number,
|
111
|
+
renderFn: (valueLabel: string, valueIndex: number, data: ComputedDataMultiValue) => string[] | string
|
112
|
+
textAttrs: Array<{ [key:string]: string | number }>
|
113
|
+
textStyles: Array<{ [key:string]: string | number }>
|
114
|
+
}): TextDatum[] {
|
115
|
+
const text = valueLabel || String(valueIndex) // 如果沒有文字就跑數字
|
116
|
+
const callbackText = renderFn(text, valueIndex, computedData)
|
117
|
+
const textArr = Array.isArray(callbackText) ? callbackText : [callbackText]
|
118
|
+
return textArr.map((d, i) => {
|
119
|
+
return {
|
120
|
+
text: d,
|
121
|
+
attr: textAttrs[i],
|
122
|
+
style: textStyles[i]
|
123
|
+
}
|
124
|
+
})
|
125
|
+
}
|
126
|
+
|
127
|
+
function createEachPieEventTexts (pluginName: string, context: {
|
128
|
+
containerSelection: d3.Selection<SVGGElement, any, any, unknown>
|
129
|
+
textData$: Observable<TextDatum[]>
|
130
|
+
// computedData$: Observable<ComputedDatumMultiValue[][]>
|
131
|
+
// containerComputedSortedData$: Observable<ComputedDatumMultiValue[]>
|
132
|
+
// CategoryDataMap$: Observable<Map<string, ComputedDatumMultiValue[]>>
|
133
|
+
fullParams$: Observable<RacingCounterTextsParams>
|
134
|
+
// fullChartParams$: Observable<ChartParams>
|
135
|
+
xyValueIndex$: Observable<[number, number]>
|
136
|
+
valueLabel$: Observable<string>
|
137
|
+
// multiValueHighlight$: Observable<ComputedDatumMultiValue[]>
|
138
|
+
// multiValueContainerPosition$: Observable<ContainerPositionScaled>
|
139
|
+
// event$: Subject<EventMultiValue>
|
140
|
+
containerSize$: Observable<ContainerSize>
|
141
|
+
}) {
|
142
|
+
const destroy$ = new Subject()
|
143
|
+
|
144
|
+
let textSelection: d3.Selection<SVGTextElement, TextDatum, SVGGElement, unknown> | undefined
|
145
|
+
|
146
|
+
combineLatest({
|
147
|
+
textData: context.textData$,
|
148
|
+
fullParams: context.fullParams$,
|
149
|
+
containerSize: context.containerSize$,
|
150
|
+
}).pipe(
|
151
|
+
takeUntil(destroy$),
|
152
|
+
).subscribe(data => {
|
153
|
+
textSelection = renderText({
|
154
|
+
selection: context.containerSelection,
|
155
|
+
data: data.textData,
|
156
|
+
fullParams: data.fullParams,
|
157
|
+
containerSize: data.containerSize
|
158
|
+
})
|
159
|
+
})
|
160
|
+
|
161
|
+
return () => {
|
162
|
+
destroy$.next(undefined)
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
export const RacingCounterTexts = defineMultiValuePlugin(pluginConfig)(({ selection, name, observer, subject }) => {
|
167
|
+
const destroy$ = new Subject()
|
168
|
+
|
169
|
+
const containerSelection$ = combineLatest({
|
170
|
+
computedData: observer.computedData$.pipe(
|
171
|
+
distinctUntilChanged((a, b) => {
|
172
|
+
// 只有當series的數量改變時,才重新計算
|
173
|
+
return a.length === b.length
|
174
|
+
}),
|
175
|
+
),
|
176
|
+
isCategorySeprate: observer.isCategorySeprate$
|
177
|
+
}).pipe(
|
178
|
+
takeUntil(destroy$),
|
179
|
+
switchMap(async (d) => d),
|
180
|
+
map(data => {
|
181
|
+
return data.isCategorySeprate
|
182
|
+
// category分開的時候顯示各別axis
|
183
|
+
? data.computedData
|
184
|
+
// category合併的時候只顯示第一個axis
|
185
|
+
: [data.computedData[0]]
|
186
|
+
}),
|
187
|
+
map((computedData, i) => {
|
188
|
+
return selection
|
189
|
+
.selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${containerClassName}`)
|
190
|
+
.data(computedData, d => d[0] ? d[0].categoryIndex : i)
|
191
|
+
.join('g')
|
192
|
+
.classed(containerClassName, true)
|
193
|
+
})
|
194
|
+
)
|
195
|
+
|
196
|
+
const axisSelection$ = containerSelection$.pipe(
|
197
|
+
takeUntil(destroy$),
|
198
|
+
map((containerSelection, i) => {
|
199
|
+
return containerSelection
|
200
|
+
.selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${boxClassName}`)
|
201
|
+
.data([boxClassName])
|
202
|
+
.join('g')
|
203
|
+
.classed(boxClassName, true)
|
204
|
+
})
|
205
|
+
)
|
206
|
+
|
207
|
+
combineLatest({
|
208
|
+
containerSelection: containerSelection$,
|
209
|
+
gridContainerPosition: observer.containerPosition$
|
210
|
+
}).pipe(
|
211
|
+
takeUntil(destroy$),
|
212
|
+
switchMap(async d => d)
|
213
|
+
).subscribe(data => {
|
214
|
+
data.containerSelection
|
215
|
+
.attr('transform', (d, i) => {
|
216
|
+
const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
|
217
|
+
const translate = gridContainerPosition.translate
|
218
|
+
const scale = gridContainerPosition.scale
|
219
|
+
// return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
|
220
|
+
return `translate(${translate[0]}, ${translate[1]})`
|
221
|
+
})
|
222
|
+
// .attr('opacity', 0)
|
223
|
+
// .transition()
|
224
|
+
// .attr('opacity', 1)
|
225
|
+
})
|
226
|
+
|
227
|
+
|
228
|
+
const valueLabel$ = combineLatest({
|
229
|
+
xyValueIndex: observer.xyValueIndex$,
|
230
|
+
fullDataFormatter: observer.fullDataFormatter$,
|
231
|
+
}).pipe(
|
232
|
+
takeUntil(destroy$),
|
233
|
+
switchMap(async d => d),
|
234
|
+
map(d => d.fullDataFormatter.valueLabels[d.xyValueIndex[0]] ?? ''),
|
235
|
+
distinctUntilChanged(),
|
236
|
+
shareReplay(1)
|
237
|
+
)
|
238
|
+
|
239
|
+
const textData$ = combineLatest({
|
240
|
+
xyValueIndex: observer.xyValueIndex$,
|
241
|
+
valueLabel: valueLabel$,
|
242
|
+
computedData: observer.computedData$,
|
243
|
+
fullParams: observer.fullParams$,
|
244
|
+
}).pipe(
|
245
|
+
takeUntil(destroy$),
|
246
|
+
switchMap(async d => d),
|
247
|
+
map(data => {
|
248
|
+
return createTextData({
|
249
|
+
valueIndex: data.xyValueIndex[0],
|
250
|
+
valueLabel: data.valueLabel,
|
251
|
+
computedData: data.computedData,
|
252
|
+
renderFn: data.fullParams.renderFn!,
|
253
|
+
textAttrs: data.fullParams.textAttrs!,
|
254
|
+
textStyles: data.fullParams.textStyles!,
|
255
|
+
})
|
256
|
+
}),
|
257
|
+
shareReplay(1)
|
258
|
+
)
|
259
|
+
|
260
|
+
const unsubscribeFnArr: (() => void)[] = []
|
261
|
+
|
262
|
+
containerSelection$
|
263
|
+
.pipe(
|
264
|
+
takeUntil(destroy$)
|
265
|
+
)
|
266
|
+
.subscribe(seriesCenterSelection => {
|
267
|
+
// 每次重新計算時,清除之前的訂閱
|
268
|
+
unsubscribeFnArr.forEach(fn => fn())
|
269
|
+
|
270
|
+
seriesCenterSelection.each((d, containerIndex, g) => {
|
271
|
+
|
272
|
+
const containerSelection = d3.select(g[containerIndex])
|
273
|
+
|
274
|
+
const containerComputedData$ = observer.visibleComputedRankingByIndexData$.pipe(
|
275
|
+
takeUntil(destroy$),
|
276
|
+
map(data => data[containerIndex] ?? data[0])
|
277
|
+
)
|
278
|
+
|
279
|
+
const containerPosition$ = observer.containerPosition$.pipe(
|
280
|
+
takeUntil(destroy$),
|
281
|
+
map(data => data[containerIndex] ?? data[0])
|
282
|
+
)
|
283
|
+
|
284
|
+
unsubscribeFnArr[containerIndex] = createEachPieEventTexts(pluginName, {
|
285
|
+
containerSelection: containerSelection,
|
286
|
+
textData$: textData$,
|
287
|
+
fullParams$: observer.fullParams$,
|
288
|
+
valueLabel$: valueLabel$,
|
289
|
+
xyValueIndex$: observer.xyValueIndex$,
|
290
|
+
containerSize$: observer.containerSize$
|
291
|
+
})
|
292
|
+
|
293
|
+
})
|
294
|
+
})
|
295
|
+
|
296
|
+
return () => {
|
297
|
+
destroy$.next(undefined)
|
298
|
+
unsubscribeFnArr.forEach(fn => fn())
|
299
|
+
}
|
300
|
+
})
|