@orbcharts/plugins-basic 3.0.0-beta.2 → 3.0.0-beta.20

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