@orbcharts/plugins-basic 3.0.0-beta.18 → 3.0.0-beta.19

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.
Files changed (113) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +2220 -2216
  3. package/dist/orbcharts-plugins-basic.umd.js +36 -34
  4. package/dist/src/grid/defaults.d.ts +2 -2
  5. package/dist/src/multiGrid/defaults.d.ts +1 -1
  6. package/dist/src/multiValue/defaults.d.ts +1 -1
  7. package/lib/core-types.ts +7 -7
  8. package/lib/core.ts +6 -6
  9. package/lib/plugins-basic-types.ts +6 -6
  10. package/package.json +44 -44
  11. package/src/base/BaseBars.ts +765 -765
  12. package/src/base/BaseBarsTriangle.ts +676 -676
  13. package/src/base/BaseDots.ts +464 -464
  14. package/src/base/BaseGroupAxis.ts +691 -691
  15. package/src/base/BaseLegend.ts +684 -684
  16. package/src/base/BaseLineAreas.ts +629 -629
  17. package/src/base/BaseLines.ts +706 -706
  18. package/src/base/BaseRacingBars.ts +551 -551
  19. package/src/base/BaseRacingLabels.ts +396 -396
  20. package/src/base/BaseRacingValueLabels.ts +403 -403
  21. package/src/base/BaseStackedBars.ts +782 -782
  22. package/src/base/BaseTooltip.ts +386 -386
  23. package/src/base/BaseValueAxis.ts +600 -600
  24. package/src/base/BaseXAxis.ts +427 -427
  25. package/src/base/BaseYAxis.ts +389 -389
  26. package/src/base/types.ts +2 -2
  27. package/src/const.ts +30 -30
  28. package/src/grid/defaults.ts +213 -213
  29. package/src/grid/gridObservables.ts +612 -612
  30. package/src/grid/index.ts +16 -16
  31. package/src/grid/plugins/Bars.ts +69 -69
  32. package/src/grid/plugins/BarsPN.ts +66 -66
  33. package/src/grid/plugins/BarsTriangle.ts +73 -73
  34. package/src/grid/plugins/Dots.ts +68 -68
  35. package/src/grid/plugins/GridLegend.ts +107 -107
  36. package/src/grid/plugins/GridTooltip.ts +66 -66
  37. package/src/grid/plugins/GroupAux.ts +1120 -1120
  38. package/src/grid/plugins/GroupAxis.ts +73 -73
  39. package/src/grid/plugins/GroupZoom.ts +218 -218
  40. package/src/grid/plugins/LineAreas.ts +65 -65
  41. package/src/grid/plugins/Lines.ts +59 -59
  42. package/src/grid/plugins/StackedBars.ts +64 -64
  43. package/src/grid/plugins/StackedValueAxis.ts +96 -96
  44. package/src/grid/plugins/ValueAxis.ts +94 -94
  45. package/src/index.ts +6 -6
  46. package/src/multiGrid/defaults.ts +244 -244
  47. package/src/multiGrid/index.ts +14 -14
  48. package/src/multiGrid/multiGridObservables.ts +50 -50
  49. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  50. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  51. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  52. package/src/multiGrid/plugins/MultiGridLegend.ts +169 -169
  53. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  54. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  55. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  56. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  57. package/src/multiGrid/plugins/MultiStackedBars.ts +106 -106
  58. package/src/multiGrid/plugins/MultiStackedValueAxis.ts +134 -134
  59. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  60. package/src/multiGrid/plugins/OverlappingStackedValueAxes.ts +300 -300
  61. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  62. package/src/multiValue/defaults.ts +391 -388
  63. package/src/multiValue/index.ts +12 -12
  64. package/src/multiValue/multiValueObservables.ts +666 -666
  65. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  66. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  67. package/src/multiValue/plugins/RacingBars.ts +373 -373
  68. package/src/multiValue/plugins/RacingCounterTexts.ts +300 -300
  69. package/src/multiValue/plugins/RacingValueAxis.ts +114 -114
  70. package/src/multiValue/plugins/RankingAxis_legacy.ts +109 -109
  71. package/src/multiValue/plugins/Scatter.ts +426 -426
  72. package/src/multiValue/plugins/ScatterBubbles.ts +554 -554
  73. package/src/multiValue/plugins/XAxis.ts +107 -107
  74. package/src/multiValue/plugins/XYAux.ts +682 -682
  75. package/src/multiValue/plugins/XYAxes.ts +194 -194
  76. package/src/multiValue/plugins/XYAxes_legacy.ts +683 -683
  77. package/src/multiValue/plugins/XZoom.ts +299 -299
  78. package/src/noneData/defaults.ts +102 -102
  79. package/src/noneData/index.ts +3 -3
  80. package/src/noneData/plugins/Container.ts +27 -27
  81. package/src/noneData/plugins/Tooltip.ts +373 -373
  82. package/src/relationship/defaults.ts +221 -221
  83. package/src/relationship/index.ts +5 -5
  84. package/src/relationship/plugins/ForceDirected.ts +1173 -1173
  85. package/src/relationship/plugins/ForceDirectedBubbles.ts +1411 -1411
  86. package/src/relationship/plugins/RelationshipLegend.ts +100 -100
  87. package/src/relationship/plugins/RelationshipTooltip.ts +66 -66
  88. package/src/relationship/relationshipObservables.ts +49 -49
  89. package/src/series/defaults.ts +221 -221
  90. package/src/series/index.ts +9 -9
  91. package/src/series/plugins/Bubbles.ts +636 -636
  92. package/src/series/plugins/Pie.ts +623 -623
  93. package/src/series/plugins/PieEventTexts.ts +284 -284
  94. package/src/series/plugins/PieLabels.ts +640 -640
  95. package/src/series/plugins/Rose.ts +516 -516
  96. package/src/series/plugins/RoseLabels.ts +600 -600
  97. package/src/series/plugins/SeriesLegend.ts +107 -107
  98. package/src/series/plugins/SeriesTooltip.ts +66 -66
  99. package/src/series/seriesObservables.ts +145 -145
  100. package/src/series/seriesUtils.ts +51 -51
  101. package/src/tree/defaults.ts +102 -102
  102. package/src/tree/index.ts +4 -4
  103. package/src/tree/plugins/TreeLegend.ts +100 -100
  104. package/src/tree/plugins/TreeMap.ts +341 -341
  105. package/src/tree/plugins/TreeTooltip.ts +66 -66
  106. package/src/utils/commonUtils.ts +31 -31
  107. package/src/utils/d3Graphics.ts +176 -176
  108. package/src/utils/d3Utils.ts +92 -92
  109. package/src/utils/observables.ts +14 -14
  110. package/src/utils/orbchartsUtils.ts +129 -129
  111. package/tsconfig.base.json +13 -13
  112. package/tsconfig.json +2 -2
  113. package/vite.config.js +22 -22
