@orbcharts/plugins-basic 3.0.1 → 3.0.3
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/lib/gridObservables.d.ts +1 -0
- package/dist/orbcharts-plugins-basic.es.js +14800 -13543
- package/dist/orbcharts-plugins-basic.umd.js +129 -99
- package/dist/src/base/BaseOrdinalBubbles.d.ts +26 -0
- package/dist/src/base/BaseRacingBars.d.ts +2 -1
- package/dist/src/base/BaseRacingLabels.d.ts +1 -0
- package/dist/src/base/BaseXZoom.d.ts +18 -0
- package/dist/src/grid/gridObservables.d.ts +4 -7
- package/dist/src/multiValue/defaults.d.ts +5 -1
- package/dist/src/multiValue/index.d.ts +4 -0
- package/dist/src/multiValue/multiValueObservables.d.ts +14 -1
- package/dist/src/multiValue/plugins/OrdinalAux.d.ts +3 -0
- package/dist/src/multiValue/plugins/OrdinalAxis.d.ts +3 -0
- package/dist/src/multiValue/plugins/OrdinalBubbles.d.ts +3 -0
- package/dist/src/multiValue/plugins/OrdinalZoom.d.ts +1 -0
- package/lib/core-types.ts +7 -7
- package/lib/core.ts +6 -6
- package/lib/gridObservables.ts +6 -0
- package/lib/plugins-basic-types.ts +6 -6
- package/package.json +48 -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 -691
- package/src/base/BaseLegend.ts +684 -684
- package/src/base/BaseLineAreas.ts +629 -629
- package/src/base/BaseLines.ts +706 -706
- package/src/base/BaseOrdinalBubbles.ts +728 -0
- package/src/base/BaseRacingBars.ts +582 -551
- package/src/base/BaseRacingLabels.ts +404 -396
- package/src/base/BaseRacingValueLabels.ts +403 -403
- package/src/base/BaseStackedBars.ts +782 -782
- package/src/base/BaseTooltip.ts +386 -386
- package/src/base/BaseValueAxis.ts +600 -600
- package/src/base/BaseXAxis.ts +427 -427
- package/src/base/BaseXZoom.ts +242 -0
- package/src/base/BaseYAxis.ts +389 -389
- package/src/base/types.ts +2 -2
- package/src/const.ts +30 -30
- package/src/grid/defaults.ts +213 -213
- package/src/grid/gridObservables.ts +635 -612
- 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 +1095 -1120
- package/src/grid/plugins/GroupAxis.ts +73 -73
- package/src/grid/plugins/GroupZoom.ts +218 -218
- package/src/grid/plugins/LineAreas.ts +65 -65
- package/src/grid/plugins/Lines.ts +59 -59
- package/src/grid/plugins/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 -244
- package/src/multiGrid/index.ts +14 -14
- package/src/multiGrid/multiGridObservables.ts +50 -50
- 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 -169
- 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/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 -300
- package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
- package/src/multiValue/defaults.ts +523 -431
- package/src/multiValue/index.ts +16 -12
- package/src/multiValue/multiValueObservables.ts +781 -666
- package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
- package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
- package/src/multiValue/plugins/OrdinalAux.ts +661 -0
- package/src/multiValue/plugins/OrdinalAxis.ts +525 -0
- package/src/multiValue/plugins/OrdinalBubbles.ts +226 -0
- package/src/multiValue/plugins/OrdinalZoom.ts +57 -0
- package/src/multiValue/plugins/RacingBars.ts +375 -373
- package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
- package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
- package/src/multiValue/plugins/Scatter.ts +486 -426
- package/src/multiValue/plugins/ScatterBubbles.ts +635 -554
- package/src/multiValue/plugins/XAxis.ts +107 -107
- package/src/multiValue/plugins/XYAux.ts +683 -682
- package/src/multiValue/plugins/XYAxes.ts +194 -194
- package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
- package/src/multiValue/plugins/XZoom.ts +40 -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 +221 -221
- package/src/relationship/index.ts +5 -5
- package/src/relationship/plugins/ForceDirected.ts +1173 -1173
- package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1411
- 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 -221
- package/src/series/index.ts +9 -9
- package/src/series/plugins/Bubbles.ts +636 -636
- 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 -102
- 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 -31
- package/src/utils/d3Graphics.ts +176 -176
- 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/src/multiValue/plugins/OrdinalXAxis.d.ts +0 -0
- package/dist/src/multiValue/plugins/RankingAxis_legacy.d.ts +0 -0
- package/src/multiValue/plugins/OrdinalXAxis.ts +0 -0
- package/src/multiValue/plugins/RankingAxis_legacy.ts +0 -109
@@ -1,552 +1,583 @@
|
|
1
|
-
import * as d3 from 'd3'
|
2
|
-
import {
|
3
|
-
combineLatest,
|
4
|
-
map,
|
5
|
-
switchMap,
|
6
|
-
takeUntil,
|
7
|
-
distinctUntilChanged,
|
8
|
-
shareReplay,
|
9
|
-
Observable,
|
10
|
-
Subject } from 'rxjs'
|
11
|
-
import type { BasePluginFn } from './types'
|
12
|
-
import type {
|
13
|
-
ComputedDatumMultiValue,
|
14
|
-
ComputedDataMultiValue,
|
15
|
-
// ComputedLayoutDataGrid,
|
16
|
-
|
17
|
-
ContainerPositionScaled,
|
18
|
-
ContainerSize,
|
19
|
-
EventMultiValue,
|
20
|
-
ChartParams,
|
21
|
-
Layout,
|
22
|
-
TransformData } from '../../lib/core-types'
|
23
|
-
import type { BaseRacingBarsParams } from '../../lib/plugins-basic-types'
|
24
|
-
import { getD3TransitionEase } from '../utils/d3Utils'
|
25
|
-
import { getClassName, getUniID } from '../utils/orbchartsUtils'
|
26
|
-
import { multiValueContainerSelectionsObservable } from '../multiValue/multiValueObservables'
|
27
|
-
|
28
|
-
// export interface BaseBarsParams {
|
29
|
-
// // barType: BarType
|
30
|
-
// barWidth: number
|
31
|
-
// barPadding: number
|
32
|
-
// barGroupPadding: number // 群組和群組間的間隔
|
33
|
-
// barRadius: number | boolean
|
34
|
-
// }
|
35
|
-
|
36
|
-
interface BaseRacingBarsContext {
|
37
|
-
selection: d3.Selection<any, unknown, any, unknown>
|
38
|
-
computedData$: Observable<ComputedDataMultiValue>
|
39
|
-
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>
|
40
|
-
CategoryDataMap$: Observable<Map<string, ComputedDatumMultiValue[]>>
|
41
|
-
fullParams$: Observable<BaseRacingBarsParams>
|
42
|
-
fullChartParams$: Observable<ChartParams>
|
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
|
-
const
|
85
|
-
|
86
|
-
.
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
.
|
91
|
-
.attr('
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
.
|
99
|
-
.
|
100
|
-
.
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
// const
|
119
|
-
const
|
120
|
-
const
|
121
|
-
|
122
|
-
:
|
123
|
-
:
|
124
|
-
|
125
|
-
|
126
|
-
gSelection.
|
127
|
-
|
128
|
-
.
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
.
|
133
|
-
.
|
134
|
-
|
135
|
-
.attr('width', d =>
|
136
|
-
.attr('
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
.
|
142
|
-
.
|
143
|
-
.
|
144
|
-
.attr('
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
.attr('
|
150
|
-
.attr('
|
151
|
-
.attr('
|
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
|
-
.attr('
|
189
|
-
.attr('
|
190
|
-
.attr('
|
191
|
-
|
192
|
-
}
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
.
|
206
|
-
.
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
}
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
//
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
//
|
235
|
-
|
236
|
-
//
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
const
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
// const
|
254
|
-
|
255
|
-
//
|
256
|
-
//
|
257
|
-
//
|
258
|
-
//
|
259
|
-
//
|
260
|
-
//
|
261
|
-
//
|
262
|
-
//
|
263
|
-
//
|
264
|
-
//
|
265
|
-
//
|
266
|
-
|
267
|
-
//
|
268
|
-
|
269
|
-
//
|
270
|
-
//
|
271
|
-
//
|
272
|
-
//
|
273
|
-
//
|
274
|
-
//
|
275
|
-
//
|
276
|
-
//
|
277
|
-
//
|
278
|
-
//
|
279
|
-
//
|
280
|
-
//
|
281
|
-
//
|
282
|
-
//
|
283
|
-
//
|
284
|
-
//
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
)
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
//
|
300
|
-
//
|
301
|
-
//
|
302
|
-
//
|
303
|
-
//
|
304
|
-
//
|
305
|
-
//
|
306
|
-
//
|
307
|
-
//
|
308
|
-
//
|
309
|
-
//
|
310
|
-
//
|
311
|
-
//
|
312
|
-
// // category
|
313
|
-
//
|
314
|
-
//
|
315
|
-
//
|
316
|
-
//
|
317
|
-
//
|
318
|
-
//
|
319
|
-
// .
|
320
|
-
// .
|
321
|
-
// .
|
322
|
-
//
|
323
|
-
// )
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
//
|
344
|
-
//
|
345
|
-
//
|
346
|
-
//
|
347
|
-
//
|
348
|
-
//
|
349
|
-
//
|
350
|
-
//
|
351
|
-
//
|
352
|
-
// const
|
353
|
-
//
|
354
|
-
//
|
355
|
-
//
|
356
|
-
//
|
357
|
-
//
|
358
|
-
// // .attr('opacity',
|
359
|
-
//
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
return data.
|
372
|
-
}
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
).
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
//
|
449
|
-
//
|
450
|
-
//
|
451
|
-
//
|
452
|
-
//
|
453
|
-
//
|
454
|
-
//
|
455
|
-
//
|
456
|
-
//
|
457
|
-
//
|
458
|
-
|
459
|
-
//
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
1
|
+
import * as d3 from 'd3'
|
2
|
+
import {
|
3
|
+
combineLatest,
|
4
|
+
map,
|
5
|
+
switchMap,
|
6
|
+
takeUntil,
|
7
|
+
distinctUntilChanged,
|
8
|
+
shareReplay,
|
9
|
+
Observable,
|
10
|
+
Subject } from 'rxjs'
|
11
|
+
import type { BasePluginFn } from './types'
|
12
|
+
import type {
|
13
|
+
ComputedDatumMultiValue,
|
14
|
+
ComputedDataMultiValue,
|
15
|
+
// ComputedLayoutDataGrid,
|
16
|
+
DataFormatterMultiValue,
|
17
|
+
ContainerPositionScaled,
|
18
|
+
ContainerSize,
|
19
|
+
EventMultiValue,
|
20
|
+
ChartParams,
|
21
|
+
Layout,
|
22
|
+
TransformData } from '../../lib/core-types'
|
23
|
+
import type { BaseRacingBarsParams } from '../../lib/plugins-basic-types'
|
24
|
+
import { getD3TransitionEase } from '../utils/d3Utils'
|
25
|
+
import { getClassName, getUniID } from '../utils/orbchartsUtils'
|
26
|
+
import { multiValueContainerSelectionsObservable } from '../multiValue/multiValueObservables'
|
27
|
+
|
28
|
+
// export interface BaseBarsParams {
|
29
|
+
// // barType: BarType
|
30
|
+
// barWidth: number
|
31
|
+
// barPadding: number
|
32
|
+
// barGroupPadding: number // 群組和群組間的間隔
|
33
|
+
// barRadius: number | boolean
|
34
|
+
// }
|
35
|
+
|
36
|
+
interface BaseRacingBarsContext {
|
37
|
+
selection: d3.Selection<any, unknown, any, unknown>
|
38
|
+
computedData$: Observable<ComputedDataMultiValue>
|
39
|
+
visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>
|
40
|
+
CategoryDataMap$: Observable<Map<string, ComputedDatumMultiValue[]>>
|
41
|
+
fullParams$: Observable<BaseRacingBarsParams>
|
42
|
+
fullChartParams$: Observable<ChartParams>
|
43
|
+
fullDataFormatter$: Observable<DataFormatterMultiValue>
|
44
|
+
// xyValueIndex$: Observable<[number, number]>
|
45
|
+
highlight$: Observable<ComputedDatumMultiValue[]>
|
46
|
+
rankingItemHeight$: Observable<number>
|
47
|
+
rankingScaleList$: Observable<d3.ScalePoint<string>[]>
|
48
|
+
containerPosition$: Observable<ContainerPositionScaled[]>
|
49
|
+
containerSize$: Observable<ContainerSize>
|
50
|
+
xScale$: Observable<(n: number) => number>
|
51
|
+
isCategorySeprate$: Observable<boolean>
|
52
|
+
event$: Subject<EventMultiValue>
|
53
|
+
}
|
54
|
+
|
55
|
+
interface RenderGraphicGParams {
|
56
|
+
containerSelection: d3.Selection<SVGGElement, ComputedDatumMultiValue[], any, any>
|
57
|
+
visibleComputedRankingData: ComputedDatumMultiValue[][]
|
58
|
+
rankingScaleList: d3.ScalePoint<string>[]
|
59
|
+
transitionDuration: number
|
60
|
+
}
|
61
|
+
|
62
|
+
interface RenderBarParams {
|
63
|
+
graphicGSelection: d3.Selection<SVGGElement, ComputedDatumMultiValue, any, any>
|
64
|
+
rectClassName: string
|
65
|
+
// xyValueIndex: [number, number]
|
66
|
+
xScale: (n: number) => number
|
67
|
+
fullParams: BaseRacingBarsParams
|
68
|
+
barWidth: number
|
69
|
+
transitionDuration: number
|
70
|
+
}
|
71
|
+
|
72
|
+
type ClipPathDatum = {
|
73
|
+
id: string;
|
74
|
+
// x: number;
|
75
|
+
// y: number;
|
76
|
+
width: number;
|
77
|
+
height: number;
|
78
|
+
}
|
79
|
+
|
80
|
+
|
81
|
+
function renderGraphicG ({ containerSelection, visibleComputedRankingData, rankingScaleList, transitionDuration }: RenderGraphicGParams) {
|
82
|
+
containerSelection
|
83
|
+
.each((_, categoryIndex, g) => {
|
84
|
+
const container = d3.select(g[categoryIndex])
|
85
|
+
const graphicG = container.selectAll<SVGGElement, ComputedDatumMultiValue>(`g`)
|
86
|
+
.data(visibleComputedRankingData[categoryIndex] ?? [], d => d.id)
|
87
|
+
.join(
|
88
|
+
enter => {
|
89
|
+
return enter
|
90
|
+
.append('g')
|
91
|
+
.attr('cursor', 'pointer')
|
92
|
+
.attr('transform', d => {
|
93
|
+
return `translate(0, ${rankingScaleList[categoryIndex] && rankingScaleList[categoryIndex](d.label)})`
|
94
|
+
})
|
95
|
+
},
|
96
|
+
update => {
|
97
|
+
return update
|
98
|
+
.transition()
|
99
|
+
.duration(transitionDuration)
|
100
|
+
.ease(d3.easeLinear)
|
101
|
+
.attr('transform', d => {
|
102
|
+
return `translate(0, ${rankingScaleList[categoryIndex] && rankingScaleList[categoryIndex](d.label)})`
|
103
|
+
})
|
104
|
+
},
|
105
|
+
exit => exit.remove()
|
106
|
+
)
|
107
|
+
})
|
108
|
+
|
109
|
+
const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumMultiValue, SVGGElement, unknown> = containerSelection.selectAll(`g`)
|
110
|
+
|
111
|
+
return graphicBarSelection
|
112
|
+
}
|
113
|
+
|
114
|
+
function renderRectBars ({ graphicGSelection, rectClassName, xScale, fullParams, barWidth, transitionDuration }: RenderBarParams) {
|
115
|
+
|
116
|
+
graphicGSelection
|
117
|
+
.each((datum, i, g) => {
|
118
|
+
// const containerIndex = isCategorySeprate ? datum.categoryIndex : 0
|
119
|
+
// const barWidth = barWidthList[containerIndex]
|
120
|
+
const barHalfWidth = barWidth / 2
|
121
|
+
const radius = fullParams.bar.barRadius === true ? barHalfWidth
|
122
|
+
: fullParams.bar.barRadius === false ? 0
|
123
|
+
: typeof fullParams.bar.barRadius == 'number' ? fullParams.bar.barRadius
|
124
|
+
: 0
|
125
|
+
|
126
|
+
const gSelection = d3.select(g[i])
|
127
|
+
gSelection.selectAll<SVGRectElement, ComputedDatumMultiValue>(`rect.${rectClassName}`)
|
128
|
+
.data([datum], d => d.id)
|
129
|
+
.join(
|
130
|
+
enter => {
|
131
|
+
return enter
|
132
|
+
.append('rect')
|
133
|
+
.classed(rectClassName, true)
|
134
|
+
.attr('cursor', 'pointer')
|
135
|
+
// .attr('width', d => 1)
|
136
|
+
.attr('width', d => xScale(d.value[d.xValueIndex]) ?? 1)
|
137
|
+
.attr('height', barWidth)
|
138
|
+
},
|
139
|
+
update => {
|
140
|
+
return update
|
141
|
+
.transition()
|
142
|
+
.duration(transitionDuration)
|
143
|
+
.ease(d3.easeLinear)
|
144
|
+
.attr('width', d => xScale(d.value[d.xValueIndex]) ?? 1)
|
145
|
+
.attr('height', barWidth)
|
146
|
+
},
|
147
|
+
exit => exit.remove()
|
148
|
+
)
|
149
|
+
.attr('transform', `translate(0, ${-barHalfWidth})`)
|
150
|
+
.attr('fill', d => d.color)
|
151
|
+
.attr('rx', radius)
|
152
|
+
.attr('ry', radius)
|
153
|
+
})
|
154
|
+
|
155
|
+
const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumMultiValue, SVGGElement, unknown> = graphicGSelection.selectAll(`rect.${rectClassName}`)
|
156
|
+
|
157
|
+
return graphicBarSelection
|
158
|
+
}
|
159
|
+
|
160
|
+
function renderClipPath ({ defsSelection, clipPathData }: {
|
161
|
+
defsSelection: d3.Selection<SVGDefsElement, any, any, any>
|
162
|
+
clipPathData: ClipPathDatum[]
|
163
|
+
}) {
|
164
|
+
const clipPath = defsSelection
|
165
|
+
.selectAll<SVGClipPathElement, Layout>('clipPath')
|
166
|
+
.data(clipPathData)
|
167
|
+
.join(
|
168
|
+
enter => {
|
169
|
+
return enter
|
170
|
+
.append('clipPath')
|
171
|
+
},
|
172
|
+
update => update,
|
173
|
+
exit => exit.remove()
|
174
|
+
)
|
175
|
+
.attr('id', d => d.id)
|
176
|
+
.each((d, i, g) => {
|
177
|
+
const rect = d3.select(g[i])
|
178
|
+
.selectAll<SVGRectElement, typeof d>('rect')
|
179
|
+
.data([d])
|
180
|
+
.join(
|
181
|
+
enter => {
|
182
|
+
return enter
|
183
|
+
.append('rect')
|
184
|
+
},
|
185
|
+
update => update,
|
186
|
+
exit => exit.remove()
|
187
|
+
)
|
188
|
+
.attr('x', 0)
|
189
|
+
.attr('y', 0)
|
190
|
+
.attr('width', _d => _d.width)
|
191
|
+
.attr('height', _d => _d.height)
|
192
|
+
})
|
193
|
+
}
|
194
|
+
|
195
|
+
function highlight ({ selection, ids, fullChartParams }: {
|
196
|
+
selection: d3.Selection<any, ComputedDatumMultiValue, any, any>
|
197
|
+
ids: string[]
|
198
|
+
fullChartParams: ChartParams
|
199
|
+
}) {
|
200
|
+
selection.interrupt('highlight')
|
201
|
+
|
202
|
+
if (!ids.length) {
|
203
|
+
// remove highlight
|
204
|
+
selection
|
205
|
+
.transition('highlight')
|
206
|
+
.duration(200)
|
207
|
+
.style('opacity', 1)
|
208
|
+
return
|
209
|
+
}
|
210
|
+
|
211
|
+
selection
|
212
|
+
.each((d, i, n) => {
|
213
|
+
if (ids.includes(d.id)) {
|
214
|
+
d3.select(n[i])
|
215
|
+
.style('opacity', 1)
|
216
|
+
} else {
|
217
|
+
d3.select(n[i])
|
218
|
+
.style('opacity', fullChartParams.styles.unhighlightedOpacity)
|
219
|
+
}
|
220
|
+
})
|
221
|
+
}
|
222
|
+
|
223
|
+
|
224
|
+
export const createBaseRacingBars: BasePluginFn<BaseRacingBarsContext> = (pluginName: string, {
|
225
|
+
selection,
|
226
|
+
computedData$,
|
227
|
+
visibleComputedRankingData$,
|
228
|
+
// xyValueIndex$,
|
229
|
+
// categoryLabels$,
|
230
|
+
CategoryDataMap$,
|
231
|
+
fullParams$,
|
232
|
+
fullDataFormatter$,
|
233
|
+
fullChartParams$,
|
234
|
+
// layout$,
|
235
|
+
// graphicTransform$,
|
236
|
+
// graphicReverseScale$,
|
237
|
+
highlight$,
|
238
|
+
// computedRankingAmountList$,
|
239
|
+
rankingItemHeight$,
|
240
|
+
rankingScaleList$,
|
241
|
+
containerPosition$,
|
242
|
+
containerSize$,
|
243
|
+
// layout$,
|
244
|
+
xScale$,
|
245
|
+
isCategorySeprate$,
|
246
|
+
event$
|
247
|
+
}) => {
|
248
|
+
|
249
|
+
const destroy$ = new Subject()
|
250
|
+
|
251
|
+
const clipPathID = getUniID(pluginName, 'clipPath-box')
|
252
|
+
const rectClassName = getClassName(pluginName, 'rect')
|
253
|
+
// const containerClassName = getClassName(pluginName, 'container')
|
254
|
+
|
255
|
+
// const {
|
256
|
+
// categorySelection$,
|
257
|
+
// axesSelection$,
|
258
|
+
// defsSelection$,
|
259
|
+
// graphicGSelection$
|
260
|
+
// } = multiValueSelectionsObservable({
|
261
|
+
// selection,
|
262
|
+
// pluginName,
|
263
|
+
// clipPathID,
|
264
|
+
// categoryLabels$: categoryLabels$,
|
265
|
+
// containerPosition$: containerPosition$,
|
266
|
+
// graphicTransform$: graphicTransform$
|
267
|
+
// })
|
268
|
+
|
269
|
+
// const clipPathSubscription = combineLatest({
|
270
|
+
// defsSelection: defsSelection$,
|
271
|
+
// layout: layout$,
|
272
|
+
// }).pipe(
|
273
|
+
// takeUntil(destroy$),
|
274
|
+
// switchMap(async (d) => d),
|
275
|
+
// ).subscribe(data => {
|
276
|
+
// // 外層的遮罩
|
277
|
+
// const clipPathData = [{
|
278
|
+
// id: clipPathID,
|
279
|
+
// width: data.layout.width,
|
280
|
+
// height: data.layout.height
|
281
|
+
// }]
|
282
|
+
// renderClipPath({
|
283
|
+
// defsSelection: data.defsSelection,
|
284
|
+
// clipPathData,
|
285
|
+
// })
|
286
|
+
// })
|
287
|
+
|
288
|
+
const containerSelection$ = multiValueContainerSelectionsObservable({
|
289
|
+
selection,
|
290
|
+
pluginName,
|
291
|
+
clipPathID,
|
292
|
+
computedData$,
|
293
|
+
containerPosition$,
|
294
|
+
isCategorySeprate$,
|
295
|
+
}).pipe(
|
296
|
+
takeUntil(destroy$),
|
297
|
+
)
|
298
|
+
|
299
|
+
// const containerSelection$ = combineLatest({
|
300
|
+
// computedData: computedData$.pipe(
|
301
|
+
// distinctUntilChanged((a, b) => {
|
302
|
+
// // 只有當series的數量改變時,才重新計算
|
303
|
+
// return a.length === b.length
|
304
|
+
// }),
|
305
|
+
// ),
|
306
|
+
// isCategorySeprate: isCategorySeprate$
|
307
|
+
// }).pipe(
|
308
|
+
// takeUntil(destroy$),
|
309
|
+
// switchMap(async (d) => d),
|
310
|
+
// map(data => {
|
311
|
+
// return data.isCategorySeprate
|
312
|
+
// // category分開的時候顯示各別axis
|
313
|
+
// ? data.computedData
|
314
|
+
// // category合併的時候只顯示第一個axis
|
315
|
+
// : [data.computedData[0]]
|
316
|
+
// }),
|
317
|
+
// map((computedData, i) => {
|
318
|
+
// return selection
|
319
|
+
// .selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${containerClassName}`)
|
320
|
+
// .data(computedData, d => d[0] ? d[0].categoryIndex : i)
|
321
|
+
// .join('g')
|
322
|
+
// .classed(containerClassName, true)
|
323
|
+
// .attr('clip-path', `url(#${clipPathID})`)
|
324
|
+
// })
|
325
|
+
// )
|
326
|
+
|
327
|
+
containerSize$.subscribe(data => {
|
328
|
+
const defsSelection = selection.selectAll<SVGDefsElement, any>('defs')
|
329
|
+
.data([clipPathID])
|
330
|
+
.join('defs')
|
331
|
+
const clipPathData = [{
|
332
|
+
id: clipPathID,
|
333
|
+
width: data.width,
|
334
|
+
height: data.height
|
335
|
+
}]
|
336
|
+
renderClipPath({
|
337
|
+
defsSelection: defsSelection,
|
338
|
+
clipPathData,
|
339
|
+
// textReverseTransform: data.textReverseTransform
|
340
|
+
})
|
341
|
+
})
|
342
|
+
|
343
|
+
// combineLatest({
|
344
|
+
// containerSelection: containerSelection$,
|
345
|
+
// containerPosition: containerPosition$
|
346
|
+
// }).pipe(
|
347
|
+
// takeUntil(destroy$),
|
348
|
+
// switchMap(async d => d)
|
349
|
+
// ).subscribe(data => {
|
350
|
+
// data.containerSelection
|
351
|
+
// .attr('transform', (d, i) => {
|
352
|
+
// const containerPosition = data.containerPosition[i] ?? data.containerPosition[0]
|
353
|
+
// const translate = containerPosition.translate
|
354
|
+
// const scale = containerPosition.scale
|
355
|
+
// // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
|
356
|
+
// return `translate(${translate[0]}, ${translate[1]})`
|
357
|
+
// })
|
358
|
+
// // .attr('opacity', 0)
|
359
|
+
// // .transition()
|
360
|
+
// // .attr('opacity', 1)
|
361
|
+
// })
|
362
|
+
|
363
|
+
const barWidth$ = combineLatest({
|
364
|
+
fullParams: fullParams$,
|
365
|
+
rankingItemHeight: rankingItemHeight$,
|
366
|
+
}).pipe(
|
367
|
+
takeUntil(destroy$),
|
368
|
+
switchMap(async d => d),
|
369
|
+
map(data => {
|
370
|
+
if (data.fullParams.bar.barWidth) {
|
371
|
+
return data.fullParams.bar.barWidth
|
372
|
+
} else {
|
373
|
+
return data.rankingItemHeight - data.fullParams.bar.barPadding
|
374
|
+
}
|
375
|
+
}),
|
376
|
+
distinctUntilChanged()
|
377
|
+
)
|
378
|
+
|
379
|
+
const transitionDuration$ = fullChartParams$.pipe(
|
380
|
+
takeUntil(destroy$),
|
381
|
+
map(d => d.transitionDuration),
|
382
|
+
distinctUntilChanged()
|
383
|
+
)
|
384
|
+
|
385
|
+
const graphicGSelection$ = combineLatest({
|
386
|
+
containerSelection: containerSelection$,
|
387
|
+
visibleComputedRankingData: visibleComputedRankingData$,
|
388
|
+
rankingScaleList: rankingScaleList$,
|
389
|
+
transitionDuration: transitionDuration$,
|
390
|
+
}).pipe(
|
391
|
+
takeUntil(destroy$),
|
392
|
+
switchMap(async (d) => d),
|
393
|
+
map(data => {
|
394
|
+
|
395
|
+
return renderGraphicG({
|
396
|
+
containerSelection: data.containerSelection,
|
397
|
+
visibleComputedRankingData: data.visibleComputedRankingData,
|
398
|
+
rankingScaleList: data.rankingScaleList,
|
399
|
+
transitionDuration: data.transitionDuration
|
400
|
+
})
|
401
|
+
})
|
402
|
+
)
|
403
|
+
|
404
|
+
const graphicSelection$ = combineLatest({
|
405
|
+
graphicGSelection: graphicGSelection$,
|
406
|
+
// xyValueIndex: xyValueIndex$,
|
407
|
+
xScale: xScale$,
|
408
|
+
barWidth: barWidth$,
|
409
|
+
transitionDuration: transitionDuration$,
|
410
|
+
fullParams: fullParams$,
|
411
|
+
}).pipe(
|
412
|
+
takeUntil(destroy$),
|
413
|
+
switchMap(async (d) => d),
|
414
|
+
map(data => {
|
415
|
+
|
416
|
+
return renderRectBars({
|
417
|
+
graphicGSelection: data.graphicGSelection,
|
418
|
+
rectClassName,
|
419
|
+
// xyValueIndex: data.xyValueIndex,
|
420
|
+
xScale: data.xScale,
|
421
|
+
fullParams: data.fullParams,
|
422
|
+
barWidth: data.barWidth,
|
423
|
+
transitionDuration: data.transitionDuration,
|
424
|
+
})
|
425
|
+
}),
|
426
|
+
shareReplay(1)
|
427
|
+
)
|
428
|
+
|
429
|
+
const highlightTarget$ = fullChartParams$.pipe(
|
430
|
+
takeUntil(destroy$),
|
431
|
+
map(d => d.highlightTarget),
|
432
|
+
distinctUntilChanged()
|
433
|
+
)
|
434
|
+
|
435
|
+
combineLatest({
|
436
|
+
graphicSelection: graphicSelection$,
|
437
|
+
computedData: computedData$,
|
438
|
+
CategoryDataMap: CategoryDataMap$,
|
439
|
+
highlightTarget: highlightTarget$,
|
440
|
+
fullDataFormatter: fullDataFormatter$
|
441
|
+
}).pipe(
|
442
|
+
takeUntil(destroy$),
|
443
|
+
switchMap(async (d) => d),
|
444
|
+
).subscribe(data => {
|
445
|
+
|
446
|
+
data.graphicSelection
|
447
|
+
.on('mouseover', (event, datum) => {
|
448
|
+
// event.stopPropagation()
|
449
|
+
// console.log({
|
450
|
+
// type: 'multiValue',
|
451
|
+
// eventName: 'mouseover',
|
452
|
+
// pluginName,
|
453
|
+
// highlightTarget: data.highlightTarget,
|
454
|
+
// datum,
|
455
|
+
// category: data.CategoryDataMap.get(datum.categoryLabel)!,
|
456
|
+
// categoryIndex: datum.categoryIndex,
|
457
|
+
// categoryLabel: datum.categoryLabel,
|
458
|
+
// data: data.computedData,
|
459
|
+
// event,
|
460
|
+
// })
|
461
|
+
|
462
|
+
// 只顯示目前的值
|
463
|
+
// datum._visibleValue = [datum.value[datum.xValueIndex]]
|
464
|
+
|
465
|
+
event$.next({
|
466
|
+
type: 'multiValue',
|
467
|
+
eventName: 'mouseover',
|
468
|
+
pluginName,
|
469
|
+
highlightTarget: data.highlightTarget,
|
470
|
+
valueDetail: [
|
471
|
+
{
|
472
|
+
value: datum.value[datum.xValueIndex],
|
473
|
+
valueIndex: datum.xValueIndex,
|
474
|
+
valueLabel: data.fullDataFormatter.valueLabels[datum.xValueIndex] ?? String(datum.xValueIndex)
|
475
|
+
},
|
476
|
+
],
|
477
|
+
datum,
|
478
|
+
category: data.CategoryDataMap.get(datum.categoryLabel)!,
|
479
|
+
categoryIndex: datum.categoryIndex,
|
480
|
+
categoryLabel: datum.categoryLabel,
|
481
|
+
data: data.computedData,
|
482
|
+
event,
|
483
|
+
})
|
484
|
+
})
|
485
|
+
.on('mousemove', (event, datum) => {
|
486
|
+
// event.stopPropagation()
|
487
|
+
|
488
|
+
// 只顯示目前的值
|
489
|
+
// datum._visibleValue = [datum.value[datum.xValueIndex]]
|
490
|
+
|
491
|
+
event$.next({
|
492
|
+
type: 'multiValue',
|
493
|
+
eventName: 'mousemove',
|
494
|
+
pluginName,
|
495
|
+
highlightTarget: data.highlightTarget,
|
496
|
+
valueDetail: [
|
497
|
+
{
|
498
|
+
value: datum.value[datum.xValueIndex],
|
499
|
+
valueIndex: datum.xValueIndex,
|
500
|
+
valueLabel: data.fullDataFormatter.valueLabels[datum.xValueIndex] ?? String(datum.xValueIndex)
|
501
|
+
},
|
502
|
+
],
|
503
|
+
datum,
|
504
|
+
category: data.CategoryDataMap.get(datum.categoryLabel)!,
|
505
|
+
categoryIndex: datum.categoryIndex,
|
506
|
+
categoryLabel: datum.categoryLabel,
|
507
|
+
data: data.computedData,
|
508
|
+
event,
|
509
|
+
})
|
510
|
+
})
|
511
|
+
.on('mouseout', (event, datum) => {
|
512
|
+
// event.stopPropagation()
|
513
|
+
|
514
|
+
event$.next({
|
515
|
+
type: 'multiValue',
|
516
|
+
eventName: 'mouseout',
|
517
|
+
pluginName,
|
518
|
+
highlightTarget: data.highlightTarget,
|
519
|
+
valueDetail: [
|
520
|
+
{
|
521
|
+
value: datum.value[datum.xValueIndex],
|
522
|
+
valueIndex: datum.xValueIndex,
|
523
|
+
valueLabel: data.fullDataFormatter.valueLabels[datum.xValueIndex] ?? String(datum.xValueIndex)
|
524
|
+
},
|
525
|
+
],
|
526
|
+
datum,
|
527
|
+
category: data.CategoryDataMap.get(datum.categoryLabel)!,
|
528
|
+
categoryIndex: datum.categoryIndex,
|
529
|
+
categoryLabel: datum.categoryLabel,
|
530
|
+
data: data.computedData,
|
531
|
+
event,
|
532
|
+
})
|
533
|
+
})
|
534
|
+
.on('click', (event, datum) => {
|
535
|
+
// event.stopPropagation()
|
536
|
+
|
537
|
+
// 只顯示目前的值
|
538
|
+
// datum._visibleValue = [datum.value[datum.xValueIndex]]
|
539
|
+
|
540
|
+
event$.next({
|
541
|
+
type: 'multiValue',
|
542
|
+
eventName: 'click',
|
543
|
+
pluginName,
|
544
|
+
highlightTarget: data.highlightTarget,
|
545
|
+
valueDetail: [
|
546
|
+
{
|
547
|
+
value: datum.value[datum.xValueIndex],
|
548
|
+
valueIndex: datum.xValueIndex,
|
549
|
+
valueLabel: data.fullDataFormatter.valueLabels[datum.xValueIndex] ?? String(datum.xValueIndex)
|
550
|
+
},
|
551
|
+
],
|
552
|
+
datum,
|
553
|
+
category: data.CategoryDataMap.get(datum.categoryLabel)!,
|
554
|
+
categoryIndex: datum.categoryIndex,
|
555
|
+
categoryLabel: datum.categoryLabel,
|
556
|
+
data: data.computedData,
|
557
|
+
event,
|
558
|
+
})
|
559
|
+
})
|
560
|
+
|
561
|
+
})
|
562
|
+
|
563
|
+
combineLatest({
|
564
|
+
graphicSelection: graphicSelection$,
|
565
|
+
highlight: highlight$.pipe(
|
566
|
+
map(data => data.map(d => d.id))
|
567
|
+
),
|
568
|
+
fullChartParams: fullChartParams$
|
569
|
+
}).pipe(
|
570
|
+
takeUntil(destroy$),
|
571
|
+
switchMap(async d => d)
|
572
|
+
).subscribe(data => {
|
573
|
+
highlight({
|
574
|
+
selection: data.graphicSelection,
|
575
|
+
ids: data.highlight,
|
576
|
+
fullChartParams: data.fullChartParams
|
577
|
+
})
|
578
|
+
})
|
579
|
+
|
580
|
+
return () => {
|
581
|
+
destroy$.next(undefined)
|
582
|
+
}
|
552
583
|
}
|