@orbcharts/plugins-basic 3.0.0-beta.6 → 3.0.0-beta.7

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 (93) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic/src/utils/d3Utils.d.ts +2 -2
  3. package/dist/orbcharts-plugins-basic.es.js +5001 -4981
  4. package/dist/orbcharts-plugins-basic.umd.js +28 -28
  5. package/lib/core-types.ts +7 -7
  6. package/lib/core.ts +6 -6
  7. package/lib/plugins-basic-types.ts +6 -6
  8. package/package.json +44 -44
  9. package/src/base/BaseBarStack.ts +782 -780
  10. package/src/base/BaseBars.ts +765 -765
  11. package/src/base/BaseBarsTriangle.ts +676 -674
  12. package/src/base/BaseDots.ts +464 -464
  13. package/src/base/BaseGroupAxis.ts +679 -679
  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/BaseTooltip.ts +385 -385
  18. package/src/base/BaseValueAxis.ts +583 -583
  19. package/src/base/types.ts +2 -2
  20. package/src/const.ts +30 -30
  21. package/src/grid/defaults.ts +246 -244
  22. package/src/grid/gridObservables.ts +554 -554
  23. package/src/grid/index.ts +16 -16
  24. package/src/grid/plugins/BarStack.ts +64 -64
  25. package/src/grid/plugins/Bars.ts +69 -69
  26. package/src/grid/plugins/BarsPN.ts +66 -66
  27. package/src/grid/plugins/BarsTriangle.ts +73 -73
  28. package/src/grid/plugins/Dots.ts +68 -68
  29. package/src/grid/plugins/GridLegend.ts +107 -107
  30. package/src/grid/plugins/GridTooltip.ts +66 -66
  31. package/src/grid/plugins/GridZoom.ts +218 -218
  32. package/src/grid/plugins/GroupAux.ts +1103 -1103
  33. package/src/grid/plugins/GroupAxis.ts +97 -97
  34. package/src/grid/plugins/LineAreas.ts +65 -65
  35. package/src/grid/plugins/Lines.ts +59 -59
  36. package/src/grid/plugins/ValueAxis.ts +94 -94
  37. package/src/grid/plugins/ValueStackAxis.ts +96 -96
  38. package/src/index.ts +10 -10
  39. package/src/multiGrid/defaults.ts +224 -224
  40. package/src/multiGrid/index.ts +14 -14
  41. package/src/multiGrid/multiGridObservables.ts +49 -49
  42. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  43. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  44. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  45. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  46. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  47. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  48. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  49. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  50. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  51. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -134
  52. package/src/multiGrid/plugins/MultiValueStackAxis.ts +134 -134
  53. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -300
  54. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +299 -299
  55. package/src/multiValue/defaults.ts +166 -162
  56. package/src/multiValue/index.ts +8 -8
  57. package/src/multiValue/multiValueObservables.ts +297 -258
  58. package/src/multiValue/plugins/MultiValueLegend.ts +107 -107
  59. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -66
  60. package/src/multiValue/plugins/Scatter.ts +426 -426
  61. package/src/multiValue/plugins/ScatterBubbles.ts +554 -551
  62. package/src/multiValue/plugins/XYAux.ts +681 -681
  63. package/src/multiValue/plugins/XYAxes.ts +684 -676
  64. package/src/multiValue/plugins/XYZoom.ts +299 -299
  65. package/src/noneData/defaults.ts +102 -102
  66. package/src/noneData/index.ts +3 -3
  67. package/src/noneData/plugins/Container.ts +27 -27
  68. package/src/noneData/plugins/Tooltip.ts +373 -373
  69. package/src/series/defaults.ts +206 -206
  70. package/src/series/index.ts +9 -9
  71. package/src/series/plugins/Bubbles.ts +603 -603
  72. package/src/series/plugins/Pie.ts +623 -623
  73. package/src/series/plugins/PieEventTexts.ts +283 -283
  74. package/src/series/plugins/PieLabels.ts +640 -640
  75. package/src/series/plugins/Rose.ts +516 -516
  76. package/src/series/plugins/RoseLabels.ts +600 -600
  77. package/src/series/plugins/SeriesLegend.ts +107 -107
  78. package/src/series/plugins/SeriesTooltip.ts +66 -66
  79. package/src/series/seriesObservables.ts +145 -145
  80. package/src/series/seriesUtils.ts +51 -51
  81. package/src/tree/defaults.ts +78 -78
  82. package/src/tree/index.ts +4 -4
  83. package/src/tree/plugins/TreeLegend.ts +100 -100
  84. package/src/tree/plugins/TreeMap.ts +333 -333
  85. package/src/tree/plugins/TreeTooltip.ts +66 -66
  86. package/src/utils/commonUtils.ts +21 -21
  87. package/src/utils/d3Graphics.ts +174 -174
  88. package/src/utils/d3Utils.ts +74 -74
  89. package/src/utils/observables.ts +14 -14
  90. package/src/utils/orbchartsUtils.ts +116 -101
  91. package/tsconfig.base.json +13 -13
  92. package/tsconfig.json +2 -2
  93. package/vite.config.js +22 -22
