@orbcharts/core 3.0.0-alpha.61 → 3.0.0-alpha.63
Sign up to get free protection for your applications and to get access to all the features.
- package/LICENSE +200 -200
- package/dist/lib/core-types.d.ts +1 -0
- package/dist/orbcharts-core.es.js +3418 -2726
- package/dist/orbcharts-core.umd.js +6 -2
- package/dist/src/AbstractChart.d.ts +5 -3
- package/dist/src/GridChart.d.ts +1 -1
- package/dist/src/MultiGridChart.d.ts +1 -1
- package/dist/src/MultiValueChart.d.ts +1 -1
- package/dist/src/RelationshipChart.d.ts +1 -1
- package/dist/src/SeriesChart.d.ts +1 -1
- package/dist/src/TreeChart.d.ts +1 -1
- package/dist/src/base/createBaseChart.d.ts +1 -1
- package/dist/src/base/createBasePlugin.d.ts +1 -1
- package/dist/src/base/validators/chartOptionsValidator.d.ts +3 -0
- package/dist/src/base/validators/chartParamsValidator.d.ts +3 -0
- package/dist/src/base/validators/elementValidator.d.ts +3 -0
- package/dist/src/base/validators/pluginsValidator.d.ts +3 -0
- package/dist/src/defaults.d.ts +1 -16
- package/dist/src/defineGridPlugin.d.ts +1 -1
- package/dist/src/defineMultiGridPlugin.d.ts +1 -1
- package/dist/src/defineMultiValuePlugin.d.ts +1 -1
- package/dist/src/defineNoneDataPlugin.d.ts +1 -1
- package/dist/src/defineRelationshipPlugin.d.ts +1 -1
- package/dist/src/defineSeriesPlugin.d.ts +1 -1
- package/dist/src/defineTreePlugin.d.ts +1 -1
- package/dist/src/grid/computedDataFn.d.ts +4 -0
- package/dist/src/grid/contextObserverCallback.d.ts +3 -0
- package/dist/src/grid/dataFormatterValidator.d.ts +3 -0
- package/dist/src/grid/dataValidator.d.ts +3 -0
- package/dist/src/index.d.ts +1 -1
- package/dist/src/multiGrid/computedDataFn.d.ts +3 -0
- package/dist/src/multiGrid/contextObserverCallback.d.ts +3 -0
- package/dist/src/multiGrid/dataFormatterValidator.d.ts +3 -0
- package/dist/src/multiGrid/dataValidator.d.ts +3 -0
- package/dist/src/multiValue/computedDataFn.d.ts +3 -0
- package/dist/src/multiValue/contextObserverCallback.d.ts +3 -0
- package/dist/src/multiValue/dataFormatterValidator.d.ts +3 -0
- package/dist/src/multiValue/dataValidator.d.ts +3 -0
- package/dist/src/relationship/computedDataFn.d.ts +3 -0
- package/dist/src/relationship/contextObserverCallback.d.ts +3 -0
- package/dist/src/relationship/dataFormatterValidator.d.ts +3 -0
- package/dist/src/relationship/dataValidator.d.ts +3 -0
- package/dist/src/series/computedDataFn.d.ts +3 -0
- package/dist/src/series/contextObserverCallback.d.ts +3 -0
- package/dist/src/series/dataFormatterValidator.d.ts +3 -0
- package/dist/src/series/dataValidator.d.ts +3 -0
- package/dist/src/tree/computedDataFn.d.ts +3 -0
- package/dist/src/tree/contextObserverCallback.d.ts +3 -0
- package/dist/src/tree/dataFormatterValidator.d.ts +3 -0
- package/dist/src/tree/dataValidator.d.ts +3 -0
- package/dist/src/utils/commonUtils.d.ts +1 -0
- package/dist/src/utils/errorMessage.d.ts +14 -0
- package/dist/src/{grid → utils}/gridObservables.d.ts +2 -2
- package/dist/src/utils/index.d.ts +7 -3
- package/dist/src/{multiGrid → utils}/multiGridObservables.d.ts +1 -1
- package/dist/src/utils/observables.d.ts +2 -1
- package/dist/src/utils/orbchartsUtils.d.ts +1 -12
- package/dist/src/{series → utils}/seriesObservables.d.ts +3 -3
- package/dist/src/{tree → utils}/treeObservables.d.ts +1 -1
- package/dist/src/utils/validator.d.ts +3 -0
- package/lib/core-types.ts +7 -0
- package/package.json +42 -41
- package/src/AbstractChart.ts +57 -48
- package/src/GridChart.ts +24 -20
- package/src/MultiGridChart.ts +24 -20
- package/src/MultiValueChart.ts +24 -20
- package/src/RelationshipChart.ts +24 -20
- package/src/SeriesChart.ts +24 -20
- package/src/TreeChart.ts +24 -20
- package/src/base/createBaseChart.ts +500 -388
- package/src/base/createBasePlugin.ts +152 -95
- package/src/base/validators/chartOptionsValidator.ts +24 -0
- package/src/base/validators/chartParamsValidator.ts +134 -0
- package/src/base/validators/elementValidator.ts +14 -0
- package/src/base/validators/pluginsValidator.ts +15 -0
- package/src/defaults.ts +232 -228
- package/src/defineGridPlugin.ts +3 -3
- package/src/defineMultiGridPlugin.ts +3 -3
- package/src/defineMultiValuePlugin.ts +3 -3
- package/src/defineNoneDataPlugin.ts +4 -4
- package/src/defineRelationshipPlugin.ts +3 -3
- package/src/defineSeriesPlugin.ts +3 -3
- package/src/defineTreePlugin.ts +3 -3
- package/src/grid/{computeGridData.ts → computedDataFn.ts} +129 -134
- package/src/grid/{createGridContextObserver.ts → contextObserverCallback.ts} +155 -155
- package/src/grid/dataFormatterValidator.ts +102 -0
- package/src/grid/dataValidator.ts +13 -0
- package/src/index.ts +20 -21
- package/src/multiGrid/{computeMultiGridData.ts → computedDataFn.ts} +123 -130
- package/src/multiGrid/{createMultiGridContextObserver.ts → contextObserverCallback.ts} +41 -41
- package/src/multiGrid/dataFormatterValidator.ts +116 -0
- package/src/multiGrid/dataValidator.ts +13 -0
- package/src/multiValue/{computeMultiValueData.ts → computedDataFn.ts} +176 -179
- package/src/multiValue/{createMultiValueContextObserver.ts → contextObserverCallback.ts} +12 -12
- package/src/multiValue/dataFormatterValidator.ts +10 -0
- package/src/multiValue/dataValidator.ts +10 -0
- package/src/relationship/{computeRelationshipData.ts → computedDataFn.ts} +125 -118
- package/src/relationship/{createRelationshipContextObserver.ts → contextObserverCallback.ts} +12 -12
- package/src/relationship/dataFormatterValidator.ts +10 -0
- package/src/relationship/dataValidator.ts +10 -0
- package/src/series/{computeSeriesData.ts → computedDataFn.ts} +88 -90
- package/src/series/{createSeriesContextObserver.ts → contextObserverCallback.ts} +100 -93
- package/src/series/dataFormatterValidator.ts +42 -0
- package/src/series/dataValidator.ts +13 -0
- package/src/tree/{computeTreeData.ts → computedDataFn.ts} +130 -132
- package/src/tree/{createTreeContextObserver.ts → contextObserverCallback.ts} +61 -61
- package/src/tree/dataFormatterValidator.ts +14 -0
- package/src/tree/dataValidator.ts +14 -0
- package/src/utils/commonUtils.ts +54 -50
- package/src/utils/d3Utils.ts +108 -108
- package/src/utils/errorMessage.ts +43 -0
- package/src/{grid → utils}/gridObservables.ts +611 -614
- package/src/utils/index.ts +10 -4
- package/src/{multiGrid → utils}/multiGridObservables.ts +366 -365
- package/src/utils/observables.ts +219 -202
- package/src/utils/orbchartsUtils.ts +352 -349
- package/src/{series → utils}/seriesObservables.ts +175 -175
- package/src/{tree → utils}/treeObservables.ts +94 -94
- package/src/utils/validator.ts +126 -0
- package/tsconfig.base.json +13 -13
- package/tsconfig.json +2 -2
- package/vite-env.d.ts +7 -0
- package/vite.config.js +22 -22
- package/dist/src/grid/computeGridData.d.ts +0 -6
- package/dist/src/grid/createGridContextObserver.d.ts +0 -3
- package/dist/src/multiGrid/computeMultiGridData.d.ts +0 -3
- package/dist/src/multiGrid/createMultiGridContextObserver.d.ts +0 -3
- package/dist/src/multiValue/computeMultiValueData.d.ts +0 -3
- package/dist/src/multiValue/createMultiValueContextObserver.d.ts +0 -3
- package/dist/src/relationship/computeRelationshipData.d.ts +0 -3
- package/dist/src/relationship/createRelationshipContextObserver.d.ts +0 -3
- package/dist/src/series/computeSeriesData.d.ts +0 -3
- package/dist/src/series/createSeriesContextObserver.d.ts +0 -3
- package/dist/src/tree/computeTreeData.d.ts +0 -3
- package/dist/src/tree/createTreeContextObserver.d.ts +0 -3
- package/dist/src/types/Axis.d.ts +0 -1
- package/dist/src/types/Chart.d.ts +0 -45
- package/dist/src/types/ChartParams.d.ts +0 -36
- package/dist/src/types/ComputedData.d.ts +0 -42
- package/dist/src/types/ComputedDataGrid.d.ts +0 -5
- package/dist/src/types/ComputedDataMultiGrid.d.ts +0 -3
- package/dist/src/types/ComputedDataMultiValue.d.ts +0 -6
- package/dist/src/types/ComputedDataRelationship.d.ts +0 -18
- package/dist/src/types/ComputedDataSeries.d.ts +0 -5
- package/dist/src/types/ComputedDataTree.d.ts +0 -7
- package/dist/src/types/ContextObserver.d.ts +0 -28
- package/dist/src/types/ContextObserverGrid.d.ts +0 -41
- package/dist/src/types/ContextObserverMultiGrid.d.ts +0 -15
- package/dist/src/types/ContextObserverMultiValue.d.ts +0 -4
- package/dist/src/types/ContextObserverRelationship.d.ts +0 -4
- package/dist/src/types/ContextObserverSeries.d.ts +0 -27
- package/dist/src/types/ContextObserverTree.d.ts +0 -11
- package/dist/src/types/ContextSubject.d.ts +0 -15
- package/dist/src/types/Data.d.ts +0 -19
- package/dist/src/types/DataFormatter.d.ts +0 -41
- package/dist/src/types/DataFormatterGrid.d.ts +0 -34
- package/dist/src/types/DataFormatterMultiGrid.d.ts +0 -20
- package/dist/src/types/DataFormatterMultiValue.d.ts +0 -18
- package/dist/src/types/DataFormatterRelationship.d.ts +0 -10
- package/dist/src/types/DataFormatterSeries.d.ts +0 -19
- package/dist/src/types/DataFormatterTree.d.ts +0 -7
- package/dist/src/types/DataGrid.d.ts +0 -6
- package/dist/src/types/DataMultiGrid.d.ts +0 -6
- package/dist/src/types/DataMultiValue.d.ts +0 -7
- package/dist/src/types/DataRelationship.d.ts +0 -21
- package/dist/src/types/DataSeries.d.ts +0 -6
- package/dist/src/types/DataTree.d.ts +0 -15
- package/dist/src/types/Event.d.ts +0 -56
- package/dist/src/types/Layout.d.ts +0 -8
- package/dist/src/types/Padding.d.ts +0 -6
- package/dist/src/types/Plugin.d.ts +0 -37
- package/dist/src/types/TransformData.d.ts +0 -8
- package/dist/src/types/index.d.ts +0 -37
- package/src/types/Axis.ts +0 -1
- package/src/types/Chart.ts +0 -54
- package/src/types/ChartParams.ts +0 -51
- package/src/types/ComputedData.ts +0 -84
- package/src/types/ComputedDataGrid.ts +0 -14
- package/src/types/ComputedDataMultiGrid.ts +0 -3
- package/src/types/ComputedDataMultiValue.ts +0 -9
- package/src/types/ComputedDataRelationship.ts +0 -20
- package/src/types/ComputedDataSeries.ts +0 -8
- package/src/types/ComputedDataTree.ts +0 -20
- package/src/types/ContextObserver.ts +0 -38
- package/src/types/ContextObserverGrid.ts +0 -43
- package/src/types/ContextObserverMultiGrid.ts +0 -17
- package/src/types/ContextObserverMultiValue.ts +0 -5
- package/src/types/ContextObserverRelationship.ts +0 -5
- package/src/types/ContextObserverSeries.ts +0 -29
- package/src/types/ContextObserverTree.ts +0 -11
- package/src/types/ContextSubject.ts +0 -18
- package/src/types/Data.ts +0 -45
- package/src/types/DataFormatter.ts +0 -74
- package/src/types/DataFormatterGrid.ts +0 -68
- package/src/types/DataFormatterMultiGrid.ts +0 -45
- package/src/types/DataFormatterMultiValue.ts +0 -24
- package/src/types/DataFormatterRelationship.ts +0 -26
- package/src/types/DataFormatterSeries.ts +0 -20
- package/src/types/DataFormatterTree.ts +0 -12
- package/src/types/DataGrid.ts +0 -11
- package/src/types/DataMultiGrid.ts +0 -7
- package/src/types/DataMultiValue.ts +0 -12
- package/src/types/DataRelationship.ts +0 -28
- package/src/types/DataSeries.ts +0 -11
- package/src/types/DataTree.ts +0 -20
- package/src/types/Event.ts +0 -153
- package/src/types/Layout.ts +0 -12
- package/src/types/Padding.ts +0 -6
- package/src/types/Plugin.ts +0 -60
- package/src/types/TransformData.ts +0 -8
- package/src/types/index.ts +0 -37
- /package/dist/src/{multiValue → utils}/multiValueObservables.d.ts +0 -0
- /package/dist/src/{relationship → utils}/relationshipObservables.d.ts +0 -0
- /package/src/{multiValue → utils}/multiValueObservables.ts +0 -0
- /package/src/{relationship → utils}/relationshipObservables.ts +0 -0
package/src/utils/observables.ts
CHANGED
@@ -1,203 +1,220 @@
|
|
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
|
-
ChartType,
|
14
|
-
ChartParams,
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
//
|
25
|
-
//
|
26
|
-
//
|
27
|
-
//
|
28
|
-
//
|
29
|
-
//
|
30
|
-
|
31
|
-
|
32
|
-
export
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
return
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
function
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
destroy
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
const
|
192
|
-
|
193
|
-
|
194
|
-
}
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
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
|
+
ChartType,
|
14
|
+
ChartParams,
|
15
|
+
ComputedDatumBase,
|
16
|
+
ComputedDataTypeMap,
|
17
|
+
ComputedDatumTypeMap,
|
18
|
+
DataFormatterTypeMap,
|
19
|
+
EventTypeMap,
|
20
|
+
HighlightTarget,
|
21
|
+
Layout,
|
22
|
+
TransformData } from '../../lib/core-types'
|
23
|
+
|
24
|
+
// interface DatumUnknown {
|
25
|
+
// value: number | null
|
26
|
+
// id: string
|
27
|
+
// // label: string
|
28
|
+
// seriesLabel?: string // 要符合每一種computedData所以不一定會有seriesLabel
|
29
|
+
// groupLabel?: string // 要符合每一種computedData所以不一定會有groupLabel
|
30
|
+
// }
|
31
|
+
|
32
|
+
export function resizeObservable(elem: HTMLElement | Element): Observable<DOMRectReadOnly> {
|
33
|
+
return new Observable(subscriber => {
|
34
|
+
const ro = new ResizeObserver(entries => {
|
35
|
+
const entry = entries[0]
|
36
|
+
if (entry && entry.contentRect) {
|
37
|
+
subscriber.next(entry.contentRect)
|
38
|
+
}
|
39
|
+
})
|
40
|
+
|
41
|
+
ro.observe(elem)
|
42
|
+
return function unsubscribe() {
|
43
|
+
ro.unobserve(elem)
|
44
|
+
}
|
45
|
+
})
|
46
|
+
}
|
47
|
+
|
48
|
+
// 通用 highlight Observable
|
49
|
+
export const highlightObservable = <T extends ChartType, D>({ datumList$, fullChartParams$, event$ }: {
|
50
|
+
datumList$: Observable<D[]>
|
51
|
+
fullChartParams$: Observable<ChartParams>
|
52
|
+
event$: Subject<EventTypeMap<T>>
|
53
|
+
}): Observable<D[]> => {
|
54
|
+
const destroy$ = new Subject()
|
55
|
+
|
56
|
+
// 預設的highlight
|
57
|
+
const highlightDefault$ = fullChartParams$.pipe(
|
58
|
+
takeUntil(destroy$),
|
59
|
+
map(d => {
|
60
|
+
return {
|
61
|
+
id: null,
|
62
|
+
seriesLabel: null,
|
63
|
+
groupLabel: null,
|
64
|
+
categoryLabel: null,
|
65
|
+
highlightDefault: d.highlightDefault
|
66
|
+
}
|
67
|
+
}),
|
68
|
+
distinctUntilChanged()
|
69
|
+
)
|
70
|
+
|
71
|
+
// 事件觸發的highlight
|
72
|
+
const highlightMouseover$ = event$.pipe(
|
73
|
+
takeUntil(destroy$),
|
74
|
+
// filter(d => d.eventName === 'mouseover' || d.eventName === 'mousemove'),
|
75
|
+
filter(d => d.eventName === 'mouseover'),
|
76
|
+
// distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
|
77
|
+
map(d => {
|
78
|
+
return (d as any).datum
|
79
|
+
? {
|
80
|
+
id: ((d as any).datum as any).id,
|
81
|
+
seriesLabel: ((d as any).datum as any).seriesLabel,
|
82
|
+
groupLabel: ((d as any).datum as any).groupLabel,
|
83
|
+
categoryLabel: ((d as any).datum as any).categoryLabel,
|
84
|
+
highlightDefault: null
|
85
|
+
}
|
86
|
+
: {
|
87
|
+
id: null,
|
88
|
+
seriesLabel: null,
|
89
|
+
groupLabel: null,
|
90
|
+
categoryLabel: null,
|
91
|
+
highlightDefault: null
|
92
|
+
}
|
93
|
+
})
|
94
|
+
)
|
95
|
+
const highlightMouseout$ = event$.pipe(
|
96
|
+
takeUntil(destroy$),
|
97
|
+
filter(d => d.eventName === 'mouseout'),
|
98
|
+
// distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
|
99
|
+
// map(d => {
|
100
|
+
// return { id: '', label: '' }
|
101
|
+
// })
|
102
|
+
switchMap(d => highlightDefault$)
|
103
|
+
)
|
104
|
+
|
105
|
+
function getDatumIds (datumList: ComputedDatumTypeMap<T>[], id: string | null) {
|
106
|
+
const datum = datumList.find(d => (d as ComputedDatumBase).id === id)
|
107
|
+
return datum ? [datum] : []
|
108
|
+
}
|
109
|
+
|
110
|
+
function getSeriesIds (datumList: ComputedDatumTypeMap<T>[], seriesLabel: string | null) {
|
111
|
+
return seriesLabel == null
|
112
|
+
? []
|
113
|
+
: datumList.filter(d => (d as ComputedDatumTypeMap<"series">).seriesLabel === seriesLabel)
|
114
|
+
}
|
115
|
+
|
116
|
+
function getGroupIds (datumList: ComputedDatumTypeMap<T>[], groupLabel: string | null) {
|
117
|
+
return groupLabel == null
|
118
|
+
? []
|
119
|
+
: datumList.filter(d => (d as ComputedDatumTypeMap<"grid">).groupLabel === groupLabel)
|
120
|
+
}
|
121
|
+
|
122
|
+
function getCategoryIds (datumList: ComputedDatumTypeMap<T>[], categoryLabel: string | null) {
|
123
|
+
return categoryLabel == null
|
124
|
+
? []
|
125
|
+
: datumList.filter(d => (d as ComputedDatumTypeMap<"multiValue" | "relationship" | "tree">).categoryLabel === categoryLabel)
|
126
|
+
}
|
127
|
+
|
128
|
+
return new Observable<D[]>(subscriber => {
|
129
|
+
combineLatest({
|
130
|
+
target: merge(highlightMouseover$, highlightMouseout$, highlightDefault$),
|
131
|
+
datumList: datumList$,
|
132
|
+
fullChartParams: fullChartParams$,
|
133
|
+
}).pipe(
|
134
|
+
takeUntil(destroy$),
|
135
|
+
switchMap(async d => d)
|
136
|
+
).subscribe(data => {
|
137
|
+
let datumList: ComputedDatumTypeMap<T>[] = []
|
138
|
+
if (data.fullChartParams.highlightTarget === 'datum') {
|
139
|
+
datumList = getDatumIds(data.datumList as ComputedDatumTypeMap<T>[], data.target.id)
|
140
|
+
} else if (data.fullChartParams.highlightTarget === 'series') {
|
141
|
+
datumList = getSeriesIds(data.datumList as ComputedDatumTypeMap<T>[], data.target.seriesLabel)
|
142
|
+
} else if (data.fullChartParams.highlightTarget === 'group') {
|
143
|
+
datumList = getGroupIds(data.datumList as ComputedDatumTypeMap<T>[], data.target.groupLabel)
|
144
|
+
} else if (data.fullChartParams.highlightTarget === 'category') {
|
145
|
+
datumList = getCategoryIds(data.datumList as ComputedDatumTypeMap<T>[], data.target.categoryLabel)
|
146
|
+
}
|
147
|
+
subscriber.next(datumList as D[])
|
148
|
+
})
|
149
|
+
|
150
|
+
return function unsubscribe () {
|
151
|
+
destroy$.next(undefined)
|
152
|
+
}
|
153
|
+
})
|
154
|
+
}
|
155
|
+
|
156
|
+
export const seriesDataMapObservable = <DatumType extends ComputedDatumTypeMap<'series' | 'grid'>>({ datumList$ }: { datumList$: Observable<DatumType[]> }) => {
|
157
|
+
return datumList$.pipe(
|
158
|
+
map(data => {
|
159
|
+
const SeriesDataMap: Map<string, DatumType[]> = new Map()
|
160
|
+
data.forEach(d => {
|
161
|
+
const seriesData = SeriesDataMap.get(d.seriesLabel) ?? []
|
162
|
+
seriesData.push(d)
|
163
|
+
SeriesDataMap.set(d.seriesLabel, seriesData)
|
164
|
+
})
|
165
|
+
return SeriesDataMap
|
166
|
+
})
|
167
|
+
)
|
168
|
+
}
|
169
|
+
|
170
|
+
export const groupDataMapObservable = <DatumType extends ComputedDatumTypeMap<'grid'>> ({ datumList$ }: { datumList$: Observable<DatumType[]> }) => {
|
171
|
+
return datumList$.pipe(
|
172
|
+
map(data => {
|
173
|
+
const GroupDataMap: Map<string, DatumType[]> = new Map()
|
174
|
+
data.forEach(d => {
|
175
|
+
const groupData = GroupDataMap.get(d.groupLabel) ?? []
|
176
|
+
groupData.push(d)
|
177
|
+
GroupDataMap.set(d.groupLabel, groupData)
|
178
|
+
})
|
179
|
+
return GroupDataMap
|
180
|
+
})
|
181
|
+
)
|
182
|
+
}
|
183
|
+
|
184
|
+
export const categoryDataMapObservable = <DatumType extends ComputedDatumTypeMap<'multiValue' | 'relationship' | 'tree'>> ({ datumList$ }: { datumList$: Observable<DatumType[]> }) => {
|
185
|
+
return datumList$.pipe(
|
186
|
+
map(data => {
|
187
|
+
const GroupDataMap: Map<string, DatumType[]> = new Map()
|
188
|
+
data
|
189
|
+
.filter(d => d.categoryLabel != null)
|
190
|
+
.forEach(d => {
|
191
|
+
const groupData = GroupDataMap.get(d.categoryLabel) ?? []
|
192
|
+
groupData.push(d)
|
193
|
+
GroupDataMap.set(d.categoryLabel, groupData)
|
194
|
+
})
|
195
|
+
return GroupDataMap
|
196
|
+
})
|
197
|
+
)
|
198
|
+
}
|
199
|
+
|
200
|
+
export const textSizePxObservable = (chartParams$: Observable<ChartParams>) => {
|
201
|
+
return chartParams$.pipe(
|
202
|
+
map(d => d.styles.textSize),
|
203
|
+
distinctUntilChanged(),
|
204
|
+
map(data => {
|
205
|
+
let value = NaN
|
206
|
+
if (typeof data === 'string') {
|
207
|
+
if (data.includes('rem')) {
|
208
|
+
const rootFontSizePx = parseFloat(getComputedStyle(document.documentElement).fontSize)
|
209
|
+
const num = parseFloat(data)
|
210
|
+
value = num * rootFontSizePx
|
211
|
+
} else if (data.includes('px')) {
|
212
|
+
value = parseFloat(data)
|
213
|
+
}
|
214
|
+
} else if (typeof data === 'number') {
|
215
|
+
return data
|
216
|
+
}
|
217
|
+
return value ? value : 14 // default
|
218
|
+
})
|
219
|
+
)
|
203
220
|
}
|