@@ -1,396 +1,396 @@
1
- import * as d3 from 'd3'
2
- import {
3
- Observable,
4
- Subject,
5
- combineLatest,
6
- takeUntil,
7
- map,
8
- distinctUntilChanged,
9
- of,
10
- iif,
11
- switchMap,
12
- shareReplay
13
- } from 'rxjs'
14
- import type {
15
- ChartParams,
16
- ComputedDatumMultiValue,
17
- ComputedDataMultiValue,
18
- ComputedXYDatumMultiValue,
19
- ContainerSize,
20
- ContainerPositionScaled,
21
- DataFormatterMultiValue,
22
- Layout
23
- } from '../../lib/core-types'
24
- import type { BaseRacingLabelsParams } from '../../lib/plugins-basic-types'
25
- import type { BasePluginFn } from './types'
26
- import { getColor, getDatumColor, getClassName, getUniID } from '../utils/orbchartsUtils'
27
- import { multiValueContainerSelectionsObservable } from '../multiValue/multiValueObservables'
28
-
29
- interface BaseRacingAxisContext {
30
- selection: d3.Selection<any, unknown, any, unknown>
31
- computedData$: Observable<ComputedDataMultiValue>
32
- visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>
33
- rankingScaleList$: Observable<Array<d3.ScalePoint<string>>>
34
- xScale$: Observable<(n: number) => number>
35
- fullParams$: Observable<BaseRacingLabelsParams>
36
- fullDataFormatter$: Observable<DataFormatterMultiValue>
37
- fullChartParams$: Observable<ChartParams>
38
- // layout$: Observable<Layout>
39
- containerPosition$: Observable<ContainerPositionScaled[]>
40
- containerSize$: Observable<ContainerSize>
41
- isCategorySeprate$: Observable<boolean>
42
- // xyValueIndex$: Observable<[number, number]>
43
- }
44
-
45
- type ClipPathDatum = {
46
- id: string;
47
- // x: number;
48
- // y: number;
49
- width: number;
50
- height: number;
51
- }
52
-
53
- // const pluginName = 'RacingAxis'
54
-
55
- const yTickTextAnchor = 'end'
56
- const yTickDominantBaseline = 'middle'
57
- const yAxisLabelAnchor = 'end'
58
- const yAxisLabelDominantBaseline = 'auto'
59
- // const textClassName = getClassName(pluginName, 'yLabel')
60
-
61
- function renderRacingAxisLabel ({ selection, textClassName, fullParams, containerSize, fullDataFormatter, fullChartParams, textReverseTransform }: {
62
- selection: d3.Selection<SVGGElement, any, any, any>,
63
- textClassName: string
64
- fullParams: BaseRacingLabelsParams
65
- // axisLabelAlign: TextAlign
66
- containerSize: ContainerSize
67
- fullDataFormatter: DataFormatterMultiValue,
68
- fullChartParams: ChartParams
69
- textReverseTransform: string,
70
- }) {
71
- const offsetX = fullParams.barLabel.padding - fullParams.axisLabel.offset[0]
72
- const offsetY = - fullParams.barLabel.padding - fullParams.axisLabel.offset[1]
73
- let labelX = - offsetX
74
- let labelY = - offsetY
75
-
76
- selection
77
- .attr('transform', d => `translate(0, ${containerSize.height})`)
78
- .selectAll<SVGTextElement, BaseRacingLabelsParams>(`text`)
79
- .data([fullParams])
80
- .join(
81
- enter => {
82
- return enter
83
- .append('text')
84
- .style('font-weight', 'bold')
85
- },
86
- update => update,
87
- exit => exit.remove()
88
- )
89
- .attr('text-anchor', yAxisLabelAnchor)
90
- .attr('dominant-baseline', yAxisLabelDominantBaseline)
91
- .attr('font-size', fullChartParams.styles.textSize)
92
- .style('fill', getColor(fullParams.axisLabel.colorType, fullChartParams))
93
- // .style('transform', textReverseTransform)
94
- // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
95
- .attr('x', labelX)
96
- .attr('y', labelY)
97
- .text(d => fullDataFormatter.yAxis.label)
98
- }
99
-
100
- function renderRacingLabels ({ selection, fullParams, fullChartParams, rankingScale, valueScale, categoryData }: {
101
- selection: d3.Selection<SVGGElement, any, any, any>,
102
- fullParams: BaseRacingLabelsParams
103
- fullChartParams: ChartParams
104
- rankingScale: d3.ScalePoint<string>
105
- valueScale: ((n: number) => number)
106
- categoryData: ComputedDatumMultiValue[]
107
- // textReverseTransformWithRotate: string,
108
- // xyValueIndex: [number, number]
109
- }) {
110
- const labelData = fullParams.barLabel.position === 'none' ? [] : categoryData
111
-
112
- const labelSelection = selection
113
- .selectAll<SVGGElement, string>(`text`)
114
- .data(labelData, (d: ComputedDatumMultiValue) => d.id)
115
- // .join('g')
116
- // .classed(boxClassName, true)
117
- .join(
118
- enter => {
119
- return enter
120
- .append('text')
121
- .style('font-weight', 'bold')
122
- .attr('x', d => valueScale(d.value[d.xValueIndex] ?? 0) - fullParams.barLabel.padding)
123
- .attr('y', d => rankingScale(d.label)!)
124
- },
125
- update => {
126
- return update
127
- .transition()
128
- .duration(fullChartParams.transitionDuration)
129
- .ease(d3.easeLinear)
130
- // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
131
- .attr('x', d => valueScale(d.value[d.xValueIndex] ?? 0) - fullParams.barLabel.padding)
132
- .attr('y', d => rankingScale(d.label)!)
133
- },
134
- exit => exit.remove()
135
- )
136
- .attr('text-anchor', yTickTextAnchor)
137
- .attr('dominant-baseline', yTickDominantBaseline)
138
- .attr('font-size', fullChartParams.styles.textSize)
139
- .style('fill', d => getDatumColor({
140
- colorType: fullParams.barLabel.colorType,
141
- fullChartParams: fullChartParams,
142
- datum: d
143
- }))
144
- // .style('transform', textReverseTransformWithRotate)
145
- .text(d => d.label)
146
-
147
- return labelSelection
148
- }
149
-
150
-
151
- function renderClipPath ({ defsSelection, clipPathData }: {
152
- defsSelection: d3.Selection<SVGDefsElement, any, any, any>
153
- clipPathData: ClipPathDatum[]
154
- // textReverseTransform: string
155
- }) {
156
- const clipPath = defsSelection
157
- .selectAll<SVGClipPathElement, Layout>('clipPath')
158
- .data(clipPathData)
159
- .join(
160
- enter => {
161
- return enter
162
- .append('clipPath')
163
- },
164
- update => update,
165
- exit => exit.remove()
166
- )
167
- .attr('id', d => d.id)
168
- // .attr('transform', textReverseTransform)
169
- .each((d, i, g) => {
170
- const rect = d3.select(g[i])
171
- .selectAll<SVGRectElement, typeof d>('rect')
172
- .data([d])
173
- .join(
174
- enter => {
175
- return enter
176
- .append('rect')
177
- },
178
- update => update,
179
- exit => exit.remove()
180
- )
181
- .attr('x', _d => - _d.width)
182
- .attr('y', 0)
183
- .attr('width', _d => _d.width * 2)
184
- .attr('height', _d => _d.height)
185
- })
186
- }
187
-
188
- export const createBaseRacingLabels: BasePluginFn<BaseRacingAxisContext> = (pluginName: string, {
189
- selection,
190
- computedData$,
191
- visibleComputedRankingData$,
192
- rankingScaleList$,
193
- xScale$,
194
- fullParams$,
195
- fullDataFormatter$,
196
- fullChartParams$,
197
- // layout$,
198
- containerPosition$,
199
- containerSize$,
200
- isCategorySeprate$,
201
- // xyValueIndex$
202
- }) => {
203
-
204
- const destroy$ = new Subject()
205
-
206
- // const containerClassName = getClassName(pluginName, 'container')
207
- const boxClassName = getClassName(pluginName, 'box')
208
- const textClassName = getClassName(pluginName, 'text')
209
- const clipPathID = getUniID(pluginName, 'clipPath-box')
210
-
211
- const containerSelection$ = multiValueContainerSelectionsObservable({
212
- selection,
213
- pluginName,
214
- clipPathID: null,
215
- computedData$,
216
- containerPosition$,
217
- isCategorySeprate$,
218
- }).pipe(
219
- takeUntil(destroy$),
220
- )
221
-
222
- // const containerSelection$ = combineLatest({
223
- // computedData: computedData$.pipe(
224
- // distinctUntilChanged((a, b) => {
225
- // // 只有當series的數量改變時,才重新計算
226
- // return a.length === b.length
227
- // }),
228
- // ),
229
- // isCategorySeprate: isCategorySeprate$
230
- // }).pipe(
231
- // takeUntil(destroy$),
232
- // switchMap(async (d) => d),
233
- // map(data => {
234
- // return data.isCategorySeprate
235
- // // category分開的時候顯示各別axis
236
- // ? data.computedData
237
- // // category合併的時候只顯示第一個axis
238
- // : [data.computedData[0]]
239
- // }),
240
- // map((computedData, i) => {
241
- // return selection
242
- // .selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${containerClassName}`)
243
- // .data(computedData, d => d[0] ? d[0].categoryIndex : i)
244
- // .join('g')
245
- // .classed(containerClassName, true)
246
- // })
247
- // )
248
-
249
- // combineLatest({
250
- // containerSelection: containerSelection$,
251
- // containerPosition: containerPosition$
252
- // }).pipe(
253
- // takeUntil(destroy$),
254
- // switchMap(async d => d)
255
- // ).subscribe(data => {
256
- // data.containerSelection
257
- // .attr('transform', (d, i) => {
258
- // const containerPosition = data.containerPosition[i] ?? data.containerPosition[0]
259
- // const translate = containerPosition.translate
260
- // const scale = containerPosition.scale
261
- // // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
262
- // return `translate(${translate[0]}, ${translate[1]})`
263
- // })
264
- // // .attr('opacity', 0)
265
- // // .transition()
266
- // // .attr('opacity', 1)
267
- // })
268
-
269
- const textReverseTransform$ = containerPosition$.pipe(
270
- takeUntil(destroy$),
271
- switchMap(async (d) => d),
272
- map(containerPosition => {
273
- // const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
274
- // const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
275
- const containerScaleReverseValue = `scale(${1 / containerPosition[0].scale[0]}, ${1 / containerPosition[0].scale[1]})`
276
- // 抵消最外層scale
277
- return `${containerScaleReverseValue}`
278
- }),
279
- distinctUntilChanged()
280
- )
281
-
282
- // const textReverseTransformWithRotate$ = combineLatest({
283
- // textReverseTransform: textReverseTransform$,
284
- // fullParams: fullParams$,
285
- // }).pipe(
286
- // takeUntil(destroy$),
287
- // switchMap(async (d) => d),
288
- // map(data => {
289
- // // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
290
- // return `${data.textReverseTransform} rotate(${data.fullParams.barLabel.rotate}deg)`
291
- // })
292
- // )
293
-
294
- // const rankingLabelList$ = visibleComputedRankingData$.pipe(
295
- // takeUntil(destroy$),
296
- // map(data => {
297
- // return data.map(categoryData => categoryData.map(d => d.label))
298
- // })
299
- // )
300
-
301
- const valueScale$: Observable<((n: number) => number)> = fullParams$.pipe(
302
- map(fullParams => fullParams.barLabel.position),
303
- distinctUntilChanged(),
304
- switchMap(position => {
305
- return iif(
306
- () => position === 'inside',
307
- xScale$,
308
- of(() => 0)
309
- )
310
- })
311
- )
312
-
313
- containerSize$.subscribe(data => {
314
- const defsSelection = selection.selectAll<SVGDefsElement, any>('defs')
315
- .data([clipPathID])
316
- .join('defs')
317
- const clipPathData = [{
318
- id: clipPathID,
319
- width: data.width,
320
- height: data.height
321
- }]
322
- renderClipPath({
323
- defsSelection: defsSelection,
324
- clipPathData,
325
- // textReverseTransform: data.textReverseTransform
326
- })
327
- })
328
-
329
- combineLatest({
330
- containerSelection: containerSelection$,
331
- fullParams: fullParams$,
332
- // layout: layout$,
333
- containerSize: containerSize$,
334
- fullDataFormatter: fullDataFormatter$,
335
- fullChartParams: fullChartParams$,
336
- visibleComputedRankingData: visibleComputedRankingData$,
337
- // rankingLabelList: rankingLabelList$,
338
- rankingScaleList: rankingScaleList$,
339
- valueScale: valueScale$,
340
- textReverseTransform: textReverseTransform$,
341
- // textReverseTransformWithRotate: textReverseTransformWithRotate$,
342
- // xyValueIndex: xyValueIndex$
343
- }).pipe(
344
- takeUntil(destroy$),
345
- switchMap(async (d) => d),
346
- ).subscribe(data => {
347
-
348
- data.containerSelection.each((d, i, g) => {
349
- const _containerSelection = d3.select(g[i])
350
- // const rankingLabels = data.rankingLabelList[i]
351
- const rankingScale = data.rankingScaleList[i]
352
- if (!rankingScale) {
353
- return
354
- }
355
-
356
- // const containerClipPathID = `${clipPathID}-${i}`
357
- const axisSelection = _containerSelection
358
- .selectAll<SVGGElement, any>(`g.${boxClassName}`)
359
- .data([i])
360
- .join('g')
361
- .attr('class', boxClassName)
362
- .attr('clip-path', `url(#${clipPathID})`)
363
- const axisLabelSelection = _containerSelection
364
- .selectAll<SVGGElement, BaseRacingLabelsParams>(`g.${textClassName}`)
365
- .data([data.fullParams])
366
- .join('g')
367
- .classed(textClassName, true)
368
-
369
- renderRacingLabels({
370
- selection: axisSelection,
371
- fullParams: data.fullParams,
372
- fullChartParams: data.fullChartParams,
373
- rankingScale: rankingScale,
374
- categoryData: data.visibleComputedRankingData[i],
375
- // textReverseTransformWithRotate: data.textReverseTransformWithRotate,
376
- valueScale: data.valueScale,
377
- // xyValueIndex: data.xyValueIndex,
378
- })
379
-
380
- renderRacingAxisLabel({
381
- selection: axisLabelSelection,
382
- textClassName,
383
- fullParams: data.fullParams,
384
- containerSize: data.containerSize,
385
- fullDataFormatter: data.fullDataFormatter,
386
- fullChartParams: data.fullChartParams,
387
- textReverseTransform: data.textReverseTransform,
388
- })
389
- })
390
-
391
- })
392
-
393
- return () => {
394
- destroy$.next(undefined)
395
- }
396
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ Observable,
4
+ Subject,
5
+ combineLatest,
6
+ takeUntil,
7
+ map,
8
+ distinctUntilChanged,
9
+ of,
10
+ iif,
11
+ switchMap,
12
+ shareReplay
13
+ } from 'rxjs'
14
+ import type {
15
+ ChartParams,
16
+ ComputedDatumMultiValue,
17
+ ComputedDataMultiValue,
18
+ ComputedXYDatumMultiValue,
19
+ ContainerSize,
20
+ ContainerPositionScaled,
21
+ DataFormatterMultiValue,
22
+ Layout
23
+ } from '../../lib/core-types'
24
+ import type { BaseRacingLabelsParams } from '../../lib/plugins-basic-types'
25
+ import type { BasePluginFn } from './types'
26
+ import { getColor, getDatumColor, getClassName, getUniID } from '../utils/orbchartsUtils'
27
+ import { multiValueContainerSelectionsObservable } from '../multiValue/multiValueObservables'
28
+
29
+ interface BaseRacingAxisContext {
30
+ selection: d3.Selection<any, unknown, any, unknown>
31
+ computedData$: Observable<ComputedDataMultiValue>
32
+ visibleComputedRankingData$: Observable<ComputedDatumMultiValue[][]>
33
+ rankingScaleList$: Observable<Array<d3.ScalePoint<string>>>
34
+ xScale$: Observable<(n: number) => number>
35
+ fullParams$: Observable<BaseRacingLabelsParams>
36
+ fullDataFormatter$: Observable<DataFormatterMultiValue>
37
+ fullChartParams$: Observable<ChartParams>
38
+ // layout$: Observable<Layout>
39
+ containerPosition$: Observable<ContainerPositionScaled[]>
40
+ containerSize$: Observable<ContainerSize>
41
+ isCategorySeprate$: Observable<boolean>
42
+ // xyValueIndex$: Observable<[number, number]>
43
+ }
44
+
45
+ type ClipPathDatum = {
46
+ id: string;
47
+ // x: number;
48
+ // y: number;
49
+ width: number;
50
+ height: number;
51
+ }
52
+
53
+ // const pluginName = 'RacingAxis'
54
+
55
+ const yTickTextAnchor = 'end'
56
+ const yTickDominantBaseline = 'middle'
57
+ const yAxisLabelAnchor = 'end'
58
+ const yAxisLabelDominantBaseline = 'auto'
59
+ // const textClassName = getClassName(pluginName, 'yLabel')
60
+
61
+ function renderRacingAxisLabel ({ selection, textClassName, fullParams, containerSize, fullDataFormatter, fullChartParams, textReverseTransform }: {
62
+ selection: d3.Selection<SVGGElement, any, any, any>,
63
+ textClassName: string
64
+ fullParams: BaseRacingLabelsParams
65
+ // axisLabelAlign: TextAlign
66
+ containerSize: ContainerSize
67
+ fullDataFormatter: DataFormatterMultiValue,
68
+ fullChartParams: ChartParams
69
+ textReverseTransform: string,
70
+ }) {
71
+ const offsetX = fullParams.barLabel.padding - fullParams.axisLabel.offset[0]
72
+ const offsetY = - fullParams.barLabel.padding - fullParams.axisLabel.offset[1]
73
+ let labelX = - offsetX
74
+ let labelY = - offsetY
75
+
76
+ selection
77
+ .attr('transform', d => `translate(0, ${containerSize.height})`)
78
+ .selectAll<SVGTextElement, BaseRacingLabelsParams>(`text`)
79
+ .data([fullParams])
80
+ .join(
81
+ enter => {
82
+ return enter
83
+ .append('text')
84
+ .style('font-weight', 'bold')
85
+ },
86
+ update => update,
87
+ exit => exit.remove()
88
+ )
89
+ .attr('text-anchor', yAxisLabelAnchor)
90
+ .attr('dominant-baseline', yAxisLabelDominantBaseline)
91
+ .attr('font-size', fullChartParams.styles.textSize)
92
+ .style('fill', getColor(fullParams.axisLabel.colorType, fullChartParams))
93
+ // .style('transform', textReverseTransform)
94
+ // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
95
+ .attr('x', labelX)
96
+ .attr('y', labelY)
97
+ .text(d => fullDataFormatter.yAxis.label)
98
+ }
99
+
100
+ function renderRacingLabels ({ selection, fullParams, fullChartParams, rankingScale, valueScale, categoryData }: {
101
+ selection: d3.Selection<SVGGElement, any, any, any>,
102
+ fullParams: BaseRacingLabelsParams
103
+ fullChartParams: ChartParams
104
+ rankingScale: d3.ScalePoint<string>
105
+ valueScale: ((n: number) => number)
106
+ categoryData: ComputedDatumMultiValue[]
107
+ // textReverseTransformWithRotate: string,
108
+ // xyValueIndex: [number, number]
109
+ }) {
110
+ const labelData = fullParams.barLabel.position === 'none' ? [] : categoryData
111
+
112
+ const labelSelection = selection
113
+ .selectAll<SVGGElement, string>(`text`)
114
+ .data(labelData, (d: ComputedDatumMultiValue) => d.id)
115
+ // .join('g')
116
+ // .classed(boxClassName, true)
117
+ .join(
118
+ enter => {
119
+ return enter
120
+ .append('text')
121
+ .style('font-weight', 'bold')
122
+ .attr('x', d => valueScale(d.value[d.xValueIndex] ?? 0) - fullParams.barLabel.padding)
123
+ .attr('y', d => rankingScale(d.label)!)
124
+ },
125
+ update => {
126
+ return update
127
+ .transition()
128
+ .duration(fullChartParams.transitionDuration)
129
+ .ease(d3.easeLinear)
130
+ // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
131
+ .attr('x', d => valueScale(d.value[d.xValueIndex] ?? 0) - fullParams.barLabel.padding)
132
+ .attr('y', d => rankingScale(d.label)!)
133
+ },
134
+ exit => exit.remove()
135
+ )
136
+ .attr('text-anchor', yTickTextAnchor)
137
+ .attr('dominant-baseline', yTickDominantBaseline)
138
+ .attr('font-size', fullChartParams.styles.textSize)
139
+ .style('fill', d => getDatumColor({
140
+ colorType: fullParams.barLabel.colorType,
141
+ fullChartParams: fullChartParams,
142
+ datum: d
143
+ }))
144
+ // .style('transform', textReverseTransformWithRotate)
145
+ .text(d => d.label)
146
+
147
+ return labelSelection
148
+ }
149
+
150
+
151
+ function renderClipPath ({ defsSelection, clipPathData }: {
152
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
153
+ clipPathData: ClipPathDatum[]
154
+ // textReverseTransform: string
155
+ }) {
156
+ const clipPath = defsSelection
157
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
158
+ .data(clipPathData)
159
+ .join(
160
+ enter => {
161
+ return enter
162
+ .append('clipPath')
163
+ },
164
+ update => update,
165
+ exit => exit.remove()
166
+ )
167
+ .attr('id', d => d.id)
168
+ // .attr('transform', textReverseTransform)
169
+ .each((d, i, g) => {
170
+ const rect = d3.select(g[i])
171
+ .selectAll<SVGRectElement, typeof d>('rect')
172
+ .data([d])
173
+ .join(
174
+ enter => {
175
+ return enter
176
+ .append('rect')
177
+ },
178
+ update => update,
179
+ exit => exit.remove()
180
+ )
181
+ .attr('x', _d => - _d.width)
182
+ .attr('y', 0)
183
+ .attr('width', _d => _d.width * 2)
184
+ .attr('height', _d => _d.height)
185
+ })
186
+ }
187
+
188
+ export const createBaseRacingLabels: BasePluginFn<BaseRacingAxisContext> = (pluginName: string, {
189
+ selection,
190
+ computedData$,
191
+ visibleComputedRankingData$,
192
+ rankingScaleList$,
193
+ xScale$,
194
+ fullParams$,
195
+ fullDataFormatter$,
196
+ fullChartParams$,
197
+ // layout$,
198
+ containerPosition$,
199
+ containerSize$,
200
+ isCategorySeprate$,
201
+ // xyValueIndex$
202
+ }) => {
203
+
204
+ const destroy$ = new Subject()
205
+
206
+ // const containerClassName = getClassName(pluginName, 'container')
207
+ const boxClassName = getClassName(pluginName, 'box')
208
+ const textClassName = getClassName(pluginName, 'text')
209
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
210
+
211
+ const containerSelection$ = multiValueContainerSelectionsObservable({
212
+ selection,
213
+ pluginName,
214
+ clipPathID: null,
215
+ computedData$,
216
+ containerPosition$,
217
+ isCategorySeprate$,
218
+ }).pipe(
219
+ takeUntil(destroy$),
220
+ )
221
+
222
+ // const containerSelection$ = combineLatest({
223
+ // computedData: computedData$.pipe(
224
+ // distinctUntilChanged((a, b) => {
225
+ // // 只有當series的數量改變時,才重新計算
226
+ // return a.length === b.length
227
+ // }),
228
+ // ),
229
+ // isCategorySeprate: isCategorySeprate$
230
+ // }).pipe(
231
+ // takeUntil(destroy$),
232
+ // switchMap(async (d) => d),
233
+ // map(data => {
234
+ // return data.isCategorySeprate
235
+ // // category分開的時候顯示各別axis
236
+ // ? data.computedData
237
+ // // category合併的時候只顯示第一個axis
238
+ // : [data.computedData[0]]
239
+ // }),
240
+ // map((computedData, i) => {
241
+ // return selection
242
+ // .selectAll<SVGGElement, ComputedDatumMultiValue[]>(`g.${containerClassName}`)
243
+ // .data(computedData, d => d[0] ? d[0].categoryIndex : i)
244
+ // .join('g')
245
+ // .classed(containerClassName, true)
246
+ // })
247
+ // )
248
+
249
+ // combineLatest({
250
+ // containerSelection: containerSelection$,
251
+ // containerPosition: containerPosition$
252
+ // }).pipe(
253
+ // takeUntil(destroy$),
254
+ // switchMap(async d => d)
255
+ // ).subscribe(data => {
256
+ // data.containerSelection
257
+ // .attr('transform', (d, i) => {
258
+ // const containerPosition = data.containerPosition[i] ?? data.containerPosition[0]
259
+ // const translate = containerPosition.translate
260
+ // const scale = containerPosition.scale
261
+ // // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
262
+ // return `translate(${translate[0]}, ${translate[1]})`
263
+ // })
264
+ // // .attr('opacity', 0)
265
+ // // .transition()
266
+ // // .attr('opacity', 1)
267
+ // })
268
+
269
+ const textReverseTransform$ = containerPosition$.pipe(
270
+ takeUntil(destroy$),
271
+ switchMap(async (d) => d),
272
+ map(containerPosition => {
273
+ // const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
274
+ // const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
275
+ const containerScaleReverseValue = `scale(${1 / containerPosition[0].scale[0]}, ${1 / containerPosition[0].scale[1]})`
276
+ // 抵消最外層scale
277
+ return `${containerScaleReverseValue}`
278
+ }),
279
+ distinctUntilChanged()
280
+ )
281
+
282
+ // const textReverseTransformWithRotate$ = combineLatest({
283
+ // textReverseTransform: textReverseTransform$,
284
+ // fullParams: fullParams$,
285
+ // }).pipe(
286
+ // takeUntil(destroy$),
287
+ // switchMap(async (d) => d),
288
+ // map(data => {
289
+ // // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
290
+ // return `${data.textReverseTransform} rotate(${data.fullParams.barLabel.rotate}deg)`
291
+ // })
292
+ // )
293
+
294
+ // const rankingLabelList$ = visibleComputedRankingData$.pipe(
295
+ // takeUntil(destroy$),
296
+ // map(data => {
297
+ // return data.map(categoryData => categoryData.map(d => d.label))
298
+ // })
299
+ // )
300
+
301
+ const valueScale$: Observable<((n: number) => number)> = fullParams$.pipe(
302
+ map(fullParams => fullParams.barLabel.position),
303
+ distinctUntilChanged(),
304
+ switchMap(position => {
305
+ return iif(
306
+ () => position === 'inside',
307
+ xScale$,
308
+ of(() => 0)
309
+ )
310
+ })
311
+ )
312
+
313
+ containerSize$.subscribe(data => {
314
+ const defsSelection = selection.selectAll<SVGDefsElement, any>('defs')
315
+ .data([clipPathID])
316
+ .join('defs')
317
+ const clipPathData = [{
318
+ id: clipPathID,
319
+ width: data.width,
320
+ height: data.height
321
+ }]
322
+ renderClipPath({
323
+ defsSelection: defsSelection,
324
+ clipPathData,
325
+ // textReverseTransform: data.textReverseTransform
326
+ })
327
+ })
328
+
329
+ combineLatest({
330
+ containerSelection: containerSelection$,
331
+ fullParams: fullParams$,
332
+ // layout: layout$,
333
+ containerSize: containerSize$,
334
+ fullDataFormatter: fullDataFormatter$,
335
+ fullChartParams: fullChartParams$,
336
+ visibleComputedRankingData: visibleComputedRankingData$,
337
+ // rankingLabelList: rankingLabelList$,
338
+ rankingScaleList: rankingScaleList$,
339
+ valueScale: valueScale$,
340
+ textReverseTransform: textReverseTransform$,
341
+ // textReverseTransformWithRotate: textReverseTransformWithRotate$,
342
+ // xyValueIndex: xyValueIndex$
343
+ }).pipe(
344
+ takeUntil(destroy$),
345
+ switchMap(async (d) => d),
346
+ ).subscribe(data => {
347
+
348
+ data.containerSelection.each((d, i, g) => {
349
+ const _containerSelection = d3.select(g[i])
350
+ // const rankingLabels = data.rankingLabelList[i]
351
+ const rankingScale = data.rankingScaleList[i]
352
+ if (!rankingScale) {
353
+ return
354
+ }
355
+
356
+ // const containerClipPathID = `${clipPathID}-${i}`
357
+ const axisSelection = _containerSelection
358
+ .selectAll<SVGGElement, any>(`g.${boxClassName}`)
359
+ .data([i])
360
+ .join('g')
361
+ .attr('class', boxClassName)
362
+ .attr('clip-path', `url(#${clipPathID})`)
363
+ const axisLabelSelection = _containerSelection
364
+ .selectAll<SVGGElement, BaseRacingLabelsParams>(`g.${textClassName}`)
365
+ .data([data.fullParams])
366
+ .join('g')
367
+ .classed(textClassName, true)
368
+
369
+ renderRacingLabels({
370
+ selection: axisSelection,
371
+ fullParams: data.fullParams,
372
+ fullChartParams: data.fullChartParams,
373
+ rankingScale: rankingScale,
374
+ categoryData: data.visibleComputedRankingData[i],
375
+ // textReverseTransformWithRotate: data.textReverseTransformWithRotate,
376
+ valueScale: data.valueScale,
377
+ // xyValueIndex: data.xyValueIndex,
378
+ })
379
+
380
+ renderRacingAxisLabel({
381
+ selection: axisLabelSelection,
382
+ textClassName,
383
+ fullParams: data.fullParams,
384
+ containerSize: data.containerSize,
385
+ fullDataFormatter: data.fullDataFormatter,
386
+ fullChartParams: data.fullChartParams,
387
+ textReverseTransform: data.textReverseTransform,
388
+ })
389
+ })
390
+
391
+ })
392
+
393
+ return () => {
394
+ destroy$.next(undefined)
395
+ }
396
+ }