@orbcharts/plugins-basic 3.0.0-alpha.75 → 3.0.0-alpha.76

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 (81) hide show
  1. package/LICENSE +200 -200
  2. package/dist/orbcharts-plugins-basic.es.js +3461 -3468
  3. package/dist/orbcharts-plugins-basic.umd.js +17 -17
  4. package/lib/core-types.ts +7 -7
  5. package/lib/core.ts +6 -6
  6. package/package.json +43 -43
  7. package/src/base/BaseBarStack.ts +779 -779
  8. package/src/base/BaseBars.ts +764 -764
  9. package/src/base/BaseBarsTriangle.ts +672 -672
  10. package/src/base/BaseDots.ts +513 -513
  11. package/src/base/BaseGroupAxis.ts +678 -678
  12. package/src/base/BaseLegend.ts +642 -642
  13. package/src/base/BaseLineAreas.ts +627 -627
  14. package/src/base/BaseLines.ts +704 -704
  15. package/src/base/BaseValueAxis.ts +578 -578
  16. package/src/base/types.ts +2 -2
  17. package/src/const.ts +30 -30
  18. package/src/grid/defaults.ts +128 -128
  19. package/src/grid/gridObservables.ts +545 -545
  20. package/src/grid/index.ts +15 -15
  21. package/src/grid/plugins/BarStack.ts +64 -64
  22. package/src/grid/plugins/Bars.ts +69 -69
  23. package/src/grid/plugins/BarsPN.ts +66 -66
  24. package/src/grid/plugins/BarsTriangle.ts +73 -73
  25. package/src/grid/plugins/Dots.ts +68 -68
  26. package/src/grid/plugins/GridLegend.ts +96 -96
  27. package/src/grid/plugins/GroupAux.ts +1098 -1098
  28. package/src/grid/plugins/GroupAxis.ts +97 -97
  29. package/src/grid/plugins/LineAreas.ts +65 -65
  30. package/src/grid/plugins/Lines.ts +59 -59
  31. package/src/grid/plugins/ScalingArea.ts +218 -218
  32. package/src/grid/plugins/ValueAxis.ts +93 -93
  33. package/src/grid/plugins/ValueStackAxis.ts +95 -95
  34. package/src/grid/types.ts +123 -123
  35. package/src/index.ts +9 -9
  36. package/src/multiGrid/defaults.ts +158 -158
  37. package/src/multiGrid/index.ts +13 -13
  38. package/src/multiGrid/multiGridObservables.ts +49 -49
  39. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  40. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  41. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  42. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  43. package/src/multiGrid/plugins/MultiGridLegend.ts +148 -148
  44. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  45. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  46. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  47. package/src/multiGrid/plugins/MultiValueAxis.ts +133 -133
  48. package/src/multiGrid/plugins/MultiValueStackAxis.ts +133 -133
  49. package/src/multiGrid/plugins/OverlappingValueAxes.ts +299 -299
  50. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +298 -298
  51. package/src/multiGrid/types.ts +72 -72
  52. package/src/noneData/defaults.ts +102 -102
  53. package/src/noneData/index.ts +3 -3
  54. package/src/noneData/plugins/Container.ts +27 -27
  55. package/src/noneData/plugins/Tooltip.ts +373 -373
  56. package/src/noneData/types.ts +26 -26
  57. package/src/series/defaults.ts +149 -149
  58. package/src/series/index.ts +9 -9
  59. package/src/series/plugins/Bubbles.ts +603 -603
  60. package/src/series/plugins/Pie.ts +623 -623
  61. package/src/series/plugins/PieEventTexts.ts +283 -283
  62. package/src/series/plugins/PieLabels.ts +640 -640
  63. package/src/series/plugins/Rose.ts +516 -516
  64. package/src/series/plugins/RoseLabels.ts +600 -600
  65. package/src/series/plugins/SeriesLegend.ts +96 -96
  66. package/src/series/seriesObservables.ts +145 -145
  67. package/src/series/seriesUtils.ts +51 -51
  68. package/src/series/types.ts +87 -87
  69. package/src/tree/defaults.ts +23 -23
  70. package/src/tree/index.ts +3 -3
  71. package/src/tree/plugins/TreeLegend.ts +96 -96
  72. package/src/tree/plugins/TreeMap.ts +333 -333
  73. package/src/tree/types.ts +23 -23
  74. package/src/utils/commonUtils.ts +21 -21
  75. package/src/utils/d3Graphics.ts +174 -174
  76. package/src/utils/d3Utils.ts +73 -73
  77. package/src/utils/observables.ts +14 -14
  78. package/src/utils/orbchartsUtils.ts +100 -100
  79. package/tsconfig.base.json +13 -13
  80. package/tsconfig.json +2 -2
  81. package/vite.config.js +22 -22
