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