@@ -1,583 +1,583 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- switchMap,
5
- distinctUntilChanged,
6
- first,
7
- map,
8
- takeUntil,
9
- Observable,
10
- Subject } from 'rxjs'
11
- import { createValueToAxisScale } from '../../lib/core'
12
- import type { BasePluginFn } from './types'
13
- import type {
14
- ComputedDataGrid,
15
- DataFormatterGrid,
16
- ChartParams,
17
- ComputedDatumGrid,
18
- ContainerPositionScaled,
19
- TransformData,
20
- EventGrid,
21
- ColorType
22
- } from '../../lib/core-types'
23
- import type { BaseValueAxisParams } from '../../lib/plugins-basic-types'
24
- import { parseTickFormatValue } from '../utils/d3Utils'
25
- import { getColor, getMinAndMaxValue, getClassName, getUniID } from '../utils/orbchartsUtils'
26
-
27
- // export interface BaseValueAxisParams {
28
- // labelOffset: [number, number]
29
- // labelColorType: ColorType
30
- // axisLineVisible: boolean
31
- // axisLineColorType: ColorType
32
- // ticks: number
33
- // tickFormat: string | ((text: d3.NumberValue) => string)
34
- // tickLineVisible: boolean
35
- // tickPadding: number
36
- // tickFullLine: boolean
37
- // tickFullLineDasharray: string
38
- // tickColorType: ColorType
39
- // tickTextRotate: number
40
- // tickTextColorType: ColorType
41
- // }
42
-
43
- interface BaseLinesContext {
44
- selection: d3.Selection<any, unknown, any, unknown>
45
- computedData$: Observable<ComputedDataGrid>
46
- filteredMinMaxValue$: Observable<[number, number]>
47
- fullParams$: Observable<BaseValueAxisParams>
48
- fullDataFormatter$: Observable<DataFormatterGrid>
49
- fullChartParams$: Observable<ChartParams>
50
- gridAxesTransform$: Observable<TransformData>
51
- gridAxesReverseTransform$: Observable<TransformData>
52
- gridAxesSize$: Observable<{
53
- width: number;
54
- height: number;
55
- }>
56
- gridContainerPosition$: Observable<ContainerPositionScaled[]>
57
- isSeriesSeprate$: Observable<boolean>
58
- }
59
-
60
- interface TextAlign {
61
- textAnchor: "start" | "middle" | "end"
62
- dominantBaseline: "middle" | "auto" | "hanging"
63
- }
64
-
65
- // const pluginName = 'ValueAxis'
66
- // const containerClassName = getClassName(pluginName, 'container')
67
- // const yAxisGClassName = getClassName(pluginName, 'yAxisG')
68
- // const yAxisClassName = getClassName(pluginName, 'yAxis')
69
- // const textClassName = getClassName(pluginName, 'text')
70
- const defaultTickSize = 6
71
-
72
- function renderAxisLabel ({ selection, textClassName, fullParams, axisLabelAlign, gridAxesSize, fullDataFormatter, fullChartParams, textReverseTransform }: {
73
- selection: d3.Selection<SVGGElement, any, any, any>,
74
- textClassName: string
75
- fullParams: BaseValueAxisParams
76
- axisLabelAlign: TextAlign
77
- gridAxesSize: { width: number, height: number }
78
- fullDataFormatter: DataFormatterGrid,
79
- fullChartParams: ChartParams
80
- textReverseTransform: string,
81
- }) {
82
- const offsetX = fullParams.tickPadding - fullParams.labelOffset[0]
83
- const offsetY = fullParams.tickPadding + fullParams.labelOffset[1]
84
- let labelX = 0
85
- let labelY = 0
86
- if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
87
- // labelY = - gridAxesSize.height - offsetY
88
- labelY = - offsetY
89
- if (fullDataFormatter.grid.valueAxis.position === 'left') {
90
- labelX = - offsetX
91
- } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
92
- labelX = offsetX
93
- }
94
- } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
95
- // labelY = gridAxesSize.height + offsetY
96
- labelY = offsetY
97
- if (fullDataFormatter.grid.valueAxis.position === 'left') {
98
- labelX = - offsetX
99
- } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
100
- labelX = offsetX
101
- }
102
- } else if (fullDataFormatter.grid.groupAxis.position === 'left') {
103
- // labelX = gridAxesSize.width + offsetX
104
- labelX = offsetX
105
- if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
106
- labelY = offsetY
107
- } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
108
- labelY = - offsetY
109
- }
110
- } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
111
- labelX = - offsetX
112
- if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
113
- labelY = offsetY
114
- } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
115
- labelY = - offsetY
116
- }
117
- }
118
-
119
- const axisLabelSelection = selection
120
- .selectAll<SVGGElement, BaseValueAxisParams>(`g.${textClassName}`)
121
- .data([fullParams])
122
- .join('g')
123
- .classed(textClassName, true)
124
- .each((d, i, g) => {
125
- const text = d3.select(g[i])
126
- .selectAll<SVGTextElement, BaseValueAxisParams>(`text`)
127
- .data([d])
128
- .join(
129
- enter => {
130
- return enter
131
- .append('text')
132
- .style('font-weight', 'bold')
133
- },
134
- update => update,
135
- exit => exit.remove()
136
- )
137
- .attr('text-anchor', axisLabelAlign.textAnchor)
138
- .attr('dominant-baseline', axisLabelAlign.dominantBaseline)
139
- .attr('font-size', fullChartParams.styles.textSize)
140
- .style('fill', getColor(fullParams.labelColorType, fullChartParams))
141
- .style('transform', textReverseTransform)
142
- // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
143
- .attr('x', labelX)
144
- .attr('y', labelY)
145
- .text(d => fullDataFormatter.grid.valueAxis.label)
146
- })
147
- .attr('transform', d => `translate(0, ${gridAxesSize.height})`)
148
- // .attr('transform', d => `translate(${- fullParams.tickPadding + fullParams.labelOffset[0]}, ${gridAxesSize.height + fullParams.tickPadding + fullParams.labelOffset[1]})`)
149
-
150
-
151
- }
152
-
153
- function renderAxis ({ selection, yAxisClassName, fullParams, tickTextAlign, gridAxesSize, fullDataFormatter, fullChartParams, valueScale, textReverseTransformWithRotate, filteredMinMaxValue }: {
154
- selection: d3.Selection<SVGGElement, any, any, any>,
155
- yAxisClassName: string
156
- fullParams: BaseValueAxisParams
157
- tickTextAlign: TextAlign
158
- gridAxesSize: { width: number, height: number }
159
- fullDataFormatter: DataFormatterGrid,
160
- fullChartParams: ChartParams
161
- valueScale: d3.ScaleLinear<number, number>
162
- textReverseTransformWithRotate: string,
163
- filteredMinMaxValue: [number, number]
164
- }) {
165
-
166
- const yAxisSelection = selection
167
- .selectAll<SVGGElement, BaseValueAxisParams>(`g.${yAxisClassName}`)
168
- .data([fullParams])
169
- .join('g')
170
- .classed(yAxisClassName, true)
171
-
172
- const valueLength = filteredMinMaxValue[1] - filteredMinMaxValue[0]
173
-
174
- // const _valueScale = d3.scaleLinear()
175
- // .domain([0, 150])
176
- // .range([416.5, 791.349])
177
-
178
- // 刻度文字偏移
179
- let tickPadding = 0
180
- let textY = 0
181
- if (fullDataFormatter.grid.valueAxis.position === 'left') {
182
- tickPadding = fullParams.tickPadding
183
- textY = 0
184
- } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
185
- tickPadding = - fullParams.tickPadding
186
- textY = 0
187
- } else if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
188
- tickPadding = 0
189
- textY = fullParams.tickPadding
190
- } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
191
- tickPadding = 0
192
- textY = - fullParams.tickPadding
193
- }
194
-
195
- // 設定Y軸刻度
196
- const yAxis = d3.axisLeft(valueScale)
197
- .scale(valueScale)
198
- .ticks(valueLength > fullParams.ticks
199
- ? fullParams.ticks
200
- : ((filteredMinMaxValue[0] === 0 && filteredMinMaxValue[1] === 0)
201
- ? 1
202
- : Math.ceil(valueLength))) // 刻度分段數量
203
- .tickFormat(d => parseTickFormatValue(d, fullParams.tickFormat))
204
- .tickSize(fullParams.tickFullLine == true
205
- ? -gridAxesSize.width
206
- : defaultTickSize)
207
- .tickPadding(tickPadding)
208
-
209
- const yAxisEl = yAxisSelection
210
- .transition()
211
- .duration(100)
212
- .call(yAxis)
213
-
214
- yAxisEl.selectAll('line')
215
- .style('fill', 'none')
216
- .style('stroke', fullParams.tickLineVisible == true ? getColor(fullParams.tickColorType, fullChartParams) : 'none')
217
- .style('stroke-dasharray', fullParams.tickFullLineDasharray)
218
- .attr('pointer-events', 'none')
219
-
220
- yAxisEl.selectAll('path')
221
- .style('fill', 'none')
222
- // .style('stroke', this.fullParams.axisLineColor!)
223
- .style('stroke', fullParams.axisLineVisible == true ? getColor(fullParams.axisLineColorType, fullChartParams) : 'none')
224
- .style('shape-rendering', 'crispEdges')
225
-
226
- // const yText = yAxisEl.selectAll('text')
227
- const yText = yAxisSelection.selectAll('text')
228
- // .style('font-family', 'sans-serif')
229
- .attr('font-size', fullChartParams.styles.textSize)
230
- .style('color', getColor(fullParams.tickTextColorType, fullChartParams))
231
- .attr('text-anchor', tickTextAlign.textAnchor)
232
- .attr('dominant-baseline', tickTextAlign.dominantBaseline)
233
- // .attr('dy', 0)
234
- .attr('y', textY)
235
- .attr('dy', 0)
236
- yText.style('transform', textReverseTransformWithRotate)
237
-
238
- // 抵消掉預設的偏移
239
- if (fullDataFormatter.grid.valueAxis.position === 'bottom' || fullDataFormatter.grid.valueAxis.position === 'top') {
240
- yText.attr('dy', 0)
241
- }
242
-
243
- return yAxisSelection
244
- }
245
-
246
-
247
-
248
- export const createBaseValueAxis: BasePluginFn<BaseLinesContext> = (pluginName: string, {
249
- selection,
250
- computedData$,
251
- filteredMinMaxValue$,
252
- fullParams$,
253
- fullDataFormatter$,
254
- fullChartParams$,
255
- gridAxesTransform$,
256
- gridAxesReverseTransform$,
257
- gridAxesSize$,
258
- gridContainerPosition$,
259
- isSeriesSeprate$,
260
- }) => {
261
-
262
- const destroy$ = new Subject()
263
-
264
- const containerClassName = getClassName(pluginName, 'container')
265
- const yAxisGClassName = getClassName(pluginName, 'yAxisG')
266
- const yAxisClassName = getClassName(pluginName, 'yAxis')
267
- const textClassName = getClassName(pluginName, 'text')
268
-
269
- const containerSelection$ = combineLatest({
270
- computedData: computedData$.pipe(
271
- distinctUntilChanged((a, b) => {
272
- // 只有當series的數量改變時,才重新計算
273
- return a.length === b.length
274
- }),
275
- ),
276
- isSeriesSeprate: isSeriesSeprate$
277
- }).pipe(
278
- takeUntil(destroy$),
279
- switchMap(async (d) => d),
280
- map(data => {
281
- return data.isSeriesSeprate
282
- // series分開的時候顯示各別axis
283
- ? data.computedData
284
- // series合併的時候只顯示第一個axis
285
- : [data.computedData[0]]
286
- }),
287
- map((computedData, i) => {
288
- return selection
289
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
290
- .data(computedData, d => d[0] ? d[0].seriesIndex : i)
291
- .join('g')
292
- .classed(containerClassName, true)
293
- })
294
- )
295
-
296
- const axisSelection$ = containerSelection$.pipe(
297
- takeUntil(destroy$),
298
- map((containerSelection, i) => {
299
- return containerSelection
300
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${yAxisGClassName}`)
301
- .data([yAxisGClassName])
302
- .join('g')
303
- .classed(yAxisGClassName, true)
304
- })
305
- )
306
-
307
- combineLatest({
308
- containerSelection: containerSelection$,
309
- gridContainerPosition: gridContainerPosition$
310
- }).pipe(
311
- takeUntil(destroy$),
312
- switchMap(async d => d)
313
- ).subscribe(data => {
314
- data.containerSelection
315
- .attr('transform', (d, i) => {
316
- const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
317
- const translate = gridContainerPosition.translate
318
- const scale = gridContainerPosition.scale
319
- return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
320
- })
321
- // .attr('opacity', 0)
322
- // .transition()
323
- // .attr('opacity', 1)
324
- })
325
-
326
- combineLatest({
327
- axisSelection: axisSelection$,
328
- gridAxesTransform: gridAxesTransform$,
329
- }).pipe(
330
- takeUntil(destroy$),
331
- switchMap(async d => d)
332
- ).subscribe(data => {
333
- data.axisSelection
334
- .style('transform', data.gridAxesTransform.value)
335
- // .attr('opacity', 0)
336
- // .transition()
337
- // .attr('opacity', 1)
338
-
339
- })
340
-
341
- // const gridAxesSize$ = gridAxisSizeObservable({
342
- // fullDataFormatter$,
343
- // layout$
344
- // })
345
-
346
- // const textReverseTransform$: Observable<string> = new Observable(subscriber => {
347
- // combineLatest({
348
- // fullParams: fullParams$,
349
- // layout: layout$
350
- // }).pipe(
351
- // takeUntil(destroy$),
352
- // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
353
- // switchMap(async (d) => d),
354
- // ).subscribe(data => {
355
-
356
- // const transformData = Object.assign({}, data.layout.content.axesTransformData)
357
-
358
- // const value = getAxesTransformValue({
359
- // translate: [0, 0],
360
- // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
361
- // rotate: transformData.rotate * -1 + data.fullParams.tickTextRotate,
362
- // rotateX: transformData.rotateX * -1,
363
- // rotateY: transformData.rotateY * -1
364
- // })
365
-
366
- // subscriber.next(value)
367
- // })
368
- // })
369
- // const reverseTransform$: Observable<TransformData> = gridAxesTransform$.pipe(
370
- // takeUntil(destroy$),
371
- // map(d => {
372
- // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
373
- // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
374
- // const rotate = d.rotate * -1
375
- // const rotateX = d.rotateX * -1
376
- // const rotateY = d.rotateY * -1
377
- // return {
378
- // translate,
379
- // scale,
380
- // rotate,
381
- // rotateX,
382
- // rotateY,
383
- // value: ''
384
- // }
385
- // }),
386
- // )
387
- const textReverseTransform$ = combineLatest({
388
- gridAxesReverseTransform: gridAxesReverseTransform$,
389
- gridContainerPosition: gridContainerPosition$
390
- }).pipe(
391
- takeUntil(destroy$),
392
- switchMap(async (d) => d),
393
- map(data => {
394
- // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
395
- const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
396
- const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
397
- const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
398
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
399
- return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
400
- }),
401
- distinctUntilChanged()
402
- )
403
-
404
- const textReverseTransformWithRotate$ = combineLatest({
405
- textReverseTransform: textReverseTransform$,
406
- fullParams: fullParams$,
407
- }).pipe(
408
- takeUntil(destroy$),
409
- switchMap(async (d) => d),
410
- map(data => {
411
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
412
- return `${data.textReverseTransform} rotate(${data.fullParams.tickTextRotate}deg)`
413
- })
414
- )
415
-
416
- // const minAndMax$: Observable<[number, number]> = new Observable(subscriber => {
417
- // combineLatest({
418
- // fullDataFormatter: fullDataFormatter$,
419
- // computedData: computedData$
420
- // }).pipe(
421
- // takeUntil(destroy$),
422
- // switchMap(async (d) => d),
423
- // ).subscribe(data => {
424
- // const groupMin = 0
425
- // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
426
- // // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
427
- // // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
428
- // // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
429
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
430
- // const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
431
- // ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
432
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
433
-
434
- // const filteredData = data.computedData.map((d, i) => {
435
- // return d.filter((_d, _i) => {
436
- // return _i >= groupScaleDomainMin && _i <= groupScaleDomainMax
437
- // })
438
- // })
439
-
440
- // const filteredMinAndMax = getMinAndMaxValue(filteredData.flat())
441
- // if (filteredMinAndMax[0] === filteredMinAndMax[1]) {
442
- // filteredMinAndMax[0] = filteredMinAndMax[1] - 1 // 避免最大及最小值相同造成無法計算scale
443
- // }
444
- // subscriber.next(filteredMinAndMax)
445
- // })
446
- // })
447
-
448
- const valueScale$: Observable<d3.ScaleLinear<number, number>> = new Observable(subscriber => {
449
- combineLatest({
450
- fullDataFormatter: fullDataFormatter$,
451
- gridAxesSize: gridAxesSize$,
452
- // minAndMax: minAndMax$
453
- filteredMinMaxValue: filteredMinMaxValue$
454
- }).pipe(
455
- takeUntil(destroy$),
456
- switchMap(async (d) => d),
457
- ).subscribe(data => {
458
-
459
- const valueScale: d3.ScaleLinear<number, number> = createValueToAxisScale({
460
- maxValue: data.filteredMinMaxValue[1],
461
- minValue: data.filteredMinMaxValue[0],
462
- axisWidth: data.gridAxesSize.height,
463
- scaleDomain: data.fullDataFormatter.grid.valueAxis.scaleDomain,
464
- scaleRange: data.fullDataFormatter.grid.valueAxis.scaleRange
465
- })
466
-
467
- subscriber.next(valueScale)
468
- })
469
- })
470
-
471
- const tickTextAlign$: Observable<TextAlign> = combineLatest({
472
- fullDataFormatter: fullDataFormatter$,
473
- fullParams: fullParams$
474
- }).pipe(
475
- takeUntil(destroy$),
476
- switchMap(async (d) => d),
477
- map(data => {
478
- let textAnchor: 'start' | 'middle' | 'end' = 'start'
479
- let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
480
-
481
- if (data.fullDataFormatter.grid.valueAxis.position === 'left') {
482
- textAnchor = 'end'
483
- dominantBaseline = 'middle'
484
- } else if (data.fullDataFormatter.grid.valueAxis.position === 'right') {
485
- textAnchor = 'start'
486
- dominantBaseline = 'middle'
487
- } else if (data.fullDataFormatter.grid.valueAxis.position === 'bottom') {
488
- textAnchor = data.fullParams.tickTextRotate
489
- ? 'end'
490
- : 'middle'
491
- dominantBaseline = 'hanging'
492
- } else if (data.fullDataFormatter.grid.valueAxis.position === 'top') {
493
- textAnchor = data.fullParams.tickTextRotate
494
- ? 'start'
495
- : 'middle'
496
- dominantBaseline = 'auto'
497
- }
498
- return {
499
- textAnchor,
500
- dominantBaseline
501
- }
502
- })
503
- )
504
-
505
- const axisLabelAlign$: Observable<TextAlign> = fullDataFormatter$.pipe(
506
- takeUntil(destroy$),
507
- map(d => {
508
- let textAnchor: 'start' | 'middle' | 'end' = 'start'
509
- let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
510
-
511
- if (d.grid.groupAxis.position === 'bottom') {
512
- dominantBaseline = 'auto'
513
- } else if (d.grid.groupAxis.position === 'top') {
514
- dominantBaseline = 'hanging'
515
- } else if (d.grid.groupAxis.position === 'left') {
516
- textAnchor = 'start'
517
- } else if (d.grid.groupAxis.position === 'right') {
518
- textAnchor = 'end'
519
- }
520
- if (d.grid.valueAxis.position === 'left') {
521
- textAnchor = 'end'
522
- } else if (d.grid.valueAxis.position === 'right') {
523
- textAnchor = 'start'
524
- } else if (d.grid.valueAxis.position === 'bottom') {
525
- dominantBaseline = 'hanging'
526
- } else if (d.grid.valueAxis.position === 'top') {
527
- dominantBaseline = 'auto'
528
- }
529
- return {
530
- textAnchor,
531
- dominantBaseline
532
- }
533
- })
534
- )
535
-
536
-
537
- combineLatest({
538
- axisSelection: axisSelection$,
539
- fullParams: fullParams$,
540
- tickTextAlign: tickTextAlign$,
541
- axisLabelAlign: axisLabelAlign$,
542
- computedData: computedData$,
543
- gridAxesSize: gridAxesSize$,
544
- fullDataFormatter: fullDataFormatter$,
545
- fullChartParams: fullChartParams$,
546
- valueScale: valueScale$,
547
- textReverseTransform: textReverseTransform$,
548
- textReverseTransformWithRotate: textReverseTransformWithRotate$,
549
- filteredMinMaxValue: filteredMinMaxValue$
550
- }).pipe(
551
- takeUntil(destroy$),
552
- switchMap(async (d) => d),
553
- ).subscribe(data => {
554
-
555
- renderAxis({
556
- selection: data.axisSelection,
557
- yAxisClassName,
558
- fullParams: data.fullParams,
559
- tickTextAlign: data.tickTextAlign,
560
- gridAxesSize: data.gridAxesSize,
561
- fullDataFormatter: data.fullDataFormatter,
562
- fullChartParams: data.fullChartParams,
563
- valueScale: data.valueScale,
564
- textReverseTransformWithRotate: data.textReverseTransformWithRotate,
565
- filteredMinMaxValue: data.filteredMinMaxValue
566
- })
567
-
568
- renderAxisLabel({
569
- selection: data.axisSelection,
570
- textClassName,
571
- fullParams: data.fullParams,
572
- axisLabelAlign: data.axisLabelAlign,
573
- gridAxesSize: data.gridAxesSize,
574
- fullDataFormatter: data.fullDataFormatter,
575
- fullChartParams: data.fullChartParams,
576
- textReverseTransform: data.textReverseTransform,
577
- })
578
- })
579
-
580
- return () => {
581
- destroy$.next(undefined)
582
- }
583
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ switchMap,
5
+ distinctUntilChanged,
6
+ first,
7
+ map,
8
+ takeUntil,
9
+ Observable,
10
+ Subject } from 'rxjs'
11
+ import { createValueToAxisScale } from '../../lib/core'
12
+ import type { BasePluginFn } from './types'
13
+ import type {
14
+ ComputedDataGrid,
15
+ DataFormatterGrid,
16
+ ChartParams,
17
+ ComputedDatumGrid,
18
+ ContainerPositionScaled,
19
+ TransformData,
20
+ EventGrid,
21
+ ColorType
22
+ } from '../../lib/core-types'
23
+ import type { BaseValueAxisParams } from '../../lib/plugins-basic-types'
24
+ import { parseTickFormatValue } from '../utils/d3Utils'
25
+ import { getColor, getMinAndMaxValue, getClassName, getUniID } from '../utils/orbchartsUtils'
26
+
27
+ // export interface BaseValueAxisParams {
28
+ // labelOffset: [number, number]
29
+ // labelColorType: ColorType
30
+ // axisLineVisible: boolean
31
+ // axisLineColorType: ColorType
32
+ // ticks: number
33
+ // tickFormat: string | ((text: d3.NumberValue) => string)
34
+ // tickLineVisible: boolean
35
+ // tickPadding: number
36
+ // tickFullLine: boolean
37
+ // tickFullLineDasharray: string
38
+ // tickColorType: ColorType
39
+ // tickTextRotate: number
40
+ // tickTextColorType: ColorType
41
+ // }
42
+
43
+ interface BaseLinesContext {
44
+ selection: d3.Selection<any, unknown, any, unknown>
45
+ computedData$: Observable<ComputedDataGrid>
46
+ filteredMinMaxValue$: Observable<[number, number]>
47
+ fullParams$: Observable<BaseValueAxisParams>
48
+ fullDataFormatter$: Observable<DataFormatterGrid>
49
+ fullChartParams$: Observable<ChartParams>
50
+ gridAxesTransform$: Observable<TransformData>
51
+ gridAxesReverseTransform$: Observable<TransformData>
52
+ gridAxesSize$: Observable<{
53
+ width: number;
54
+ height: number;
55
+ }>
56
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
57
+ isSeriesSeprate$: Observable<boolean>
58
+ }
59
+
60
+ interface TextAlign {
61
+ textAnchor: "start" | "middle" | "end"
62
+ dominantBaseline: "middle" | "auto" | "hanging"
63
+ }
64
+
65
+ // const pluginName = 'ValueAxis'
66
+ // const containerClassName = getClassName(pluginName, 'container')
67
+ // const yAxisGClassName = getClassName(pluginName, 'yAxisG')
68
+ // const yAxisClassName = getClassName(pluginName, 'yAxis')
69
+ // const textClassName = getClassName(pluginName, 'text')
70
+ const defaultTickSize = 6
71
+
72
+ function renderAxisLabel ({ selection, textClassName, fullParams, axisLabelAlign, gridAxesSize, fullDataFormatter, fullChartParams, textReverseTransform }: {
73
+ selection: d3.Selection<SVGGElement, any, any, any>,
74
+ textClassName: string
75
+ fullParams: BaseValueAxisParams
76
+ axisLabelAlign: TextAlign
77
+ gridAxesSize: { width: number, height: number }
78
+ fullDataFormatter: DataFormatterGrid,
79
+ fullChartParams: ChartParams
80
+ textReverseTransform: string,
81
+ }) {
82
+ const offsetX = fullParams.tickPadding - fullParams.labelOffset[0]
83
+ const offsetY = fullParams.tickPadding + fullParams.labelOffset[1]
84
+ let labelX = 0
85
+ let labelY = 0
86
+ if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
87
+ // labelY = - gridAxesSize.height - offsetY
88
+ labelY = - offsetY
89
+ if (fullDataFormatter.grid.valueAxis.position === 'left') {
90
+ labelX = - offsetX
91
+ } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
92
+ labelX = offsetX
93
+ }
94
+ } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
95
+ // labelY = gridAxesSize.height + offsetY
96
+ labelY = offsetY
97
+ if (fullDataFormatter.grid.valueAxis.position === 'left') {
98
+ labelX = - offsetX
99
+ } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
100
+ labelX = offsetX
101
+ }
102
+ } else if (fullDataFormatter.grid.groupAxis.position === 'left') {
103
+ // labelX = gridAxesSize.width + offsetX
104
+ labelX = offsetX
105
+ if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
106
+ labelY = offsetY
107
+ } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
108
+ labelY = - offsetY
109
+ }
110
+ } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
111
+ labelX = - offsetX
112
+ if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
113
+ labelY = offsetY
114
+ } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
115
+ labelY = - offsetY
116
+ }
117
+ }
118
+
119
+ const axisLabelSelection = selection
120
+ .selectAll<SVGGElement, BaseValueAxisParams>(`g.${textClassName}`)
121
+ .data([fullParams])
122
+ .join('g')
123
+ .classed(textClassName, true)
124
+ .each((d, i, g) => {
125
+ const text = d3.select(g[i])
126
+ .selectAll<SVGTextElement, BaseValueAxisParams>(`text`)
127
+ .data([d])
128
+ .join(
129
+ enter => {
130
+ return enter
131
+ .append('text')
132
+ .style('font-weight', 'bold')
133
+ },
134
+ update => update,
135
+ exit => exit.remove()
136
+ )
137
+ .attr('text-anchor', axisLabelAlign.textAnchor)
138
+ .attr('dominant-baseline', axisLabelAlign.dominantBaseline)
139
+ .attr('font-size', fullChartParams.styles.textSize)
140
+ .style('fill', getColor(fullParams.labelColorType, fullChartParams))
141
+ .style('transform', textReverseTransform)
142
+ // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
143
+ .attr('x', labelX)
144
+ .attr('y', labelY)
145
+ .text(d => fullDataFormatter.grid.valueAxis.label)
146
+ })
147
+ .attr('transform', d => `translate(0, ${gridAxesSize.height})`)
148
+ // .attr('transform', d => `translate(${- fullParams.tickPadding + fullParams.labelOffset[0]}, ${gridAxesSize.height + fullParams.tickPadding + fullParams.labelOffset[1]})`)
149
+
150
+
151
+ }
152
+
153
+ function renderAxis ({ selection, yAxisClassName, fullParams, tickTextAlign, gridAxesSize, fullDataFormatter, fullChartParams, valueScale, textReverseTransformWithRotate, filteredMinMaxValue }: {
154
+ selection: d3.Selection<SVGGElement, any, any, any>,
155
+ yAxisClassName: string
156
+ fullParams: BaseValueAxisParams
157
+ tickTextAlign: TextAlign
158
+ gridAxesSize: { width: number, height: number }
159
+ fullDataFormatter: DataFormatterGrid,
160
+ fullChartParams: ChartParams
161
+ valueScale: d3.ScaleLinear<number, number>
162
+ textReverseTransformWithRotate: string,
163
+ filteredMinMaxValue: [number, number]
164
+ }) {
165
+
166
+ const yAxisSelection = selection
167
+ .selectAll<SVGGElement, BaseValueAxisParams>(`g.${yAxisClassName}`)
168
+ .data([fullParams])
169
+ .join('g')
170
+ .classed(yAxisClassName, true)
171
+
172
+ // const _valueScale = d3.scaleLinear()
173
+ // .domain([0, 150])
174
+ // .range([416.5, 791.349])
175
+
176
+ // 刻度文字偏移
177
+ let tickPadding = 0
178
+ let textY = 0
179
+ if (fullDataFormatter.grid.valueAxis.position === 'left') {
180
+ tickPadding = fullParams.tickPadding
181
+ textY = 0
182
+ } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
183
+ tickPadding = - fullParams.tickPadding
184
+ textY = 0
185
+ } else if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
186
+ tickPadding = 0
187
+ textY = fullParams.tickPadding
188
+ } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
189
+ tickPadding = 0
190
+ textY = - fullParams.tickPadding
191
+ }
192
+
193
+ // 設定Y軸刻度
194
+ const yAxis = d3.axisLeft(valueScale)
195
+ .scale(valueScale)
196
+ .ticks(fullParams.ticks) // 刻度分段數量
197
+ .tickFormat(d => parseTickFormatValue(d, fullParams.tickFormat))
198
+ .tickSize(fullParams.tickFullLine == true
199
+ ? -gridAxesSize.width
200
+ : defaultTickSize)
201
+ .tickPadding(tickPadding)
202
+
203
+ const yAxisEl = yAxisSelection
204
+ .transition()
205
+ .duration(100)
206
+ .call(yAxis)
207
+
208
+ yAxisEl.selectAll('line')
209
+ .style('fill', 'none')
210
+ .style('stroke', fullParams.tickLineVisible == true ? getColor(fullParams.tickColorType, fullChartParams) : 'none')
211
+ .style('stroke-dasharray', fullParams.tickFullLineDasharray)
212
+ .attr('pointer-events', 'none')
213
+
214
+ yAxisEl.selectAll('path')
215
+ .style('fill', 'none')
216
+ // .style('stroke', this.fullParams.axisLineColor!)
217
+ .style('stroke', fullParams.axisLineVisible == true ? getColor(fullParams.axisLineColorType, fullChartParams) : 'none')
218
+ .style('shape-rendering', 'crispEdges')
219
+
220
+ // const yText = yAxisEl.selectAll('text')
221
+ const yText = yAxisSelection.selectAll('text')
222
+ // .style('font-family', 'sans-serif')
223
+ .attr('font-size', fullChartParams.styles.textSize)
224
+ .style('color', getColor(fullParams.tickTextColorType, fullChartParams))
225
+ .attr('text-anchor', tickTextAlign.textAnchor)
226
+ .attr('dominant-baseline', tickTextAlign.dominantBaseline)
227
+ // .attr('dy', 0)
228
+ .attr('y', textY)
229
+ .attr('dy', 0)
230
+ yText.style('transform', textReverseTransformWithRotate)
231
+
232
+ // 抵消掉預設的偏移
233
+ if (fullDataFormatter.grid.valueAxis.position === 'bottom' || fullDataFormatter.grid.valueAxis.position === 'top') {
234
+ yText.attr('dy', 0)
235
+ }
236
+
237
+ return yAxisSelection
238
+ }
239
+
240
+
241
+
242
+ export const createBaseValueAxis: BasePluginFn<BaseLinesContext> = (pluginName: string, {
243
+ selection,
244
+ computedData$,
245
+ filteredMinMaxValue$,
246
+ fullParams$,
247
+ fullDataFormatter$,
248
+ fullChartParams$,
249
+ gridAxesTransform$,
250
+ gridAxesReverseTransform$,
251
+ gridAxesSize$,
252
+ gridContainerPosition$,
253
+ isSeriesSeprate$,
254
+ }) => {
255
+
256
+ const destroy$ = new Subject()
257
+
258
+ const containerClassName = getClassName(pluginName, 'container')
259
+ const yAxisGClassName = getClassName(pluginName, 'yAxisG')
260
+ const yAxisClassName = getClassName(pluginName, 'yAxis')
261
+ const textClassName = getClassName(pluginName, 'text')
262
+
263
+ const containerSelection$ = combineLatest({
264
+ computedData: computedData$.pipe(
265
+ distinctUntilChanged((a, b) => {
266
+ // 只有當series的數量改變時,才重新計算
267
+ return a.length === b.length
268
+ }),
269
+ ),
270
+ isSeriesSeprate: isSeriesSeprate$
271
+ }).pipe(
272
+ takeUntil(destroy$),
273
+ switchMap(async (d) => d),
274
+ map(data => {
275
+ return data.isSeriesSeprate
276
+ // series分開的時候顯示各別axis
277
+ ? data.computedData
278
+ // series合併的時候只顯示第一個axis
279
+ : [data.computedData[0]]
280
+ }),
281
+ map((computedData, i) => {
282
+ return selection
283
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
284
+ .data(computedData, d => d[0] ? d[0].seriesIndex : i)
285
+ .join('g')
286
+ .classed(containerClassName, true)
287
+ })
288
+ )
289
+
290
+ const axisSelection$ = containerSelection$.pipe(
291
+ takeUntil(destroy$),
292
+ map((containerSelection, i) => {
293
+ return containerSelection
294
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${yAxisGClassName}`)
295
+ .data([yAxisGClassName])
296
+ .join('g')
297
+ .classed(yAxisGClassName, true)
298
+ })
299
+ )
300
+
301
+ combineLatest({
302
+ containerSelection: containerSelection$,
303
+ gridContainerPosition: gridContainerPosition$
304
+ }).pipe(
305
+ takeUntil(destroy$),
306
+ switchMap(async d => d)
307
+ ).subscribe(data => {
308
+ data.containerSelection
309
+ .attr('transform', (d, i) => {
310
+ const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
311
+ const translate = gridContainerPosition.translate
312
+ const scale = gridContainerPosition.scale
313
+ return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
314
+ })
315
+ // .attr('opacity', 0)
316
+ // .transition()
317
+ // .attr('opacity', 1)
318
+ })
319
+
320
+ combineLatest({
321
+ axisSelection: axisSelection$,
322
+ gridAxesTransform: gridAxesTransform$,
323
+ }).pipe(
324
+ takeUntil(destroy$),
325
+ switchMap(async d => d)
326
+ ).subscribe(data => {
327
+ data.axisSelection
328
+ .style('transform', data.gridAxesTransform.value)
329
+ // .attr('opacity', 0)
330
+ // .transition()
331
+ // .attr('opacity', 1)
332
+
333
+ })
334
+
335
+ // const gridAxesSize$ = gridAxisSizeObservable({
336
+ // fullDataFormatter$,
337
+ // layout$
338
+ // })
339
+
340
+ // const textReverseTransform$: Observable<string> = new Observable(subscriber => {
341
+ // combineLatest({
342
+ // fullParams: fullParams$,
343
+ // layout: layout$
344
+ // }).pipe(
345
+ // takeUntil(destroy$),
346
+ // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
347
+ // switchMap(async (d) => d),
348
+ // ).subscribe(data => {
349
+
350
+ // const transformData = Object.assign({}, data.layout.content.axesTransformData)
351
+
352
+ // const value = getAxesTransformValue({
353
+ // translate: [0, 0],
354
+ // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
355
+ // rotate: transformData.rotate * -1 + data.fullParams.tickTextRotate,
356
+ // rotateX: transformData.rotateX * -1,
357
+ // rotateY: transformData.rotateY * -1
358
+ // })
359
+
360
+ // subscriber.next(value)
361
+ // })
362
+ // })
363
+ // const reverseTransform$: Observable<TransformData> = gridAxesTransform$.pipe(
364
+ // takeUntil(destroy$),
365
+ // map(d => {
366
+ // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
367
+ // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
368
+ // const rotate = d.rotate * -1
369
+ // const rotateX = d.rotateX * -1
370
+ // const rotateY = d.rotateY * -1
371
+ // return {
372
+ // translate,
373
+ // scale,
374
+ // rotate,
375
+ // rotateX,
376
+ // rotateY,
377
+ // value: ''
378
+ // }
379
+ // }),
380
+ // )
381
+ const textReverseTransform$ = combineLatest({
382
+ gridAxesReverseTransform: gridAxesReverseTransform$,
383
+ gridContainerPosition: gridContainerPosition$
384
+ }).pipe(
385
+ takeUntil(destroy$),
386
+ switchMap(async (d) => d),
387
+ map(data => {
388
+ // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
389
+ const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
390
+ const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
391
+ const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
392
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
393
+ return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
394
+ }),
395
+ distinctUntilChanged()
396
+ )
397
+
398
+ const textReverseTransformWithRotate$ = combineLatest({
399
+ textReverseTransform: textReverseTransform$,
400
+ fullParams: fullParams$,
401
+ }).pipe(
402
+ takeUntil(destroy$),
403
+ switchMap(async (d) => d),
404
+ map(data => {
405
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
406
+ return `${data.textReverseTransform} rotate(${data.fullParams.tickTextRotate}deg)`
407
+ })
408
+ )
409
+
410
+ // const minAndMax$: Observable<[number, number]> = new Observable(subscriber => {
411
+ // combineLatest({
412
+ // fullDataFormatter: fullDataFormatter$,
413
+ // computedData: computedData$
414
+ // }).pipe(
415
+ // takeUntil(destroy$),
416
+ // switchMap(async (d) => d),
417
+ // ).subscribe(data => {
418
+ // const groupMin = 0
419
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
420
+ // // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
421
+ // // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
422
+ // // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
423
+ // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
424
+ // const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
425
+ // ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
426
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
427
+
428
+ // const filteredData = data.computedData.map((d, i) => {
429
+ // return d.filter((_d, _i) => {
430
+ // return _i >= groupScaleDomainMin && _i <= groupScaleDomainMax
431
+ // })
432
+ // })
433
+
434
+ // const filteredMinAndMax = getMinAndMaxValue(filteredData.flat())
435
+ // if (filteredMinAndMax[0] === filteredMinAndMax[1]) {
436
+ // filteredMinAndMax[0] = filteredMinAndMax[1] - 1 // 避免最大及最小值相同造成無法計算scale
437
+ // }
438
+ // subscriber.next(filteredMinAndMax)
439
+ // })
440
+ // })
441
+
442
+ const valueScale$: Observable<d3.ScaleLinear<number, number>> = new Observable(subscriber => {
443
+ combineLatest({
444
+ fullDataFormatter: fullDataFormatter$,
445
+ gridAxesSize: gridAxesSize$,
446
+ // minAndMax: minAndMax$
447
+ filteredMinMaxValue: filteredMinMaxValue$
448
+ }).pipe(
449
+ takeUntil(destroy$),
450
+ switchMap(async (d) => d),
451
+ ).subscribe(data => {
452
+ let maxValue = data.filteredMinMaxValue[1]
453
+ let minValue = data.filteredMinMaxValue[0]
454
+ if (maxValue === minValue && maxValue === 0) {
455
+ // 避免最大及最小值同等於 0 造成無法計算scale
456
+ maxValue = 1
457
+ }
458
+
459
+ const valueScale: d3.ScaleLinear<number, number> = createValueToAxisScale({
460
+ maxValue,
461
+ minValue,
462
+ axisWidth: data.gridAxesSize.height,
463
+ scaleDomain: data.fullDataFormatter.grid.valueAxis.scaleDomain,
464
+ scaleRange: data.fullDataFormatter.grid.valueAxis.scaleRange
465
+ })
466
+
467
+ subscriber.next(valueScale)
468
+ })
469
+ })
470
+
471
+ const tickTextAlign$: Observable<TextAlign> = combineLatest({
472
+ fullDataFormatter: fullDataFormatter$,
473
+ fullParams: fullParams$
474
+ }).pipe(
475
+ takeUntil(destroy$),
476
+ switchMap(async (d) => d),
477
+ map(data => {
478
+ let textAnchor: 'start' | 'middle' | 'end' = 'start'
479
+ let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
480
+
481
+ if (data.fullDataFormatter.grid.valueAxis.position === 'left') {
482
+ textAnchor = 'end'
483
+ dominantBaseline = 'middle'
484
+ } else if (data.fullDataFormatter.grid.valueAxis.position === 'right') {
485
+ textAnchor = 'start'
486
+ dominantBaseline = 'middle'
487
+ } else if (data.fullDataFormatter.grid.valueAxis.position === 'bottom') {
488
+ textAnchor = data.fullParams.tickTextRotate
489
+ ? 'end'
490
+ : 'middle'
491
+ dominantBaseline = 'hanging'
492
+ } else if (data.fullDataFormatter.grid.valueAxis.position === 'top') {
493
+ textAnchor = data.fullParams.tickTextRotate
494
+ ? 'start'
495
+ : 'middle'
496
+ dominantBaseline = 'auto'
497
+ }
498
+ return {
499
+ textAnchor,
500
+ dominantBaseline
501
+ }
502
+ })
503
+ )
504
+
505
+ const axisLabelAlign$: Observable<TextAlign> = fullDataFormatter$.pipe(
506
+ takeUntil(destroy$),
507
+ map(d => {
508
+ let textAnchor: 'start' | 'middle' | 'end' = 'start'
509
+ let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
510
+
511
+ if (d.grid.groupAxis.position === 'bottom') {
512
+ dominantBaseline = 'auto'
513
+ } else if (d.grid.groupAxis.position === 'top') {
514
+ dominantBaseline = 'hanging'
515
+ } else if (d.grid.groupAxis.position === 'left') {
516
+ textAnchor = 'start'
517
+ } else if (d.grid.groupAxis.position === 'right') {
518
+ textAnchor = 'end'
519
+ }
520
+ if (d.grid.valueAxis.position === 'left') {
521
+ textAnchor = 'end'
522
+ } else if (d.grid.valueAxis.position === 'right') {
523
+ textAnchor = 'start'
524
+ } else if (d.grid.valueAxis.position === 'bottom') {
525
+ dominantBaseline = 'hanging'
526
+ } else if (d.grid.valueAxis.position === 'top') {
527
+ dominantBaseline = 'auto'
528
+ }
529
+ return {
530
+ textAnchor,
531
+ dominantBaseline
532
+ }
533
+ })
534
+ )
535
+
536
+
537
+ combineLatest({
538
+ axisSelection: axisSelection$,
539
+ fullParams: fullParams$,
540
+ tickTextAlign: tickTextAlign$,
541
+ axisLabelAlign: axisLabelAlign$,
542
+ computedData: computedData$,
543
+ gridAxesSize: gridAxesSize$,
544
+ fullDataFormatter: fullDataFormatter$,
545
+ fullChartParams: fullChartParams$,
546
+ valueScale: valueScale$,
547
+ textReverseTransform: textReverseTransform$,
548
+ textReverseTransformWithRotate: textReverseTransformWithRotate$,
549
+ filteredMinMaxValue: filteredMinMaxValue$
550
+ }).pipe(
551
+ takeUntil(destroy$),
552
+ switchMap(async (d) => d),
553
+ ).subscribe(data => {
554
+
555
+ renderAxis({
556
+ selection: data.axisSelection,
557
+ yAxisClassName,
558
+ fullParams: data.fullParams,
559
+ tickTextAlign: data.tickTextAlign,
560
+ gridAxesSize: data.gridAxesSize,
561
+ fullDataFormatter: data.fullDataFormatter,
562
+ fullChartParams: data.fullChartParams,
563
+ valueScale: data.valueScale,
564
+ textReverseTransformWithRotate: data.textReverseTransformWithRotate,
565
+ filteredMinMaxValue: data.filteredMinMaxValue
566
+ })
567
+
568
+ renderAxisLabel({
569
+ selection: data.axisSelection,
570
+ textClassName,
571
+ fullParams: data.fullParams,
572
+ axisLabelAlign: data.axisLabelAlign,
573
+ gridAxesSize: data.gridAxesSize,
574
+ fullDataFormatter: data.fullDataFormatter,
575
+ fullChartParams: data.fullChartParams,
576
+ textReverseTransform: data.textReverseTransform,
577
+ })
578
+ })
579
+
580
+ return () => {
581
+ destroy$.next(undefined)
582
+ }
583
+ }