@@ -1,679 +1,679 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- switchMap,
5
- distinctUntilChanged,
6
- of,
7
- first,
8
- map,
9
- takeUntil,
10
- shareReplay,
11
- Observable,
12
- Subject } from 'rxjs'
13
- import type {
14
- ColorType,
15
- ComputedDataGrid,
16
- GridContainerPosition,
17
- ComputedDatumGrid,
18
- DataFormatterGrid,
19
- ChartParams,
20
- TransformData
21
- } from '../../lib/core-types'
22
- import type { BasePluginFn } from './types'
23
- import { parseTickFormatValue } from '../utils/d3Utils'
24
- import { getColor, getClassName } from '../utils/orbchartsUtils'
25
- import { renderTspansOnAxis } from '../utils/d3Graphics'
26
-
27
- export interface BaseGroupAxisParams {
28
- // xLabel: string
29
- // labelAnchor: 'start' | 'end'
30
- labelOffset: [number, number]
31
- labelColorType: ColorType
32
- axisLineVisible: boolean
33
- axisLineColorType: ColorType
34
- ticks: number | null | 'all'
35
- tickFormat: string | ((text: any) => string)
36
- tickLineVisible: boolean
37
- tickPadding: number
38
- tickFullLine: boolean
39
- tickFullLineDasharray: string
40
- tickColorType: ColorType
41
- // axisLineColor: string
42
- // axisLabelColor: string
43
- tickTextRotate: number
44
- tickTextColorType: ColorType
45
- }
46
-
47
- interface BaseGroupAxisContext {
48
- selection: d3.Selection<any, unknown, any, unknown>
49
- computedData$: Observable<ComputedDataGrid>
50
- fullParams$: Observable<BaseGroupAxisParams>
51
- fullDataFormatter$: Observable<DataFormatterGrid>
52
- fullChartParams$: Observable<ChartParams>
53
- gridAxesTransform$: Observable<TransformData>
54
- gridAxesReverseTransform$: Observable<TransformData>
55
- gridAxesSize$: Observable<{
56
- width: number;
57
- height: number;
58
- }>
59
- gridContainerPosition$: Observable<GridContainerPosition[]>
60
- isSeriesSeprate$: Observable<boolean>
61
- textSizePx$: Observable<number>
62
- }
63
-
64
- interface TextAlign {
65
- textAnchor: "start" | "middle" | "end"
66
- dominantBaseline: "middle" | "auto" | "hanging"
67
- }
68
-
69
- interface GroupLabelData {
70
- text: string
71
- textArr: string[]
72
- }
73
-
74
- // const pluginName = 'GroupAxis'
75
- // const containerClassName = getClassName(pluginName, 'container')
76
- // const xAxisGClassName = getClassName(pluginName, 'xAxisG')
77
- // const xAxisClassName = getClassName(pluginName, 'xAxis')
78
- // const groupingLabelClassName = getClassName(pluginName, 'groupingLabel')
79
- const defaultTickSize = 6
80
-
81
- function createGroupLabelData (groupLabels: string[], tickFormat: string | ((text: any) => string)): GroupLabelData[] {
82
- return groupLabels.map((_text, i) => {
83
- const text = parseTickFormatValue(_text, tickFormat)
84
- const textArr = text.split('\n')
85
-
86
- return {
87
- text,
88
- textArr
89
- }
90
- })
91
- }
92
-
93
- function renderAxisLabel ({ selection, groupingLabelClassName, fullParams, axisLabelAlign, gridAxesSize, fullDataFormatter, chartParams, textReverseTransform }: {
94
- selection: d3.Selection<SVGGElement, any, any, any>,
95
- groupingLabelClassName: string
96
- fullParams: BaseGroupAxisParams
97
- axisLabelAlign: TextAlign
98
- gridAxesSize: { width: number, height: number }
99
- fullDataFormatter: DataFormatterGrid,
100
- chartParams: ChartParams
101
- textReverseTransform: string
102
- }) {
103
-
104
- const offsetX = fullParams.tickPadding + fullParams.labelOffset[0]
105
- const offsetY = fullParams.tickPadding + fullParams.labelOffset[1]
106
- let labelX = 0
107
- let labelY = 0
108
- if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
109
- labelY = offsetY
110
- if (fullDataFormatter.grid.valueAxis.position === 'left') {
111
- labelX = offsetX
112
- } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
113
- labelX = - offsetX
114
- }
115
- } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
116
- labelY = - offsetY
117
- if (fullDataFormatter.grid.valueAxis.position === 'left') {
118
- labelX = offsetX
119
- } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
120
- labelX = - offsetX
121
- }
122
- } else if (fullDataFormatter.grid.groupAxis.position === 'left') {
123
- labelX = - offsetX
124
- if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
125
- labelY = - offsetY
126
- } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
127
- labelY = offsetY
128
- }
129
- } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
130
- labelX = offsetX
131
- if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
132
- labelY = - offsetY
133
- } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
134
- labelY = offsetY
135
- }
136
- }
137
-
138
- const axisLabelSelection = selection
139
- .selectAll<SVGGElement, BaseGroupAxisParams>(`g.${groupingLabelClassName}`)
140
- .data([fullParams])
141
- .join('g')
142
- .classed(groupingLabelClassName, true)
143
- .each((d, i, g) => {
144
- const text = d3.select(g[i])
145
- .selectAll<SVGTextElement, BaseGroupAxisParams>('text')
146
- .data([d])
147
- .join(
148
- enter => {
149
- return enter
150
- .append('text')
151
- .style('font-weight', 'bold')
152
- },
153
- update => update,
154
- exit => exit.remove()
155
- )
156
- .attr('text-anchor', axisLabelAlign.textAnchor)
157
- .attr('dominant-baseline', axisLabelAlign.dominantBaseline)
158
- .attr('font-size', chartParams.styles.textSize)
159
- .style('fill', getColor(fullParams.labelColorType, chartParams))
160
- .style('transform', textReverseTransform)
161
- // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
162
- .attr('x', labelX)
163
- .attr('y', labelY)
164
- .text(d => fullDataFormatter.grid.groupAxis.label)
165
- })
166
- .attr('transform', d => `translate(${gridAxesSize.width}, 0)`)
167
- // .attr('transform', d => `translate(${gridAxesSize.width + d.tickPadding + fullParams.labelOffset[0]}, ${- d.tickPadding - fullParams.labelOffset[1]})`)
168
-
169
- }
170
-
171
- function renderAxis ({ selection, xAxisClassName, fullParams, tickTextAlign, gridAxesSize, fullDataFormatter, chartParams, groupScale, groupScaleDomain, groupLabelData, textReverseTransformWithRotate, textSizePx }: {
172
- selection: d3.Selection<SVGGElement, any, any, any>,
173
- xAxisClassName: string
174
- fullParams: BaseGroupAxisParams
175
- tickTextAlign: TextAlign
176
- gridAxesSize: { width: number, height: number }
177
- fullDataFormatter: DataFormatterGrid,
178
- chartParams: ChartParams
179
- groupScale: d3.ScaleLinear<number, number>
180
- groupScaleDomain: number[]
181
- // groupLabels: string[]
182
- groupLabelData: GroupLabelData[]
183
- textReverseTransformWithRotate: string
184
- textSizePx: number
185
- }) {
186
-
187
- const xAxisSelection = selection
188
- .selectAll<SVGGElement, BaseGroupAxisParams>(`g.${xAxisClassName}`)
189
- .data([fullParams])
190
- .join('g')
191
- .classed(xAxisClassName, true)
192
-
193
- // 計算所有範圍內groupLabels數量(顯示所有刻度)
194
- const allTicksAmount = Math.floor(groupScaleDomain[1]) - Math.ceil(groupScaleDomain[0]) + 1
195
-
196
- // 刻度文字偏移
197
- let tickPadding = 0
198
- let textX = 0
199
- if (fullDataFormatter.grid.groupAxis.position === 'left') {
200
- tickPadding = 0
201
- textX = - fullParams.tickPadding
202
- } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
203
- tickPadding = 0
204
- textX = fullParams.tickPadding
205
- } else if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
206
- tickPadding = fullParams.tickPadding
207
- textX = 0
208
- } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
209
- tickPadding = - fullParams.tickPadding
210
- textX = - 0
211
- }
212
-
213
- // 設定X軸刻度
214
- const xAxis = d3.axisBottom(groupScale)
215
- .scale(groupScale)
216
- .ticks(fullParams.ticks === 'all'
217
- ? allTicksAmount
218
- : fullParams.ticks > allTicksAmount
219
- ? allTicksAmount // 不顯示超過groupLabels數量的刻度
220
- : fullParams.ticks)
221
- .tickSize(fullParams.tickFullLine == true
222
- ? gridAxesSize.height
223
- : - defaultTickSize)
224
- .tickSizeOuter(0)
225
- .tickFormat((groupIndex: number) => {
226
- // 用index對應到groupLabel
227
- // const groupLabel = groupLabels[groupIndex] ?? '' // 非整數index不顯示
228
- // return parseTickFormatValue(groupLabel, fullParams.tickFormat)
229
- return groupLabelData[groupIndex]?.text ?? ''
230
- })
231
- .tickPadding(tickPadding)
232
-
233
- const xAxisEl = xAxisSelection
234
- .transition()
235
- .duration(100)
236
- .call(xAxis)
237
- .on('end', (self, t) => {
238
- // 先等transition結束再處理文字,否則會被原本的文字覆蓋
239
- xAxisSelection
240
- .selectAll('.tick text')
241
- .each((groupIndex: number, i, n) => {
242
- // const groupLabel = groupLabels[groupIndex] ?? '' // 非整數index不顯示
243
- // const groupLabelText = parseTickFormatValue(groupLabel, fullParams.tickFormat)
244
- const textArr = groupLabelData[groupIndex]?.textArr ?? []
245
-
246
- // 將原本單行文字改為多行文字
247
- renderTspansOnAxis(d3.select(n[i]), {
248
- textArr,
249
- textSizePx,
250
- groupAxisPosition: fullDataFormatter.grid.groupAxis.position
251
- })
252
- })
253
- })
254
-
255
- xAxisEl.selectAll('line')
256
- .style('fill', 'none')
257
- .style('stroke', fullParams.tickLineVisible == true ? getColor(fullParams.tickColorType, chartParams) : 'none')
258
- .style('stroke-dasharray', fullParams.tickFullLineDasharray)
259
- .attr('pointer-events', 'none')
260
-
261
- xAxisEl.selectAll('path')
262
- .style('fill', 'none')
263
- .style('stroke', fullParams.axisLineVisible == true ? getColor(fullParams.axisLineColorType, chartParams) : 'none')
264
- .style('shape-rendering', 'crispEdges')
265
-
266
- const xText = xAxisSelection.selectAll<SVGTextElement, BaseGroupAxisParams>('text')
267
- // .style('font-family', 'sans-serif')
268
- .attr('font-size', chartParams.styles.textSize)
269
- // .style('font-weight', 'bold')
270
- .attr('fill', getColor(fullParams.tickTextColorType, chartParams))
271
- .attr('text-anchor', tickTextAlign.textAnchor)
272
- .attr('dominant-baseline', tickTextAlign.dominantBaseline)
273
- .attr('x', textX)
274
- .style('transform', textReverseTransformWithRotate)
275
-
276
- // 抵消掉預設的偏移
277
- // if (fullDataFormatter.grid.groupAxis.position === 'left' || fullDataFormatter.grid.groupAxis.position === 'right') {
278
- xText.attr('dy', 0)
279
- // }
280
-
281
- return xAxisSelection
282
- }
283
-
284
-
285
- export const createBaseGroupAxis: BasePluginFn<BaseGroupAxisContext> = ((pluginName: string, {
286
- selection,
287
- computedData$,
288
- fullParams$,
289
- fullDataFormatter$,
290
- fullChartParams$,
291
- gridAxesTransform$,
292
- gridAxesReverseTransform$,
293
- gridAxesSize$,
294
- gridContainerPosition$,
295
- isSeriesSeprate$,
296
- textSizePx$,
297
- }) => {
298
-
299
- const destroy$ = new Subject()
300
-
301
- const containerClassName = getClassName(pluginName, 'container')
302
- const xAxisGClassName = getClassName(pluginName, 'xAxisG')
303
- const xAxisClassName = getClassName(pluginName, 'xAxis')
304
- const groupingLabelClassName = getClassName(pluginName, 'groupingLabel')
305
-
306
- const containerSelection$ = combineLatest({
307
- computedData: computedData$.pipe(
308
- distinctUntilChanged((a, b) => {
309
- // 只有當series的數量改變時,才重新計算
310
- return a.length === b.length
311
- }),
312
- ),
313
- isSeriesSeprate: isSeriesSeprate$
314
- }).pipe(
315
- takeUntil(destroy$),
316
- switchMap(async (d) => d),
317
- map(data => {
318
- return data.isSeriesSeprate
319
- // series分開的時候顯示各別axis
320
- ? data.computedData
321
- // series合併的時候只顯示第一個axis
322
- : [data.computedData[0]]
323
- }),
324
- map((computedData, i) => {
325
- return selection
326
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
327
- .data(computedData, d => d[0] ? d[0].seriesIndex : i)
328
- .join('g')
329
- .classed(containerClassName, true)
330
- })
331
- )
332
-
333
- const axisSelection$ = containerSelection$.pipe(
334
- takeUntil(destroy$),
335
- map((containerSelection, i) => {
336
- return containerSelection
337
- .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${xAxisGClassName}`)
338
- .data([xAxisGClassName])
339
- .join('g')
340
- .classed(xAxisGClassName, true)
341
- })
342
- )
343
-
344
- combineLatest({
345
- containerSelection: containerSelection$,
346
- gridContainerPosition: gridContainerPosition$
347
- }).pipe(
348
- takeUntil(destroy$),
349
- switchMap(async d => d)
350
- ).subscribe(data => {
351
- data.containerSelection
352
- .attr('transform', (d, i) => {
353
- const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
354
- const translate = gridContainerPosition.translate
355
- const scale = gridContainerPosition.scale
356
- return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
357
- })
358
- // .attr('opacity', 0)
359
- // .transition()
360
- // .attr('opacity', 1)
361
- })
362
-
363
- combineLatest({
364
- axisSelection: axisSelection$,
365
- gridAxesTransform: gridAxesTransform$,
366
- }).pipe(
367
- takeUntil(destroy$),
368
- switchMap(async d => d)
369
- ).subscribe(data => {
370
- data.axisSelection
371
- .style('transform', data.gridAxesTransform.value)
372
- // .attr('opacity', 0)
373
- // .transition()
374
- // .attr('opacity', 1)
375
-
376
- })
377
-
378
-
379
- // const gridAxesSize$ = gridAxisSizeObservable({
380
- // fullDataFormatter$,
381
- // layout$
382
- // })
383
-
384
-
385
- // const tickTextFormatter$ = fullDataFormatter$
386
- // .pipe(
387
- // map(d => {
388
- // return d.grid.seriesDirection === 'row' ? d.grid.columnLabelFormat : d.grid.rowLabelFormat
389
- // })
390
- // )
391
-
392
- // const textReverseTransform$: Observable<string> = new Observable(subscriber => {
393
- // combineLatest({
394
- // params: fullParams$,
395
- // gridAxesTransform: gridAxesTransform$
396
- // }).pipe(
397
- // takeUntil(destroy$),
398
- // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
399
- // switchMap(async (d) => d),
400
- // ).subscribe(data => {
401
-
402
- // const transformData = Object.assign({}, data.gridAxesTransform)
403
-
404
- // const value = getAxesTransformValue({
405
- // translate: [0, 0],
406
- // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
407
- // rotate: transformData.rotate * -1 + data.params.tickTextRotate,
408
- // rotateX: transformData.rotateX * -1,
409
- // rotateY: transformData.rotateY * -1
410
- // })
411
-
412
- // subscriber.next(value)
413
- // })
414
- // })
415
- // const reverseTransform$: Observable<TransformData> = gridAxesTransform$.pipe(
416
- // takeUntil(destroy$),
417
- // map(d => {
418
- // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
419
- // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
420
- // const rotate = d.rotate * -1
421
- // const rotateX = d.rotateX * -1
422
- // const rotateY = d.rotateY * -1
423
- // return {
424
- // translate,
425
- // scale,
426
- // rotate,
427
- // rotateX,
428
- // rotateY,
429
- // value: ''
430
- // }
431
- // }),
432
- // )
433
- const textReverseTransform$ = combineLatest({
434
- gridAxesReverseTransform: gridAxesReverseTransform$,
435
- gridContainerPosition: gridContainerPosition$
436
- }).pipe(
437
- takeUntil(destroy$),
438
- switchMap(async (d) => d),
439
- map(data => {
440
- // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
441
- const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
442
- const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
443
- const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
444
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
445
- return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
446
- }),
447
- distinctUntilChanged()
448
- )
449
-
450
- const textReverseTransformWithRotate$ = combineLatest({
451
- textReverseTransform: textReverseTransform$,
452
- fullParams: fullParams$,
453
- }).pipe(
454
- takeUntil(destroy$),
455
- switchMap(async (d) => d),
456
- map(data => {
457
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
458
- return `${data.textReverseTransform} rotate(${data.fullParams.tickTextRotate}deg)`
459
- })
460
- )
461
-
462
- // 使用pointScale計算非連續性比例尺
463
- // const groupScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
464
- // combineLatest({
465
- // fullDataFormatter: fullDataFormatter$,
466
- // gridAxesSize: gridAxesSize$,
467
- // computedData: computedData$
468
- // }).pipe(
469
- // takeUntil(destroy$),
470
- // switchMap(async (d) => d),
471
- // ).subscribe(data => {
472
- // const groupMin = 0
473
- // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
474
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
475
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
476
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
477
- // const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'auto'
478
- // ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
479
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
480
-
481
- // const groupingLength = data.computedData[0]
482
- // ? data.computedData[0].length
483
- // : 0
484
-
485
- // let _labels = (data.computedData[0] ?? []).map(d => d.groupLabel)
486
-
487
- // const axisLabels = new Array(groupingLength).fill(0)
488
- // .map((d, i) => {
489
- // return _labels[i] != null
490
- // ? _labels[i]
491
- // : String(i) // 沒有label則用序列號填充
492
- // })
493
- // .filter((d, i) => {
494
- // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
495
- // })
496
-
497
-
498
- // const padding = data.fullDataFormatter.grid.groupAxis.scalePadding
499
-
500
- // const groupScale = createAxisPointScale({
501
- // axisLabels,
502
- // axisWidth: data.gridAxesSize.width,
503
- // padding
504
- // })
505
-
506
- // subscriber.next(groupScale)
507
- // })
508
- // })
509
-
510
- const groupScaleDomain$ = combineLatest({
511
- fullDataFormatter: fullDataFormatter$,
512
- gridAxesSize: gridAxesSize$,
513
- computedData: computedData$
514
- }).pipe(
515
- takeUntil(destroy$),
516
- switchMap(async (d) => d),
517
- map(data => {
518
- const groupMin = 0
519
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
520
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
521
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
522
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
523
- const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
524
- const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
525
- ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
526
- : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
527
-
528
- return [groupScaleDomainMin, groupScaleDomainMax]
529
- }),
530
- shareReplay(1)
531
- )
532
-
533
- const groupScale$ = combineLatest({
534
- groupScaleDomain: groupScaleDomain$,
535
- gridAxesSize: gridAxesSize$
536
- }).pipe(
537
- takeUntil(destroy$),
538
- switchMap(async (d) => d),
539
- map(data => {
540
- const groupScale: d3.ScaleLinear<number, number> = d3.scaleLinear()
541
- .domain(data.groupScaleDomain)
542
- .range([0, data.gridAxesSize.width])
543
- return groupScale
544
- })
545
- )
546
-
547
- const groupLabels$ = computedData$.pipe(
548
- map(computedData => (computedData[0] ?? []).map(d => d.groupLabel))
549
- )
550
-
551
- const tickTextAlign$: Observable<TextAlign> = combineLatest({
552
- fullDataFormatter: fullDataFormatter$,
553
- fullParams: fullParams$
554
- }).pipe(
555
- takeUntil(destroy$),
556
- switchMap(async (d) => d),
557
- map(data => {
558
- let textAnchor: 'start' | 'middle' | 'end' = 'middle'
559
- let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
560
-
561
- if (data.fullDataFormatter.grid.groupAxis.position === 'bottom') {
562
- textAnchor = data.fullParams.tickTextRotate
563
- ? 'end'
564
- : 'middle'
565
- dominantBaseline = 'hanging'
566
- } else if (data.fullDataFormatter.grid.groupAxis.position === 'top') {
567
- textAnchor = data.fullParams.tickTextRotate
568
- ? 'start'
569
- : 'middle'
570
- dominantBaseline = 'auto'
571
- } else if (data.fullDataFormatter.grid.groupAxis.position === 'left') {
572
- textAnchor = 'end'
573
- dominantBaseline = 'middle'
574
- } else if (data.fullDataFormatter.grid.groupAxis.position === 'right') {
575
- textAnchor = 'start'
576
- dominantBaseline = 'middle'
577
- }
578
- return {
579
- textAnchor,
580
- dominantBaseline
581
- }
582
- })
583
- )
584
-
585
- const axisLabelAlign$: Observable<TextAlign> = fullDataFormatter$.pipe(
586
- takeUntil(destroy$),
587
- map(d => {
588
- let textAnchor: 'start' | 'middle' | 'end' = 'start'
589
- let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
590
-
591
- if (d.grid.groupAxis.position === 'bottom') {
592
- dominantBaseline = 'hanging'
593
- } else if (d.grid.groupAxis.position === 'top') {
594
- dominantBaseline = 'auto'
595
- } else if (d.grid.groupAxis.position === 'left') {
596
- textAnchor = 'end'
597
- } else if (d.grid.groupAxis.position === 'right') {
598
- textAnchor = 'start'
599
- }
600
- if (d.grid.valueAxis.position === 'left') {
601
- textAnchor = 'start'
602
- } else if (d.grid.valueAxis.position === 'right') {
603
- textAnchor = 'end'
604
- } else if (d.grid.valueAxis.position === 'bottom') {
605
- dominantBaseline = 'auto'
606
- } else if (d.grid.valueAxis.position === 'top') {
607
- dominantBaseline = 'hanging'
608
- }
609
- return {
610
- textAnchor,
611
- dominantBaseline
612
- }
613
- })
614
- )
615
-
616
- const groupLabelData$ = combineLatest({
617
- groupLabels: groupLabels$,
618
- fullParams: fullParams$
619
- }).pipe(
620
- takeUntil(destroy$),
621
- switchMap(async (d) => d),
622
- map(data => {
623
- return createGroupLabelData(data.groupLabels, data.fullParams.tickFormat)
624
- })
625
- )
626
-
627
- combineLatest({
628
- axisSelection: axisSelection$,
629
- fullParams: fullParams$,
630
- tickTextAlign: tickTextAlign$,
631
- axisLabelAlign: axisLabelAlign$,
632
- gridAxesSize: gridAxesSize$,
633
- fullDataFormatter: fullDataFormatter$,
634
- chartParams: fullChartParams$,
635
- groupScale: groupScale$,
636
- groupScaleDomain: groupScaleDomain$,
637
- // groupLabels: groupLabels$,
638
- groupLabelData: groupLabelData$,
639
- textReverseTransform: textReverseTransform$,
640
- textReverseTransformWithRotate: textReverseTransformWithRotate$,
641
- textSizePx: textSizePx$
642
- // tickTextFormatter: tickTextFormatter$
643
- }).pipe(
644
- takeUntil(destroy$),
645
- switchMap(async (d) => d),
646
- ).subscribe(data => {
647
-
648
- renderAxis({
649
- selection: data.axisSelection,
650
- xAxisClassName,
651
- fullParams: data.fullParams,
652
- tickTextAlign: data.tickTextAlign,
653
- gridAxesSize: data.gridAxesSize,
654
- fullDataFormatter: data.fullDataFormatter,
655
- chartParams: data.chartParams,
656
- groupScale: data.groupScale,
657
- groupScaleDomain: data.groupScaleDomain,
658
- // groupLabels: data.groupLabels,
659
- groupLabelData: data.groupLabelData,
660
- textReverseTransformWithRotate: data.textReverseTransformWithRotate,
661
- textSizePx: data.textSizePx
662
- })
663
-
664
- renderAxisLabel({
665
- selection: data.axisSelection,
666
- groupingLabelClassName,
667
- fullParams: data.fullParams,
668
- axisLabelAlign: data.axisLabelAlign,
669
- gridAxesSize: data.gridAxesSize,
670
- fullDataFormatter: data.fullDataFormatter,
671
- chartParams: data.chartParams,
672
- textReverseTransform: data.textReverseTransform,
673
- })
674
- })
675
-
676
- return () => {
677
- destroy$.next(undefined)
678
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ switchMap,
5
+ distinctUntilChanged,
6
+ of,
7
+ first,
8
+ map,
9
+ takeUntil,
10
+ shareReplay,
11
+ Observable,
12
+ Subject } from 'rxjs'
13
+ import type {
14
+ ColorType,
15
+ ComputedDataGrid,
16
+ GridContainerPosition,
17
+ ComputedDatumGrid,
18
+ DataFormatterGrid,
19
+ ChartParams,
20
+ TransformData
21
+ } from '../../lib/core-types'
22
+ import type { BasePluginFn } from './types'
23
+ import { parseTickFormatValue } from '../utils/d3Utils'
24
+ import { getColor, getClassName } from '../utils/orbchartsUtils'
25
+ import { renderTspansOnAxis } from '../utils/d3Graphics'
26
+
27
+ export interface BaseGroupAxisParams {
28
+ // xLabel: string
29
+ // labelAnchor: 'start' | 'end'
30
+ labelOffset: [number, number]
31
+ labelColorType: ColorType
32
+ axisLineVisible: boolean
33
+ axisLineColorType: ColorType
34
+ ticks: number | null | 'all'
35
+ tickFormat: string | ((text: any) => string)
36
+ tickLineVisible: boolean
37
+ tickPadding: number
38
+ tickFullLine: boolean
39
+ tickFullLineDasharray: string
40
+ tickColorType: ColorType
41
+ // axisLineColor: string
42
+ // axisLabelColor: string
43
+ tickTextRotate: number
44
+ tickTextColorType: ColorType
45
+ }
46
+
47
+ interface BaseGroupAxisContext {
48
+ selection: d3.Selection<any, unknown, any, unknown>
49
+ computedData$: Observable<ComputedDataGrid>
50
+ fullParams$: Observable<BaseGroupAxisParams>
51
+ fullDataFormatter$: Observable<DataFormatterGrid>
52
+ fullChartParams$: Observable<ChartParams>
53
+ gridAxesTransform$: Observable<TransformData>
54
+ gridAxesReverseTransform$: Observable<TransformData>
55
+ gridAxesSize$: Observable<{
56
+ width: number;
57
+ height: number;
58
+ }>
59
+ gridContainerPosition$: Observable<GridContainerPosition[]>
60
+ isSeriesSeprate$: Observable<boolean>
61
+ textSizePx$: Observable<number>
62
+ }
63
+
64
+ interface TextAlign {
65
+ textAnchor: "start" | "middle" | "end"
66
+ dominantBaseline: "middle" | "auto" | "hanging"
67
+ }
68
+
69
+ interface GroupLabelData {
70
+ text: string
71
+ textArr: string[]
72
+ }
73
+
74
+ // const pluginName = 'GroupAxis'
75
+ // const containerClassName = getClassName(pluginName, 'container')
76
+ // const xAxisGClassName = getClassName(pluginName, 'xAxisG')
77
+ // const xAxisClassName = getClassName(pluginName, 'xAxis')
78
+ // const groupingLabelClassName = getClassName(pluginName, 'groupingLabel')
79
+ const defaultTickSize = 6
80
+
81
+ function createGroupLabelData (groupLabels: string[], tickFormat: string | ((text: any) => string)): GroupLabelData[] {
82
+ return groupLabels.map((_text, i) => {
83
+ const text = parseTickFormatValue(_text, tickFormat)
84
+ const textArr = typeof text === 'string' ? text.split('\n') : [text]
85
+
86
+ return {
87
+ text,
88
+ textArr
89
+ }
90
+ })
91
+ }
92
+
93
+ function renderAxisLabel ({ selection, groupingLabelClassName, fullParams, axisLabelAlign, gridAxesSize, fullDataFormatter, chartParams, textReverseTransform }: {
94
+ selection: d3.Selection<SVGGElement, any, any, any>,
95
+ groupingLabelClassName: string
96
+ fullParams: BaseGroupAxisParams
97
+ axisLabelAlign: TextAlign
98
+ gridAxesSize: { width: number, height: number }
99
+ fullDataFormatter: DataFormatterGrid,
100
+ chartParams: ChartParams
101
+ textReverseTransform: string
102
+ }) {
103
+
104
+ const offsetX = fullParams.tickPadding + fullParams.labelOffset[0]
105
+ const offsetY = fullParams.tickPadding + fullParams.labelOffset[1]
106
+ let labelX = 0
107
+ let labelY = 0
108
+ if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
109
+ labelY = offsetY
110
+ if (fullDataFormatter.grid.valueAxis.position === 'left') {
111
+ labelX = offsetX
112
+ } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
113
+ labelX = - offsetX
114
+ }
115
+ } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
116
+ labelY = - offsetY
117
+ if (fullDataFormatter.grid.valueAxis.position === 'left') {
118
+ labelX = offsetX
119
+ } else if (fullDataFormatter.grid.valueAxis.position === 'right') {
120
+ labelX = - offsetX
121
+ }
122
+ } else if (fullDataFormatter.grid.groupAxis.position === 'left') {
123
+ labelX = - offsetX
124
+ if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
125
+ labelY = - offsetY
126
+ } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
127
+ labelY = offsetY
128
+ }
129
+ } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
130
+ labelX = offsetX
131
+ if (fullDataFormatter.grid.valueAxis.position === 'bottom') {
132
+ labelY = - offsetY
133
+ } else if (fullDataFormatter.grid.valueAxis.position === 'top') {
134
+ labelY = offsetY
135
+ }
136
+ }
137
+
138
+ const axisLabelSelection = selection
139
+ .selectAll<SVGGElement, BaseGroupAxisParams>(`g.${groupingLabelClassName}`)
140
+ .data([fullParams])
141
+ .join('g')
142
+ .classed(groupingLabelClassName, true)
143
+ .each((d, i, g) => {
144
+ const text = d3.select(g[i])
145
+ .selectAll<SVGTextElement, BaseGroupAxisParams>('text')
146
+ .data([d])
147
+ .join(
148
+ enter => {
149
+ return enter
150
+ .append('text')
151
+ .style('font-weight', 'bold')
152
+ },
153
+ update => update,
154
+ exit => exit.remove()
155
+ )
156
+ .attr('text-anchor', axisLabelAlign.textAnchor)
157
+ .attr('dominant-baseline', axisLabelAlign.dominantBaseline)
158
+ .attr('font-size', chartParams.styles.textSize)
159
+ .style('fill', getColor(fullParams.labelColorType, chartParams))
160
+ .style('transform', textReverseTransform)
161
+ // 偏移使用 x, y 而非 transform 才不會受到外層 scale 變形影響
162
+ .attr('x', labelX)
163
+ .attr('y', labelY)
164
+ .text(d => fullDataFormatter.grid.groupAxis.label)
165
+ })
166
+ .attr('transform', d => `translate(${gridAxesSize.width}, 0)`)
167
+ // .attr('transform', d => `translate(${gridAxesSize.width + d.tickPadding + fullParams.labelOffset[0]}, ${- d.tickPadding - fullParams.labelOffset[1]})`)
168
+
169
+ }
170
+
171
+ function renderAxis ({ selection, xAxisClassName, fullParams, tickTextAlign, gridAxesSize, fullDataFormatter, chartParams, groupScale, groupScaleDomain, groupLabelData, textReverseTransformWithRotate, textSizePx }: {
172
+ selection: d3.Selection<SVGGElement, any, any, any>,
173
+ xAxisClassName: string
174
+ fullParams: BaseGroupAxisParams
175
+ tickTextAlign: TextAlign
176
+ gridAxesSize: { width: number, height: number }
177
+ fullDataFormatter: DataFormatterGrid,
178
+ chartParams: ChartParams
179
+ groupScale: d3.ScaleLinear<number, number>
180
+ groupScaleDomain: number[]
181
+ // groupLabels: string[]
182
+ groupLabelData: GroupLabelData[]
183
+ textReverseTransformWithRotate: string
184
+ textSizePx: number
185
+ }) {
186
+
187
+ const xAxisSelection = selection
188
+ .selectAll<SVGGElement, BaseGroupAxisParams>(`g.${xAxisClassName}`)
189
+ .data([fullParams])
190
+ .join('g')
191
+ .classed(xAxisClassName, true)
192
+
193
+ // 計算所有範圍內groupLabels數量(顯示所有刻度)
194
+ const allTicksAmount = Math.floor(groupScaleDomain[1]) - Math.ceil(groupScaleDomain[0]) + 1
195
+
196
+ // 刻度文字偏移
197
+ let tickPadding = 0
198
+ let textX = 0
199
+ if (fullDataFormatter.grid.groupAxis.position === 'left') {
200
+ tickPadding = 0
201
+ textX = - fullParams.tickPadding
202
+ } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
203
+ tickPadding = 0
204
+ textX = fullParams.tickPadding
205
+ } else if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
206
+ tickPadding = fullParams.tickPadding
207
+ textX = 0
208
+ } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
209
+ tickPadding = - fullParams.tickPadding
210
+ textX = - 0
211
+ }
212
+
213
+ // 設定X軸刻度
214
+ const xAxis = d3.axisBottom(groupScale)
215
+ .scale(groupScale)
216
+ .ticks(fullParams.ticks === 'all'
217
+ ? allTicksAmount
218
+ : fullParams.ticks > allTicksAmount
219
+ ? allTicksAmount // 不顯示超過groupLabels數量的刻度
220
+ : fullParams.ticks)
221
+ .tickSize(fullParams.tickFullLine == true
222
+ ? gridAxesSize.height
223
+ : - defaultTickSize)
224
+ .tickSizeOuter(0)
225
+ .tickFormat((groupIndex: number) => {
226
+ // 用index對應到groupLabel
227
+ // const groupLabel = groupLabels[groupIndex] ?? '' // 非整數index不顯示
228
+ // return parseTickFormatValue(groupLabel, fullParams.tickFormat)
229
+ return groupLabelData[groupIndex]?.text ?? ''
230
+ })
231
+ .tickPadding(tickPadding)
232
+
233
+ const xAxisEl = xAxisSelection
234
+ .transition()
235
+ .duration(100)
236
+ .call(xAxis)
237
+ .on('end', (self, t) => {
238
+ // 先等transition結束再處理文字,否則會被原本的文字覆蓋
239
+ xAxisSelection
240
+ .selectAll('.tick text')
241
+ .each((groupIndex: number, i, n) => {
242
+ // const groupLabel = groupLabels[groupIndex] ?? '' // 非整數index不顯示
243
+ // const groupLabelText = parseTickFormatValue(groupLabel, fullParams.tickFormat)
244
+ const textArr = groupLabelData[groupIndex]?.textArr ?? []
245
+
246
+ // 將原本單行文字改為多行文字
247
+ renderTspansOnAxis(d3.select(n[i]), {
248
+ textArr,
249
+ textSizePx,
250
+ groupAxisPosition: fullDataFormatter.grid.groupAxis.position
251
+ })
252
+ })
253
+ })
254
+
255
+ xAxisEl.selectAll('line')
256
+ .style('fill', 'none')
257
+ .style('stroke', fullParams.tickLineVisible == true ? getColor(fullParams.tickColorType, chartParams) : 'none')
258
+ .style('stroke-dasharray', fullParams.tickFullLineDasharray)
259
+ .attr('pointer-events', 'none')
260
+
261
+ xAxisEl.selectAll('path')
262
+ .style('fill', 'none')
263
+ .style('stroke', fullParams.axisLineVisible == true ? getColor(fullParams.axisLineColorType, chartParams) : 'none')
264
+ .style('shape-rendering', 'crispEdges')
265
+
266
+ const xText = xAxisSelection.selectAll<SVGTextElement, BaseGroupAxisParams>('text')
267
+ // .style('font-family', 'sans-serif')
268
+ .attr('font-size', chartParams.styles.textSize)
269
+ // .style('font-weight', 'bold')
270
+ .attr('fill', getColor(fullParams.tickTextColorType, chartParams))
271
+ .attr('text-anchor', tickTextAlign.textAnchor)
272
+ .attr('dominant-baseline', tickTextAlign.dominantBaseline)
273
+ .attr('x', textX)
274
+ .style('transform', textReverseTransformWithRotate)
275
+
276
+ // 抵消掉預設的偏移
277
+ // if (fullDataFormatter.grid.groupAxis.position === 'left' || fullDataFormatter.grid.groupAxis.position === 'right') {
278
+ xText.attr('dy', 0)
279
+ // }
280
+
281
+ return xAxisSelection
282
+ }
283
+
284
+
285
+ export const createBaseGroupAxis: BasePluginFn<BaseGroupAxisContext> = ((pluginName: string, {
286
+ selection,
287
+ computedData$,
288
+ fullParams$,
289
+ fullDataFormatter$,
290
+ fullChartParams$,
291
+ gridAxesTransform$,
292
+ gridAxesReverseTransform$,
293
+ gridAxesSize$,
294
+ gridContainerPosition$,
295
+ isSeriesSeprate$,
296
+ textSizePx$,
297
+ }) => {
298
+
299
+ const destroy$ = new Subject()
300
+
301
+ const containerClassName = getClassName(pluginName, 'container')
302
+ const xAxisGClassName = getClassName(pluginName, 'xAxisG')
303
+ const xAxisClassName = getClassName(pluginName, 'xAxis')
304
+ const groupingLabelClassName = getClassName(pluginName, 'groupingLabel')
305
+
306
+ const containerSelection$ = combineLatest({
307
+ computedData: computedData$.pipe(
308
+ distinctUntilChanged((a, b) => {
309
+ // 只有當series的數量改變時,才重新計算
310
+ return a.length === b.length
311
+ }),
312
+ ),
313
+ isSeriesSeprate: isSeriesSeprate$
314
+ }).pipe(
315
+ takeUntil(destroy$),
316
+ switchMap(async (d) => d),
317
+ map(data => {
318
+ return data.isSeriesSeprate
319
+ // series分開的時候顯示各別axis
320
+ ? data.computedData
321
+ // series合併的時候只顯示第一個axis
322
+ : [data.computedData[0]]
323
+ }),
324
+ map((computedData, i) => {
325
+ return selection
326
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${containerClassName}`)
327
+ .data(computedData, d => d[0] ? d[0].seriesIndex : i)
328
+ .join('g')
329
+ .classed(containerClassName, true)
330
+ })
331
+ )
332
+
333
+ const axisSelection$ = containerSelection$.pipe(
334
+ takeUntil(destroy$),
335
+ map((containerSelection, i) => {
336
+ return containerSelection
337
+ .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${xAxisGClassName}`)
338
+ .data([xAxisGClassName])
339
+ .join('g')
340
+ .classed(xAxisGClassName, true)
341
+ })
342
+ )
343
+
344
+ combineLatest({
345
+ containerSelection: containerSelection$,
346
+ gridContainerPosition: gridContainerPosition$
347
+ }).pipe(
348
+ takeUntil(destroy$),
349
+ switchMap(async d => d)
350
+ ).subscribe(data => {
351
+ data.containerSelection
352
+ .attr('transform', (d, i) => {
353
+ const gridContainerPosition = data.gridContainerPosition[i] ?? data.gridContainerPosition[0]
354
+ const translate = gridContainerPosition.translate
355
+ const scale = gridContainerPosition.scale
356
+ return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
357
+ })
358
+ // .attr('opacity', 0)
359
+ // .transition()
360
+ // .attr('opacity', 1)
361
+ })
362
+
363
+ combineLatest({
364
+ axisSelection: axisSelection$,
365
+ gridAxesTransform: gridAxesTransform$,
366
+ }).pipe(
367
+ takeUntil(destroy$),
368
+ switchMap(async d => d)
369
+ ).subscribe(data => {
370
+ data.axisSelection
371
+ .style('transform', data.gridAxesTransform.value)
372
+ // .attr('opacity', 0)
373
+ // .transition()
374
+ // .attr('opacity', 1)
375
+
376
+ })
377
+
378
+
379
+ // const gridAxesSize$ = gridAxisSizeObservable({
380
+ // fullDataFormatter$,
381
+ // layout$
382
+ // })
383
+
384
+
385
+ // const tickTextFormatter$ = fullDataFormatter$
386
+ // .pipe(
387
+ // map(d => {
388
+ // return d.grid.seriesDirection === 'row' ? d.grid.columnLabelFormat : d.grid.rowLabelFormat
389
+ // })
390
+ // )
391
+
392
+ // const textReverseTransform$: Observable<string> = new Observable(subscriber => {
393
+ // combineLatest({
394
+ // params: fullParams$,
395
+ // gridAxesTransform: gridAxesTransform$
396
+ // }).pipe(
397
+ // takeUntil(destroy$),
398
+ // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
399
+ // switchMap(async (d) => d),
400
+ // ).subscribe(data => {
401
+
402
+ // const transformData = Object.assign({}, data.gridAxesTransform)
403
+
404
+ // const value = getAxesTransformValue({
405
+ // translate: [0, 0],
406
+ // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
407
+ // rotate: transformData.rotate * -1 + data.params.tickTextRotate,
408
+ // rotateX: transformData.rotateX * -1,
409
+ // rotateY: transformData.rotateY * -1
410
+ // })
411
+
412
+ // subscriber.next(value)
413
+ // })
414
+ // })
415
+ // const reverseTransform$: Observable<TransformData> = gridAxesTransform$.pipe(
416
+ // takeUntil(destroy$),
417
+ // map(d => {
418
+ // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
419
+ // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
420
+ // const rotate = d.rotate * -1
421
+ // const rotateX = d.rotateX * -1
422
+ // const rotateY = d.rotateY * -1
423
+ // return {
424
+ // translate,
425
+ // scale,
426
+ // rotate,
427
+ // rotateX,
428
+ // rotateY,
429
+ // value: ''
430
+ // }
431
+ // }),
432
+ // )
433
+ const textReverseTransform$ = combineLatest({
434
+ gridAxesReverseTransform: gridAxesReverseTransform$,
435
+ gridContainerPosition: gridContainerPosition$
436
+ }).pipe(
437
+ takeUntil(destroy$),
438
+ switchMap(async (d) => d),
439
+ map(data => {
440
+ // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
441
+ const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
442
+ const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
443
+ const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
444
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
445
+ return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
446
+ }),
447
+ distinctUntilChanged()
448
+ )
449
+
450
+ const textReverseTransformWithRotate$ = combineLatest({
451
+ textReverseTransform: textReverseTransform$,
452
+ fullParams: fullParams$,
453
+ }).pipe(
454
+ takeUntil(destroy$),
455
+ switchMap(async (d) => d),
456
+ map(data => {
457
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
458
+ return `${data.textReverseTransform} rotate(${data.fullParams.tickTextRotate}deg)`
459
+ })
460
+ )
461
+
462
+ // 使用pointScale計算非連續性比例尺
463
+ // const groupScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
464
+ // combineLatest({
465
+ // fullDataFormatter: fullDataFormatter$,
466
+ // gridAxesSize: gridAxesSize$,
467
+ // computedData: computedData$
468
+ // }).pipe(
469
+ // takeUntil(destroy$),
470
+ // switchMap(async (d) => d),
471
+ // ).subscribe(data => {
472
+ // const groupMin = 0
473
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
474
+ // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
475
+ // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
476
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
477
+ // const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'auto'
478
+ // ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
479
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
480
+
481
+ // const groupingLength = data.computedData[0]
482
+ // ? data.computedData[0].length
483
+ // : 0
484
+
485
+ // let _labels = (data.computedData[0] ?? []).map(d => d.groupLabel)
486
+
487
+ // const axisLabels = new Array(groupingLength).fill(0)
488
+ // .map((d, i) => {
489
+ // return _labels[i] != null
490
+ // ? _labels[i]
491
+ // : String(i) // 沒有label則用序列號填充
492
+ // })
493
+ // .filter((d, i) => {
494
+ // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
495
+ // })
496
+
497
+
498
+ // const padding = data.fullDataFormatter.grid.groupAxis.scalePadding
499
+
500
+ // const groupScale = createAxisPointScale({
501
+ // axisLabels,
502
+ // axisWidth: data.gridAxesSize.width,
503
+ // padding
504
+ // })
505
+
506
+ // subscriber.next(groupScale)
507
+ // })
508
+ // })
509
+
510
+ const groupScaleDomain$ = combineLatest({
511
+ fullDataFormatter: fullDataFormatter$,
512
+ gridAxesSize: gridAxesSize$,
513
+ computedData: computedData$
514
+ }).pipe(
515
+ takeUntil(destroy$),
516
+ switchMap(async (d) => d),
517
+ map(data => {
518
+ const groupMin = 0
519
+ const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
520
+ // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
521
+ // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
522
+ // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
523
+ const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
524
+ const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
525
+ ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
526
+ : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
527
+
528
+ return [groupScaleDomainMin, groupScaleDomainMax]
529
+ }),
530
+ shareReplay(1)
531
+ )
532
+
533
+ const groupScale$ = combineLatest({
534
+ groupScaleDomain: groupScaleDomain$,
535
+ gridAxesSize: gridAxesSize$
536
+ }).pipe(
537
+ takeUntil(destroy$),
538
+ switchMap(async (d) => d),
539
+ map(data => {
540
+ const groupScale: d3.ScaleLinear<number, number> = d3.scaleLinear()
541
+ .domain(data.groupScaleDomain)
542
+ .range([0, data.gridAxesSize.width])
543
+ return groupScale
544
+ })
545
+ )
546
+
547
+ const groupLabels$ = computedData$.pipe(
548
+ map(computedData => (computedData[0] ?? []).map(d => d.groupLabel))
549
+ )
550
+
551
+ const tickTextAlign$: Observable<TextAlign> = combineLatest({
552
+ fullDataFormatter: fullDataFormatter$,
553
+ fullParams: fullParams$
554
+ }).pipe(
555
+ takeUntil(destroy$),
556
+ switchMap(async (d) => d),
557
+ map(data => {
558
+ let textAnchor: 'start' | 'middle' | 'end' = 'middle'
559
+ let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
560
+
561
+ if (data.fullDataFormatter.grid.groupAxis.position === 'bottom') {
562
+ textAnchor = data.fullParams.tickTextRotate
563
+ ? 'end'
564
+ : 'middle'
565
+ dominantBaseline = 'hanging'
566
+ } else if (data.fullDataFormatter.grid.groupAxis.position === 'top') {
567
+ textAnchor = data.fullParams.tickTextRotate
568
+ ? 'start'
569
+ : 'middle'
570
+ dominantBaseline = 'auto'
571
+ } else if (data.fullDataFormatter.grid.groupAxis.position === 'left') {
572
+ textAnchor = 'end'
573
+ dominantBaseline = 'middle'
574
+ } else if (data.fullDataFormatter.grid.groupAxis.position === 'right') {
575
+ textAnchor = 'start'
576
+ dominantBaseline = 'middle'
577
+ }
578
+ return {
579
+ textAnchor,
580
+ dominantBaseline
581
+ }
582
+ })
583
+ )
584
+
585
+ const axisLabelAlign$: Observable<TextAlign> = fullDataFormatter$.pipe(
586
+ takeUntil(destroy$),
587
+ map(d => {
588
+ let textAnchor: 'start' | 'middle' | 'end' = 'start'
589
+ let dominantBaseline: 'auto' | 'middle' | 'hanging' = 'hanging'
590
+
591
+ if (d.grid.groupAxis.position === 'bottom') {
592
+ dominantBaseline = 'hanging'
593
+ } else if (d.grid.groupAxis.position === 'top') {
594
+ dominantBaseline = 'auto'
595
+ } else if (d.grid.groupAxis.position === 'left') {
596
+ textAnchor = 'end'
597
+ } else if (d.grid.groupAxis.position === 'right') {
598
+ textAnchor = 'start'
599
+ }
600
+ if (d.grid.valueAxis.position === 'left') {
601
+ textAnchor = 'start'
602
+ } else if (d.grid.valueAxis.position === 'right') {
603
+ textAnchor = 'end'
604
+ } else if (d.grid.valueAxis.position === 'bottom') {
605
+ dominantBaseline = 'auto'
606
+ } else if (d.grid.valueAxis.position === 'top') {
607
+ dominantBaseline = 'hanging'
608
+ }
609
+ return {
610
+ textAnchor,
611
+ dominantBaseline
612
+ }
613
+ })
614
+ )
615
+
616
+ const groupLabelData$ = combineLatest({
617
+ groupLabels: groupLabels$,
618
+ fullParams: fullParams$
619
+ }).pipe(
620
+ takeUntil(destroy$),
621
+ switchMap(async (d) => d),
622
+ map(data => {
623
+ return createGroupLabelData(data.groupLabels, data.fullParams.tickFormat)
624
+ })
625
+ )
626
+
627
+ combineLatest({
628
+ axisSelection: axisSelection$,
629
+ fullParams: fullParams$,
630
+ tickTextAlign: tickTextAlign$,
631
+ axisLabelAlign: axisLabelAlign$,
632
+ gridAxesSize: gridAxesSize$,
633
+ fullDataFormatter: fullDataFormatter$,
634
+ chartParams: fullChartParams$,
635
+ groupScale: groupScale$,
636
+ groupScaleDomain: groupScaleDomain$,
637
+ // groupLabels: groupLabels$,
638
+ groupLabelData: groupLabelData$,
639
+ textReverseTransform: textReverseTransform$,
640
+ textReverseTransformWithRotate: textReverseTransformWithRotate$,
641
+ textSizePx: textSizePx$
642
+ // tickTextFormatter: tickTextFormatter$
643
+ }).pipe(
644
+ takeUntil(destroy$),
645
+ switchMap(async (d) => d),
646
+ ).subscribe(data => {
647
+
648
+ renderAxis({
649
+ selection: data.axisSelection,
650
+ xAxisClassName,
651
+ fullParams: data.fullParams,
652
+ tickTextAlign: data.tickTextAlign,
653
+ gridAxesSize: data.gridAxesSize,
654
+ fullDataFormatter: data.fullDataFormatter,
655
+ chartParams: data.chartParams,
656
+ groupScale: data.groupScale,
657
+ groupScaleDomain: data.groupScaleDomain,
658
+ // groupLabels: data.groupLabels,
659
+ groupLabelData: data.groupLabelData,
660
+ textReverseTransformWithRotate: data.textReverseTransformWithRotate,
661
+ textSizePx: data.textSizePx
662
+ })
663
+
664
+ renderAxisLabel({
665
+ selection: data.axisSelection,
666
+ groupingLabelClassName,
667
+ fullParams: data.fullParams,
668
+ axisLabelAlign: data.axisLabelAlign,
669
+ gridAxesSize: data.gridAxesSize,
670
+ fullDataFormatter: data.fullDataFormatter,
671
+ chartParams: data.chartParams,
672
+ textReverseTransform: data.textReverseTransform,
673
+ })
674
+ })
675
+
676
+ return () => {
677
+ destroy$.next(undefined)
678
+ }
679
679
  })