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

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