@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,1099 +1,1121 @@
1
- import * as d3 from 'd3'
2
- import {
3
- // of,
4
- iif,
5
- EMPTY,
6
- combineLatest,
7
- switchMap,
8
- map,
9
- filter,
10
- first,
11
- takeUntil,
12
- distinctUntilChanged,
13
- shareReplay,
14
- Subject,
15
- Observable } from 'rxjs'
16
- import {
17
- defineGridPlugin } from '../../../lib/core'
18
- import type { DefinePluginConfig } from '../../../lib/core-types'
19
- import type {
20
- TransformData,
21
- DataFormatterGrid,
22
- ChartParams } from '../../../lib/core-types'
23
- import { DEFAULT_GROUP_AREA_PARAMS } from '../defaults'
24
- import { parseTickFormatValue } from '../../utils/d3Utils'
25
- import { measureTextWidth } from '../../utils/commonUtils'
26
- import { getColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
27
- import { d3EventObservable } from '../../utils/observables'
28
- import { gridGroupPosition } from '../gridObservables'
29
- import type { GroupAuxParams } from '../../../lib/plugins-basic-types'
30
- import { gridSelectionsObservable } from '../gridObservables'
31
- import { renderTspansOnAxis } from '../../utils/d3Graphics'
32
- import { LAYER_INDEX_OF_AUX } from '../../const'
33
-
34
- interface LineDatum {
35
- id: string
36
- x1: number
37
- x2: number
38
- y1: number
39
- y2: number
40
- }
41
-
42
- interface LabelDatum {
43
- id: string
44
- text: string
45
- textArr: string[]
46
- textWidth: number
47
- textHeight: number
48
- x: number
49
- y: number
50
- }
51
-
52
- const pluginName = 'GroupAux'
53
- const labelClassName = getClassName(pluginName, 'label-box')
54
-
55
- const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_GROUP_AREA_PARAMS> = {
56
- name: pluginName,
57
- defaultParams: DEFAULT_GROUP_AREA_PARAMS,
58
- layerIndex: LAYER_INDEX_OF_AUX,
59
- validator: (params, { validateColumns }) => {
60
- const result = validateColumns(params, {
61
- showLine: {
62
- toBeTypes: ['boolean']
63
- },
64
- showLabel: {
65
- toBeTypes: ['boolean']
66
- },
67
- lineDashArray: {
68
- toBeTypes: ['string']
69
- },
70
- lineColorType: {
71
- toBeOption: 'ColorType'
72
- },
73
- labelColorType: {
74
- toBeOption: 'ColorType'
75
- },
76
- labelTextColorType: {
77
- toBeOption: 'ColorType'
78
- },
79
- labelTextFormat: {
80
- toBeTypes: ['string', 'Function']
81
- },
82
- labelPadding: {
83
- toBeTypes: ['number']
84
- },
85
- labelRotate: {
86
- toBeTypes: ['number']
87
- }
88
- })
89
- return result
90
- }
91
- }
92
-
93
- function createLineData ({ groupLabel, axisX, axisHeight, fullParams }: {
94
- groupLabel: string
95
- axisX: number
96
- axisHeight: number
97
- fullParams: GroupAuxParams
98
- }): LineDatum[] {
99
- return fullParams.showLine && groupLabel
100
- ? [{
101
- id: groupLabel,
102
- x1: axisX,
103
- x2: axisX,
104
- y1: 0,
105
- y2: axisHeight
106
- }]
107
- : []
108
- }
109
-
110
- function createLabelData ({ groupLabel, axisX, fullParams, textSizePx }: {
111
- groupLabel: string
112
- axisX: number
113
- fullParams: GroupAuxParams
114
- textSizePx: number
115
- }) {
116
- const text = parseTickFormatValue(groupLabel, fullParams.labelTextFormat)
117
- const textArr = text.split('\n')
118
- const maxLengthText = textArr.reduce((acc, current) => current.length > acc.length ? current : acc, '')
119
- const textWidth = measureTextWidth(maxLengthText, textSizePx)
120
- const textHeight = textSizePx * textArr.length
121
- return fullParams.showLabel && groupLabel
122
- ? [{
123
- id: groupLabel,
124
- x: axisX,
125
- y: - fullParams.labelPadding,
126
- text,
127
- textArr,
128
- textWidth,
129
- textHeight
130
- }]
131
- : []
132
- }
133
-
134
- function renderLine ({ selection, pluginName, lineData, fullParams, fullChartParams }: {
135
- selection: d3.Selection<any, string, any, unknown>
136
- pluginName: string
137
- lineData: LineDatum[]
138
- fullParams: GroupAuxParams
139
- fullChartParams: ChartParams
140
- }) {
141
- const gClassName = getClassName(pluginName, 'auxline')
142
- const update = selection
143
- .selectAll<SVGLineElement, LineDatum>(`line.${gClassName}`)
144
- .data(lineData)
145
- const enter = update
146
- .enter()
147
- .append('line')
148
- .classed(gClassName, true)
149
- // .style('stroke', '#E4E7ED')
150
- .style('stroke', d => getColor(fullParams.lineColorType, fullChartParams))
151
- .style('stroke-width', 1)
152
- .style('stroke-dasharray', fullParams.lineDashArray ?? 'none')
153
- .style('pointer-events', 'none')
154
- // .attr('opacity', 0)
155
- const auxLineSelection = update.merge(enter)
156
- // .attr('opacity', (d) => {
157
- // return d.active == true ? 1 : 0
158
- // })
159
- update.exit().remove()
160
- enter
161
- .attr('x1', d => d.x1)
162
- .attr('y1', d => d.y1)
163
- .attr('x2', d => d.x2)
164
- .attr('y2', d => d.y2)
165
- update
166
- .transition()
167
- .duration(50)
168
- .attr('x1', d => d.x1)
169
- .attr('y1', d => d.y1)
170
- .attr('x2', d => d.x2)
171
- .attr('y2', d => d.y2)
172
-
173
- return auxLineSelection
174
- }
175
-
176
- function removeLine (selection: d3.Selection<any, string, any, unknown>) {
177
- const update = selection
178
- .selectAll<SVGLineElement, LineDatum>('line')
179
- .data([])
180
-
181
- update.exit().remove()
182
- }
183
-
184
- function renderLabel ({ selection, labelData, fullParams, fullDataFormatter, fullChartParams, textReverseTransformWithRotate, textSizePx }: {
185
- selection: d3.Selection<any, string, any, unknown>
186
- labelData: LabelDatum[]
187
- fullParams: GroupAuxParams
188
- fullDataFormatter: DataFormatterGrid
189
- fullChartParams: ChartParams
190
- // gridAxesReverseTransformValue: string
191
- textReverseTransformWithRotate: string
192
- textSizePx: number
193
- }) {
194
- // const rectHeight = textSizePx + 6
195
-
196
- const gUpdate = selection
197
- .selectAll<SVGGElement, LabelDatum>(`g.${labelClassName}`)
198
- .data(labelData)
199
- const gEnter = gUpdate
200
- .enter()
201
- .append('g')
202
- .classed(labelClassName, true)
203
- .style('cursor', 'pointer')
204
- const axisLabelSelection = gEnter.merge(gUpdate)
205
- gEnter
206
- .attr("transform", (d, i) => {
207
- return `translate(${d.x}, ${d.y})`
208
- })
209
- gUpdate
210
- .transition()
211
- .duration(50)
212
- .attr("transform", (d, i) => {
213
- return `translate(${d.x}, ${d.y})`
214
- })
215
- gUpdate.exit().remove()
216
-
217
- axisLabelSelection.each((datum, i, n) => {
218
- // const rectWidth = measureTextWidth(datum.text, textSizePx) + 12
219
- const rectWidth = datum.textWidth + 12
220
- const rectHeight = datum.textHeight + 6
221
- // -- label偏移位置 --
222
- let rectX = - rectWidth / 2
223
- let rectY = -2
224
- if (fullDataFormatter.grid.groupAxis.position === 'bottom') {
225
- rectX = fullParams.labelRotate
226
- ? - rectWidth + rectHeight // 有傾斜時以末端對齊(+height是為了修正移動太多)
227
- : - rectWidth / 2
228
- rectY = 2
229
- } else if (fullDataFormatter.grid.groupAxis.position === 'left') {
230
- rectX = - rectWidth + 2
231
- rectY = - rectHeight / 2
232
- } else if (fullDataFormatter.grid.groupAxis.position === 'right') {
233
- rectX = - 2
234
- rectY = - rectHeight / 2
235
- } else if (fullDataFormatter.grid.groupAxis.position === 'top') {
236
- rectX = fullParams.labelRotate
237
- ? - rectWidth + rectHeight // 有傾斜時以末端對齊(+height是為了修正移動太多)
238
- : - rectWidth / 2
239
- rectY = - rectHeight + 2
240
- }
241
-
242
- // -- rect --
243
- d3.select(n[i])
244
- .selectAll<SVGRectElement, LabelDatum>('rect')
245
- .data([datum])
246
- .join(
247
- enter => enter.append('rect')
248
- .style('cursor', 'pointer')
249
- .attr('rx', 5)
250
- .attr('ry', 5),
251
- update => update,
252
- exit => exit.remove()
253
- )
254
- .attr('width', d => `${rectWidth}px`)
255
- .attr('height', `${rectHeight}px`)
256
- .attr('fill', d => getColor(fullParams.labelColorType, fullChartParams))
257
- .attr('x', rectX)
258
- .attr('y', rectY - 3) // 奇怪的偏移修正
259
- .style('transform', textReverseTransformWithRotate)
260
-
261
- // const rectUpdate = d3.select(n[i])
262
- // .selectAll<SVGRectElement, LabelDatum>('rect')
263
- // .data([datum])
264
- // const rectEnter = rectUpdate
265
- // .enter()
266
- // .append('rect')
267
- // .attr('height', `${rectHeight}px`)
268
- // .attr('fill', d => getColor(fullParams.labelColorType, fullChartParams))
269
- // .attr('x', rectX)
270
- // .attr('y', rectY - 3) // 奇怪的偏移修正
271
- // .attr('rx', 5)
272
- // .attr('ry', 5)
273
- // .style('cursor', 'pointer')
274
- // // .style('pointer-events', 'none')
275
- // const rect = rectUpdate.merge(rectEnter)
276
- // .attr('width', d => `${rectWidth}px`)
277
- // .style('transform', textReverseTransformWithRotate)
278
- // rectUpdate.exit().remove()
279
-
280
- // -- text --
281
- d3.select(n[i])
282
- .selectAll<SVGTextElement, LabelDatum>('text')
283
- .data([datum])
284
- .join(
285
- enter => enter.append('text')
286
- .style('dominant-baseline', 'hanging')
287
- .style('cursor', 'pointer'),
288
- update => update,
289
- exit => exit.remove()
290
- )
291
- .style('transform', textReverseTransformWithRotate)
292
- .attr('fill', d => getColor(fullParams.labelTextColorType, fullChartParams))
293
- .attr('font-size', fullChartParams.styles.textSize)
294
- .attr('x', rectX + 6)
295
- .attr('y', rectY)
296
- .each((d, i, n) => {
297
- renderTspansOnAxis(d3.select(n[i]), {
298
- textArr: datum.textArr,
299
- textSizePx,
300
- groupAxisPosition: fullDataFormatter.grid.groupAxis.position
301
- })
302
- })
303
-
304
- // const textUpdate = d3.select(n[i])
305
- // .selectAll<SVGTextElement, LabelDatum>('text')
306
- // .data([datum])
307
- // const textEnter = textUpdate
308
- // .enter()
309
- // .append('text')
310
- // .style('dominant-baseline', 'hanging')
311
- // .style('cursor', 'pointer')
312
- // // .style('pointer-events', 'none')
313
- // const text = textUpdate.merge(textEnter)
314
- // // .text(d => d.text)
315
- // .style('transform', textReverseTransformWithRotate)
316
- // .attr('fill', d => getColor(fullParams.labelTextColorType, fullChartParams))
317
- // .attr('font-size', fullChartParams.styles.textSize)
318
- // .attr('x', rectX + 6)
319
- // .attr('y', rectY)
320
- // textUpdate.exit().remove()
321
-
322
- // text.each((d, i, n) => {
323
- // renderTspansOnAxis(d3.select(n[i]), {
324
- // textArr: datum.textArr,
325
- // textSizePx,
326
- // groupAxisPosition: fullDataFormatter.grid.groupAxis.position
327
- // })
328
- // })
329
- })
330
-
331
- return axisLabelSelection
332
- }
333
-
334
- function removeLabel (selection: d3.Selection<any, string, any, unknown>) {
335
- const gUpdate = selection
336
- .selectAll<SVGGElement, LabelDatum>(`g.${labelClassName}`)
337
- .data([])
338
-
339
- gUpdate.exit().remove()
340
- }
341
-
342
-
343
- export const GroupAux = defineGridPlugin(pluginConfig)(({ selection, rootSelection, name, subject, observer }) => {
344
- const destroy$ = new Subject()
345
-
346
- let isLabelMouseover = false
347
-
348
- const rootRectSelection: d3.Selection<SVGRectElement, any, any, any> = rootSelection
349
- .insert('rect', 'g')
350
- .classed(getClassName(pluginName, 'rect'), true)
351
- .attr('opacity', 0)
352
-
353
- // const axisSelection: d3.Selection<SVGGElement, any, any, any> = selection
354
- // .append('g')
355
-
356
- const {
357
- seriesSelection$,
358
- axesSelection$,
359
- defsSelection$,
360
- graphicGSelection$
361
- } = gridSelectionsObservable({
362
- selection,
363
- pluginName,
364
- clipPathID: 'test',
365
- seriesLabels$: observer.isSeriesSeprate$.pipe(
366
- switchMap(isSeriesSeprate => {
367
- return iif(
368
- () => isSeriesSeprate,
369
- observer.seriesLabels$,
370
- // 如果沒分開的話只取一筆
371
- observer.seriesLabels$.pipe(
372
- map(d => [d[0]])
373
- )
374
- )
375
- })
376
- ),
377
- gridContainerPosition$: observer.gridContainerPosition$,
378
- gridAxesTransform$: observer.gridAxesTransform$,
379
- gridGraphicTransform$: observer.gridGraphicTransform$
380
- })
381
-
382
- observer.layout$.pipe(
383
- takeUntil(destroy$),
384
- ).subscribe(d => {
385
- rootRectSelection
386
- .attr('width', d.rootWidth)
387
- .attr('height', d.rootHeight)
388
- })
389
-
390
- // observer.gridAxesTransform$
391
- // .pipe(
392
- // takeUntil(destroy$),
393
- // map(d => d.value),
394
- // distinctUntilChanged()
395
- // ).subscribe(d => {
396
- // axisSelection
397
- // .style('transform', d)
398
- // })
399
-
400
- // const visibleComputedData$ = observer.computedData$.pipe(
401
- // takeUntil(destroy$),
402
- // map(data => {
403
- // const visibleComputedData = data
404
- // .map(d => {
405
- // return d.filter(_d => {
406
- // return _d.visible == true
407
- // })
408
- // })
409
- // .filter(d => d.length)
410
- // // console.log('visibleComputedData', visibleComputedData)
411
- // return visibleComputedData
412
- // })
413
- // )
414
-
415
- // const SeriesDataMap$ = visibleComputedData$.pipe(
416
- // map(d => makeGridSeriesDataMap(d))
417
- // )
418
-
419
- // const GroupDataMap$ = visibleComputedData$.pipe(
420
- // map(d => makeGridGroupDataMap(d))
421
- // )
422
-
423
- // const contentTransform$: Observable<string> = new Observable(subscriber => {
424
- // combineLatest({
425
- // fullParams: observer.fullParams$,
426
- // gridAxesTransform: observer.gridAxesTransform$
427
- // }).pipe(
428
- // takeUntil(destroy$),
429
- // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
430
- // switchMap(async (d) => d),
431
- // ).subscribe(data => {
432
-
433
- // const transformData = Object.assign({}, data.gridAxesTransform)
434
-
435
- // // const value = getAxesTransformValue({
436
- // // translate: [0, 0],
437
- // // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
438
- // // rotate: transformData.rotate * -1,
439
- // // rotateX: transformData.rotateX * -1,
440
- // // rotateY: transformData.rotateY * -1
441
- // // })
442
-
443
- // subscriber.next(transformData.value)
444
- // })
445
- // })
446
- // const reverseTransform$: Observable<TransformData> = observer.gridAxesTransform$.pipe(
447
- // takeUntil(destroy$),
448
- // map(d => {
449
- // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
450
- // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
451
- // const rotate = d.rotate * -1
452
- // const rotateX = d.rotateX * -1
453
- // const rotateY = d.rotateY * -1
454
- // return {
455
- // translate,
456
- // scale,
457
- // rotate,
458
- // rotateX,
459
- // rotateY,
460
- // value: ''
461
- // }
462
- // }),
463
- // )
464
- // const contentTransform$ = combineLatest({
465
- // fullParams: observer.fullParams$,
466
- // reverseTransform: reverseTransform$
467
- // }).pipe(
468
- // takeUntil(destroy$),
469
- // switchMap(async data => {
470
- // const translate = [0, 0]
471
- // return `translate(${translate[0]}px, ${translate[1]}px) rotate(${data.reverseTransform.rotate}deg) rotateX(${data.reverseTransform.rotateX}deg) rotateY(${data.reverseTransform.rotateY}deg)`
472
- // }),
473
- // distinctUntilChanged()
474
- // )
475
-
476
- // const groupScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
477
- // combineLatest({
478
- // fullDataFormatter: observer.fullDataFormatter$,
479
- // gridAxesSize: observer.gridAxesSize$,
480
- // computedData: observer.computedData$
481
- // }).pipe(
482
- // takeUntil(destroy$),
483
- // switchMap(async (d) => d),
484
- // ).subscribe(data => {
485
- // const groupMin = 0
486
- // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
487
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
488
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
489
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
490
- // const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'auto'
491
- // ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
492
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
493
-
494
- // const groupingLength = data.computedData[0]
495
- // ? data.computedData[0].length
496
- // : 0
497
-
498
- // let _labels = data.fullDataFormatter.grid.seriesDirection === 'row'
499
- // // ? data.fullDataFormatter.grid.columnLabels
500
- // // : data.fullDataFormatter.grid.rowLabels
501
- // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
502
- // : data.computedData.map(d => d[0].groupLabel)
503
-
504
- // const axisLabels = new Array(groupingLength).fill(0)
505
- // .map((d, i) => {
506
- // return _labels[i] != null
507
- // ? _labels[i]
508
- // : String(i) // 沒有label則用序列號填充
509
- // })
510
- // .filter((d, i) => {
511
- // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
512
- // })
513
-
514
-
515
- // const padding = data.fullDataFormatter.grid.groupAxis.scalePadding
516
-
517
- // const groupScale = createAxisPointScale({
518
- // axisLabels,
519
- // axisWidth: data.gridAxesSize.width,
520
- // padding
521
- // })
522
-
523
- // subscriber.next(groupScale)
524
- // })
525
- // })
526
-
527
- const groupScaleDomain$ = combineLatest({
528
- fullDataFormatter: observer.fullDataFormatter$,
529
- gridAxesSize: observer.gridAxesSize$,
530
- computedData: observer.computedData$
531
- }).pipe(
532
- takeUntil(destroy$),
533
- switchMap(async (d) => d),
534
- map(data => {
535
- const groupMin = 0
536
- const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
537
- // const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] === 'auto'
538
- // ? groupMin - data.fullDataFormatter.grid.groupAxis.scalePadding
539
- // : data.fullDataFormatter.grid.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.grid.groupAxis.scalePadding
540
- const groupScaleDomainMin = data.fullDataFormatter.grid.groupAxis.scaleDomain[0] - data.fullDataFormatter.grid.groupAxis.scalePadding
541
- const groupScaleDomainMax = data.fullDataFormatter.grid.groupAxis.scaleDomain[1] === 'max'
542
- ? groupMax + data.fullDataFormatter.grid.groupAxis.scalePadding
543
- : data.fullDataFormatter.grid.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.grid.groupAxis.scalePadding
544
-
545
- return [groupScaleDomainMin, groupScaleDomainMax]
546
- }),
547
- shareReplay(1)
548
- )
549
-
550
- const groupScale$ = combineLatest({
551
- groupScaleDomain: groupScaleDomain$,
552
- gridAxesSize: observer.gridAxesSize$
553
- }).pipe(
554
- takeUntil(destroy$),
555
- switchMap(async (d) => d),
556
- map(data => {
557
- const groupScale: d3.ScaleLinear<number, number> = d3.scaleLinear()
558
- .domain(data.groupScaleDomain)
559
- .range([0, data.gridAxesSize.width])
560
- return groupScale
561
- })
562
- )
563
-
564
- // // 取得事件座標的group資料
565
- // const gridGroupPositionFn$ = gridGroupPositionFnObservable({
566
- // fullDataFormatter$: observer.fullDataFormatter$,
567
- // gridAxesSize$: observer.gridAxesSize$,
568
- // computedData$: observer.computedData$,
569
- // fullChartParams$: observer.fullChartParams$,
570
- // })
571
-
572
- const highlightTarget$ = observer.fullChartParams$.pipe(
573
- takeUntil(destroy$),
574
- map(d => d.highlightTarget),
575
- distinctUntilChanged()
576
- )
577
-
578
- // combineLatest({
579
- // computedData: observer.computedData$,
580
- // gridAxesSize: observer.gridAxesSize$,
581
- // fullParams: observer.fullParams$,
582
- // fullChartParams: observer.fullChartParams$,
583
- // highlightTarget: highlightTarget$,
584
- // SeriesDataMap: observer.SeriesDataMap$,
585
- // GroupDataMap: observer.GroupDataMap$,
586
- // gridGroupPositionFn: gridGroupPositionFn$,
587
- // groupScale: groupScale$,
588
- // }).pipe(
589
- // takeUntil(destroy$),
590
- // switchMap(async (d) => d),
591
- // ).subscribe(data => {
592
-
593
- // // store.selection
594
- // rootSelection
595
- // .on('mouseover', (event, datum) => {
596
- // // event.stopPropagation()
597
-
598
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
599
-
600
- // subject.event$.next({
601
- // type: 'grid',
602
- // pluginName: name,
603
- // eventName: 'mouseover',
604
- // highlightTarget: data.highlightTarget,
605
- // datum: null,
606
- // gridIndex: 0, // @Q@ 暫不處理
607
- // series: [],
608
- // seriesIndex: -1,
609
- // seriesLabel: '',
610
- // groups: data.GroupDataMap.get(groupLabel) ?? [],
611
- // // groups: [],
612
- // groupIndex,
613
- // groupLabel,
614
- // event,
615
- // data: data.computedData
616
- // })
617
- // })
618
- // .on('mousemove', (event, datum) => {
619
- // // event.stopPropagation()
620
-
621
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
622
-
623
- // subject.event$.next({
624
- // type: 'grid',
625
- // pluginName: name,
626
- // eventName: 'mousemove',
627
- // highlightTarget: data.highlightTarget,
628
- // datum: null,
629
- // gridIndex: 0, // @Q@ 暫不處理
630
- // series: [],
631
- // seriesIndex: -1,
632
- // seriesLabel: '',
633
- // groups: data.GroupDataMap.get(groupLabel) ?? [],
634
- // // groups: [],
635
- // groupIndex,
636
- // groupLabel,
637
- // event,
638
- // data: data.computedData
639
- // })
640
- // })
641
- // .on('mouseout', (event, datum) => {
642
- // // event.stopPropagation()
643
-
644
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
645
-
646
- // subject.event$.next({
647
- // type: 'grid',
648
- // pluginName: name,
649
- // eventName: 'mouseout',
650
- // highlightTarget: data.highlightTarget,
651
- // datum: null,
652
- // gridIndex: 0, // @Q@ 暫不處理
653
- // series: [],
654
- // seriesIndex: -1,
655
- // seriesLabel: '',
656
- // groups: data.GroupDataMap.get(groupLabel) ?? [],
657
- // // groups: [],
658
- // groupIndex,
659
- // groupLabel,
660
- // event,
661
- // data: data.computedData
662
- // })
663
- // })
664
- // .on('click', (event, datum) => {
665
- // event.stopPropagation()
666
-
667
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
668
-
669
- // subject.event$.next({
670
- // type: 'grid',
671
- // pluginName: name,
672
- // eventName: 'click',
673
- // highlightTarget: data.highlightTarget,
674
- // datum: null,
675
- // gridIndex: 0, // @Q@ 暫不處理
676
- // series: [],
677
- // seriesIndex: -1,
678
- // seriesLabel: '',
679
- // // groups: data.GroupDataMap.get(groupLabel) ?? [],
680
- // groups: [],
681
- // groupIndex,
682
- // groupLabel,
683
- // event,
684
- // data: data.computedData
685
- // })
686
- // })
687
-
688
- // // barSelection$.next(barSelection!)
689
- // })
690
-
691
- const rootMousemove$: Observable<any> = d3EventObservable(rootSelection, 'mousemove').pipe(
692
- takeUntil(destroy$),
693
- )
694
-
695
- // const mousemoveGroupLabel$ = combineLatest({
696
- // rootMousemove: rootMousemove$,
697
- // gridGroupPositionFn: gridGroupPositionFn$,
698
- // }).pipe(
699
- // takeUntil(destroy$),
700
- // switchMap(async d => d),
701
- // map(data => {
702
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(data.rootMousemove)
703
- // return { groupIndex, groupLabel }
704
- // }),
705
- // shareReplay(1)
706
- // )
707
-
708
-
709
- const textReverseTransform$ = combineLatest({
710
- gridAxesReverseTransform: observer.gridAxesReverseTransform$,
711
- gridContainerPosition: observer.gridContainerPosition$
712
- }).pipe(
713
- takeUntil(destroy$),
714
- switchMap(async (d) => d),
715
- map(data => {
716
- // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
717
- const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
718
- const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
719
- const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
720
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
721
- return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
722
- }),
723
- distinctUntilChanged()
724
- )
725
-
726
- const textReverseTransformWithRotate$ = combineLatest({
727
- textReverseTransform: textReverseTransform$,
728
- fullParams: observer.fullParams$,
729
- }).pipe(
730
- takeUntil(destroy$),
731
- switchMap(async (d) => d),
732
- map(data => {
733
- // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
734
- return `${data.textReverseTransform} rotate(${data.fullParams.labelRotate}deg)`
735
- })
736
- )
737
-
738
- const columnAmount$ = observer.gridContainerPosition$.pipe(
739
- takeUntil(destroy$),
740
- map(gridContainerPosition => {
741
- const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
742
- return current.columnIndex > acc ? current.columnIndex : acc
743
- }, 0)
744
- return maxColumnIndex + 1
745
- }),
746
- distinctUntilChanged()
747
- )
748
-
749
- const rowAmount$ = observer.gridContainerPosition$.pipe(
750
- takeUntil(destroy$),
751
- map(gridContainerPosition => {
752
- const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
753
- return current.rowIndex > acc ? current.rowIndex : acc
754
- }, 0)
755
- return maxRowIndex + 1
756
- }),
757
- distinctUntilChanged()
758
- )
759
-
760
- const gridGroupPosition$ = gridGroupPosition({
761
- rootSelection,
762
- fullDataFormatter$: observer.fullDataFormatter$,
763
- gridAxesSize$: observer.gridAxesSize$,
764
- computedData$: observer.computedData$,
765
- fullChartParams$: observer.fullChartParams$,
766
- gridContainerPosition$: observer.gridContainerPosition$,
767
- layout$: observer.layout$
768
- }).pipe(
769
- takeUntil(destroy$)
770
- )
771
-
772
- combineLatest({
773
- axesSelection: axesSelection$,
774
- columnAmount: columnAmount$,
775
- rowAmount: rowAmount$,
776
- layout: observer.layout$,
777
- rootMousemove: rootMousemove$,
778
- // gridGroupPositionFn: gridGroupPositionFn$,
779
- gridGroupPosition: gridGroupPosition$,
780
- computedData: observer.computedData$,
781
- groupScale: groupScale$,
782
- gridAxesSize: observer.gridAxesSize$,
783
- fullParams: observer.fullParams$,
784
- fullDataFormatter: observer.fullDataFormatter$,
785
- fullChartParams: observer.fullChartParams$,
786
- highlightTarget: highlightTarget$,
787
- // gridAxesReverseTransform: observer.gridAxesReverseTransform$,
788
- textReverseTransformWithRotate: textReverseTransformWithRotate$,
789
- GroupDataMap: observer.GroupDataMap$,
790
- textSizePx: observer.textSizePx$
791
- }).pipe(
792
- takeUntil(destroy$),
793
- switchMap(async d => d),
794
- ).subscribe(data => {
795
- // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
796
- // const eventData = {
797
- // offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
798
- // offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
799
- // }
800
- // 依event的座標取得group資料
801
- const { groupIndex, groupLabel } = data.gridGroupPosition
802
- // console.log('gridGroupPosition', groupIndex, groupLabel)
803
- const axisX = data.groupScale(groupIndex) ?? 0
804
- // console.log('axisX', axisX)
805
- const lineData = createLineData({
806
- groupLabel: groupLabel,
807
- axisX,
808
- axisHeight: data.gridAxesSize.height,
809
- fullParams: data.fullParams,
810
- })
811
- // console.log('lineData', lineData)
812
- renderLine({
813
- // selection: axisSelection,
814
- selection: data.axesSelection,
815
- pluginName: name,
816
- lineData,
817
- fullParams: data.fullParams,
818
- fullChartParams: data.fullChartParams
819
- })
820
- const labelData = createLabelData({
821
- groupLabel: groupLabel,
822
- axisX,
823
- fullParams: data.fullParams,
824
- textSizePx: data.textSizePx
825
- })
826
- const labelSelection = renderLabel({
827
- // selection: axisSelection,
828
- selection: data.axesSelection,
829
- labelData,
830
- fullParams: data.fullParams,
831
- fullDataFormatter: data.fullDataFormatter,
832
- fullChartParams: data.fullChartParams,
833
- // gridAxesReverseTransformValue: data.gridAxesReverseTransform.value,
834
- textReverseTransformWithRotate: data.textReverseTransformWithRotate,
835
- textSizePx: data.textSizePx
836
- })
837
-
838
- // label的事件
839
- labelSelection
840
- .on('mouseover', (event, datum) => {
841
- event.stopPropagation()
842
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
843
-
844
- isLabelMouseover = true
845
-
846
- subject.event$.next({
847
- type: 'grid',
848
- pluginName: name,
849
- eventName: 'mouseover',
850
- highlightTarget: data.highlightTarget,
851
- datum: null,
852
- gridIndex: 0, // @Q@ 暫不處理
853
- series: [],
854
- seriesIndex: -1,
855
- seriesLabel: '',
856
- groups: data.GroupDataMap.get(groupLabel) ?? [],
857
- groupIndex,
858
- groupLabel,
859
- event,
860
- data: data.computedData
861
- })
862
- })
863
- .on('mousemove', (event, datum) => {
864
- event.stopPropagation()
865
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
866
-
867
- subject.event$.next({
868
- type: 'grid',
869
- pluginName: name,
870
- eventName: 'mousemove',
871
- highlightTarget: data.highlightTarget,
872
- datum: null,
873
- gridIndex: 0, // @Q@ 暫不處理
874
- series: [],
875
- seriesIndex: -1,
876
- seriesLabel: '',
877
- groups: data.GroupDataMap.get(groupLabel) ?? [],
878
- groupIndex,
879
- groupLabel,
880
- event,
881
- data: data.computedData
882
- })
883
- })
884
- .on('mouseout', (event, datum) => {
885
- event.stopPropagation()
886
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
887
-
888
- isLabelMouseover = false
889
-
890
- subject.event$.next({
891
- type: 'grid',
892
- pluginName: name,
893
- eventName: 'mouseout',
894
- highlightTarget: data.highlightTarget,
895
- datum: null,
896
- gridIndex: 0, // @Q@ 暫不處理
897
- series: [],
898
- seriesIndex: -1,
899
- seriesLabel: '',
900
- groups: data.GroupDataMap.get(groupLabel) ?? [],
901
- groupIndex,
902
- groupLabel,
903
- event,
904
- data: data.computedData
905
- })
906
- })
907
- .on('click', (event, datum) => {
908
- event.stopPropagation()
909
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
910
-
911
- subject.event$.next({
912
- type: 'grid',
913
- pluginName: name,
914
- eventName: 'click',
915
- highlightTarget: data.highlightTarget,
916
- datum: null,
917
- gridIndex: 0, // @Q@ 暫不處理
918
- series: [],
919
- seriesIndex: -1,
920
- seriesLabel: '',
921
- groups: data.GroupDataMap.get(groupLabel) ?? [],
922
- groupIndex,
923
- groupLabel,
924
- event,
925
- data: data.computedData
926
- })
927
- })
928
-
929
- })
930
-
931
- // // -- highlight(無論highlightTarget設定為何,一律依從groupLabel來顯示) --
932
- // combineLatest({
933
- // event: subject.event$.pipe(
934
- // filter(d => d.eventName === 'mouseover' || d.eventName === 'mousemove')
935
- // ),
936
- // computedData: observer.computedData$,
937
- // groupScale: groupScale$,
938
- // gridAxesSize: observer.gridAxesSize$,
939
- // fullParams: observer.fullParams$,
940
- // fullChartParams: observer.fullChartParams$,
941
- // highlightTarget: highlightTarget$,
942
- // gridAxesReverseTransform: observer.gridAxesReverseTransform$,
943
- // GroupDataMap: observer.GroupDataMap$,
944
- // gridGroupPositionFn: gridGroupPositionFn$,
945
- // textSizePx: observer.textSizePx$
946
- // }).pipe(
947
- // takeUntil(destroy$),
948
- // switchMap(async d => d)
949
- // ).subscribe(data => {
950
- // // const groups = data.event.eventName === 'mouseover' || data.event.eventName === 'mousemove'
951
- // // ? data.event.groups
952
- // // : []
953
-
954
- // // const groupLabel = data.event.eventName === 'mouseover' || data.event.eventName === 'mousemove'
955
- // // ? data.event.groupLabel
956
- // // : ''
957
- // const axisX = data.groupScale(data.event.groupLabel) ?? 0
958
-
959
- // const lineData = createLineData({
960
- // groupLabel: data.event.groupLabel,
961
- // axisX,
962
- // axisHeight: data.gridAxesSize.height,
963
- // fullParams: data.fullParams,
964
- // })
965
- // renderLine({
966
- // selection: axisSelection,
967
- // pluginName: name,
968
- // lineData,
969
- // fullParams: data.fullParams,
970
- // fullChartParams: data.fullChartParams
971
- // })
972
- // const labelData = createLabelData({
973
- // groupLabel: data.event.groupLabel,
974
- // axisX,
975
- // fullParams: data.fullParams
976
- // })
977
- // const labelSelection = renderLabel({
978
- // selection: axisSelection,
979
- // labelData,
980
- // fullParams: data.fullParams,
981
- // fullChartParams: data.fullChartParams,
982
- // gridAxesReverseTransformValue: data.gridAxesReverseTransform.value,
983
- // textSizePx: data.textSizePx
984
- // })
985
-
986
- // // label的事件
987
- // labelSelection
988
- // .on('mouseover', (event, datum) => {
989
-
990
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
991
-
992
- // subject.event$.next({
993
- // type: 'grid',
994
- // pluginName: name,
995
- // eventName: 'mouseover',
996
- // highlightTarget: data.highlightTarget,
997
- // datum: null,
998
- // gridIndex: 0, // @Q@ 暫不處理
999
- // series: [],
1000
- // seriesIndex: -1,
1001
- // seriesLabel: '',
1002
- // groups: data.event.groups,
1003
- // groupIndex,
1004
- // groupLabel,
1005
- // event,
1006
- // data: data.computedData
1007
- // })
1008
- // })
1009
- // .on('mousemove', (event, datum) => {
1010
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1011
-
1012
- // subject.event$.next({
1013
- // type: 'grid',
1014
- // pluginName: name,
1015
- // eventName: 'mousemove',
1016
- // highlightTarget: data.highlightTarget,
1017
- // datum: null,
1018
- // gridIndex: 0, // @Q@ 暫不處理
1019
- // series: [],
1020
- // seriesIndex: -1,
1021
- // seriesLabel: '',
1022
- // groups: data.event.groups,
1023
- // groupIndex,
1024
- // groupLabel,
1025
- // event,
1026
- // data: data.computedData
1027
- // })
1028
- // })
1029
- // .on('mouseout', (event, datum) => {
1030
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1031
-
1032
- // subject.event$.next({
1033
- // type: 'grid',
1034
- // pluginName: name,
1035
- // eventName: 'mouseout',
1036
- // highlightTarget: data.highlightTarget,
1037
- // datum: null,
1038
- // gridIndex: 0, // @Q@ 暫不處理
1039
- // series: [],
1040
- // seriesIndex: -1,
1041
- // seriesLabel: '',
1042
- // groups: data.event.groups,
1043
- // groupIndex,
1044
- // groupLabel,
1045
- // event,
1046
- // data: data.computedData
1047
- // })
1048
- // })
1049
- // .on('click', (event, datum) => {
1050
- // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1051
-
1052
- // subject.event$.next({
1053
- // type: 'grid',
1054
- // pluginName: name,
1055
- // eventName: 'click',
1056
- // highlightTarget: data.highlightTarget,
1057
- // datum: null,
1058
- // gridIndex: 0, // @Q@ 暫不處理
1059
- // series: [],
1060
- // seriesIndex: -1,
1061
- // seriesLabel: '',
1062
- // groups: data.event.groups,
1063
- // groupIndex,
1064
- // groupLabel,
1065
- // event,
1066
- // data: data.computedData
1067
- // })
1068
- // })
1069
- // })
1070
-
1071
-
1072
-
1073
- const rootRectMouseout$ = d3EventObservable(rootRectSelection, 'mouseout').pipe(
1074
- takeUntil(destroy$),
1075
- )
1076
-
1077
- combineLatest({
1078
- rootRectMouseout: rootRectMouseout$,
1079
- axesSelection: axesSelection$,
1080
- }).pipe(
1081
- takeUntil(destroy$),
1082
- switchMap(async d => d)
1083
- ).subscribe(data => {
1084
- setTimeout(() => {
1085
- // @Q@ workaround - 不知為何和 label 會有衝突,當滑鼠移動到 label 上時,會觸發 mouseout 事件
1086
- if (isLabelMouseover == true) {
1087
- return
1088
- }
1089
-
1090
- removeLine(data.axesSelection)
1091
- removeLabel(data.axesSelection)
1092
- })
1093
- })
1094
-
1095
- return () => {
1096
- destroy$.next(undefined)
1097
- rootRectSelection.remove()
1098
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ // of,
4
+ iif,
5
+ EMPTY,
6
+ combineLatest,
7
+ switchMap,
8
+ map,
9
+ filter,
10
+ first,
11
+ takeUntil,
12
+ distinctUntilChanged,
13
+ shareReplay,
14
+ Subject,
15
+ Observable } from 'rxjs'
16
+ import {
17
+ defineGridPlugin } from '../../../lib/core'
18
+ import type { DefinePluginConfig } from '../../../lib/core-types'
19
+ import type {
20
+ TransformData,
21
+ DataFormatterGrid,
22
+ ChartParams } from '../../../lib/core-types'
23
+ import { DEFAULT_GROUP_AUX_PARAMS } from '../defaults'
24
+ import { parseTickFormatValue } from '../../utils/d3Utils'
25
+ import { measureTextWidth } from '../../utils/commonUtils'
26
+ import { getColor, getClassName, getUniID } from '../../utils/orbchartsUtils'
27
+ import { d3EventObservable } from '../../utils/observables'
28
+ import { gridGroupPositionObservable } from '../gridObservables'
29
+ import type { GroupAuxParams } from '../../../lib/plugins-basic-types'
30
+ import { gridSelectionsObservable } from '../gridObservables'
31
+ import { renderTspansOnAxis } from '../../utils/d3Graphics'
32
+ import { LAYER_INDEX_OF_AUX } from '../../const'
33
+
34
+ interface LineDatum {
35
+ id: string
36
+ x1: number
37
+ x2: number
38
+ y1: number
39
+ y2: number
40
+ }
41
+
42
+ interface LabelDatum {
43
+ id: string
44
+ text: string
45
+ textArr: string[]
46
+ textWidth: number
47
+ textHeight: number
48
+ x: number
49
+ y: number
50
+ }
51
+
52
+ const pluginName = 'GroupAux'
53
+ const labelClassName = getClassName(pluginName, 'label-box')
54
+
55
+ const pluginConfig: DefinePluginConfig<typeof pluginName, typeof DEFAULT_GROUP_AUX_PARAMS> = {
56
+ name: pluginName,
57
+ defaultParams: DEFAULT_GROUP_AUX_PARAMS,
58
+ layerIndex: LAYER_INDEX_OF_AUX,
59
+ validator: (params, { validateColumns }) => {
60
+ const result = validateColumns(params, {
61
+ showLine: {
62
+ toBeTypes: ['boolean']
63
+ },
64
+ showLabel: {
65
+ toBeTypes: ['boolean']
66
+ },
67
+ lineDashArray: {
68
+ toBeTypes: ['string']
69
+ },
70
+ lineColorType: {
71
+ toBeOption: 'ColorType'
72
+ },
73
+ labelColorType: {
74
+ toBeOption: 'ColorType'
75
+ },
76
+ labelTextColorType: {
77
+ toBeOption: 'ColorType'
78
+ },
79
+ labelTextFormat: {
80
+ toBeTypes: ['string', 'Function']
81
+ },
82
+ labelPadding: {
83
+ toBeTypes: ['number']
84
+ },
85
+ labelRotate: {
86
+ toBeTypes: ['number']
87
+ }
88
+ })
89
+ return result
90
+ }
91
+ }
92
+
93
+ function createLineData ({ groupLabel, axisX, axisHeight, fullParams }: {
94
+ groupLabel: string
95
+ axisX: number
96
+ axisHeight: number
97
+ fullParams: GroupAuxParams
98
+ }): LineDatum[] {
99
+ return fullParams.showLine && groupLabel
100
+ ? [{
101
+ id: groupLabel,
102
+ x1: axisX,
103
+ x2: axisX,
104
+ y1: 0,
105
+ y2: axisHeight
106
+ }]
107
+ : []
108
+ }
109
+
110
+ function createLabelData ({ groupLabel, axisX, fullParams, textSizePx, rowAmount }: {
111
+ groupLabel: string
112
+ axisX: number
113
+ fullParams: GroupAuxParams
114
+ textSizePx: number
115
+ rowAmount: number
116
+ }) {
117
+ const text = parseTickFormatValue(groupLabel, fullParams.labelTextFormat)
118
+ const textArr = text.split('\n')
119
+ const maxLengthText = textArr.reduce((acc, current) => current.length > acc.length ? current : acc, '')
120
+ const textWidth = measureTextWidth(maxLengthText, textSizePx)
121
+ const textHeight = textSizePx * textArr.length
122
+ return fullParams.showLabel && groupLabel
123
+ ? [{
124
+ id: groupLabel,
125
+ x: axisX,
126
+ y: - fullParams.labelPadding * rowAmount, // rowAmount 是為了把外部 container 的變形逆轉回來
127
+ text,
128
+ textArr,
129
+ textWidth,
130
+ textHeight
131
+ }]
132
+ : []
133
+ }
134
+
135
+ function renderLine ({ selection, pluginName, lineData, fullParams, fullChartParams }: {
136
+ selection: d3.Selection<any, string, any, unknown>
137
+ pluginName: string
138
+ lineData: LineDatum[]
139
+ fullParams: GroupAuxParams
140
+ fullChartParams: ChartParams
141
+ }) {
142
+ const gClassName = getClassName(pluginName, 'auxline')
143
+ const auxLineSelection = selection
144
+ .selectAll<SVGLineElement, LineDatum>(`line.${gClassName}`)
145
+ .data(lineData)
146
+ .join(
147
+ enter => {
148
+ return enter
149
+ .append('line')
150
+ .classed(gClassName, true)
151
+ .style('stroke-width', 1)
152
+ .style('pointer-events', 'none')
153
+ .style('vector-effect', 'non-scaling-stroke')
154
+ .attr('x1', d => d.x1)
155
+ .attr('y1', d => d.y1)
156
+ .attr('x2', d => d.x2)
157
+ .attr('y2', d => d.y2)
158
+ },
159
+ update => {
160
+ const updateSelection = update
161
+ .transition()
162
+ .duration(50)
163
+ .attr('x1', d => d.x1)
164
+ .attr('y1', d => d.y1)
165
+ .attr('x2', d => d.x2)
166
+ .attr('y2', d => d.y2)
167
+ return updateSelection
168
+ },
169
+ exit => exit.remove()
170
+ )
171
+ .style('stroke', d => getColor(fullParams.lineColorType, fullChartParams))
172
+ .style('stroke-dasharray', fullParams.lineDashArray ?? 'none')
173
+
174
+ return auxLineSelection
175
+ }
176
+
177
+ function removeLine (selection: d3.Selection<any, string, any, unknown>) {
178
+ const update = selection
179
+ .selectAll<SVGLineElement, LineDatum>('line')
180
+ .data([])
181
+
182
+ update.exit().remove()
183
+ }
184
+
185
+ function renderLabel ({ selection, labelData, fullParams, fullDataFormatter, fullChartParams, textReverseTransformWithRotate, textSizePx }: {
186
+ selection: d3.Selection<any, string, any, unknown>
187
+ labelData: LabelDatum[]
188
+ fullParams: GroupAuxParams
189
+ fullDataFormatter: DataFormatterGrid
190
+ fullChartParams: ChartParams
191
+ // gridAxesReverseTransformValue: string
192
+ textReverseTransformWithRotate: string
193
+ textSizePx: number
194
+ }) {
195
+ // const rectHeight = textSizePx + 6
196
+
197
+ const axisLabelSelection = selection
198
+ .selectAll<SVGGElement, LabelDatum>(`g.${labelClassName}`)
199
+ .data(labelData)
200
+ .join(
201
+ enter => {
202
+ return enter
203
+ .append('g')
204
+ .classed(labelClassName, true)
205
+ .style('cursor', 'pointer')
206
+ .attr("transform", (d, i) => {
207
+ return `translate(${d.x}, ${d.y})`
208
+ })
209
+ },
210
+ update => {
211
+ const updateSelection = update
212
+ .transition()
213
+ .duration(50)
214
+ .attr("transform", (d, i) => {
215
+ return `translate(${d.x}, ${d.y})`
216
+ })
217
+ return updateSelection
218
+ },
219
+ exit => exit.remove()
220
+ )
221
+ .each((datum, i, n) => {
222
+ // const rectWidth = measureTextWidth(datum.text, textSizePx) + 12
223
+ const rectWidth = datum.textWidth + 12
224
+ const rectHeight = datum.textHeight + 6
225
+ // -- label偏移位置 --
226
+ let rectX = - rectWidth / 2
227
+ let rectY = -2
228
+ let x = rectX
229
+ let y = rectY - 3 // 奇怪的偏移修正
230
+ if (fullDataFormatter.groupAxis.position === 'bottom') {
231
+ rectX = fullParams.labelRotate
232
+ ? - rectWidth + rectHeight // 有傾斜時以末端對齊(+height是為了修正移動太多)
233
+ : - rectWidth / 2
234
+ rectY = 2
235
+ x = rectX
236
+ y = rectY - 3 // 奇怪的偏移修正
237
+ } else if (fullDataFormatter.groupAxis.position === 'left') {
238
+ rectX = - rectWidth + 2
239
+ rectY = - rectHeight / 2
240
+ x = rectX
241
+ y = rectY - 3 // 奇怪的偏移修正
242
+ if (fullParams.labelRotate) {
243
+ y += rectHeight
244
+ }
245
+ } else if (fullDataFormatter.groupAxis.position === 'right') {
246
+ rectX = - 2
247
+ rectY = - rectHeight / 2
248
+ x = rectX
249
+ y = rectY - 3 // 奇怪的偏移修正
250
+ if (fullParams.labelRotate) {
251
+ y += rectHeight
252
+ }
253
+ } else if (fullDataFormatter.groupAxis.position === 'top') {
254
+ rectX = fullParams.labelRotate
255
+ ? - rectWidth + rectHeight // 有傾斜時以末端對齊(+height是為了修正移動太多)
256
+ : - rectWidth / 2
257
+ rectY = - rectHeight + 6
258
+ x = - rectHeight
259
+ y = rectY - 3 // 奇怪的偏移修正
260
+ }
261
+
262
+ // -- rect --
263
+ d3.select(n[i])
264
+ .selectAll<SVGRectElement, LabelDatum>('rect')
265
+ .data([datum])
266
+ .join(
267
+ enter => enter.append('rect')
268
+ .style('cursor', 'pointer')
269
+ .attr('rx', 5)
270
+ .attr('ry', 5),
271
+ update => update,
272
+ exit => exit.remove()
273
+ )
274
+ .attr('width', d => `${rectWidth}px`)
275
+ .attr('height', `${rectHeight}px`)
276
+ .attr('fill', d => getColor(fullParams.labelColorType, fullChartParams))
277
+ .attr('x', x)
278
+ .attr('y', y) // 奇怪的偏移修正
279
+ .style('transform', textReverseTransformWithRotate)
280
+
281
+ // const rectUpdate = d3.select(n[i])
282
+ // .selectAll<SVGRectElement, LabelDatum>('rect')
283
+ // .data([datum])
284
+ // const rectEnter = rectUpdate
285
+ // .enter()
286
+ // .append('rect')
287
+ // .attr('height', `${rectHeight}px`)
288
+ // .attr('fill', d => getColor(fullParams.labelColorType, fullChartParams))
289
+ // .attr('x', rectX)
290
+ // .attr('y', rectY - 3) // 奇怪的偏移修正
291
+ // .attr('rx', 5)
292
+ // .attr('ry', 5)
293
+ // .style('cursor', 'pointer')
294
+ // // .style('pointer-events', 'none')
295
+ // const rect = rectUpdate.merge(rectEnter)
296
+ // .attr('width', d => `${rectWidth}px`)
297
+ // .style('transform', textReverseTransformWithRotate)
298
+ // rectUpdate.exit().remove()
299
+
300
+ // -- text --
301
+ d3.select(n[i])
302
+ .selectAll<SVGTextElement, LabelDatum>('text')
303
+ .data([datum])
304
+ .join(
305
+ enter => enter.append('text')
306
+ .style('dominant-baseline', 'hanging')
307
+ .style('cursor', 'pointer'),
308
+ update => update,
309
+ exit => exit.remove()
310
+ )
311
+ .style('transform', textReverseTransformWithRotate)
312
+ .attr('fill', d => getColor(fullParams.labelTextColorType, fullChartParams))
313
+ .attr('font-size', fullChartParams.styles.textSize)
314
+ .attr('x', x + 6)
315
+ .attr('y', y + 3)
316
+ .each((d, i, n) => {
317
+ renderTspansOnAxis(d3.select(n[i]), {
318
+ textArr: datum.textArr,
319
+ textSizePx,
320
+ groupAxisPosition: fullDataFormatter.groupAxis.position,
321
+ isContainerRotated: false
322
+ })
323
+ })
324
+
325
+ // const textUpdate = d3.select(n[i])
326
+ // .selectAll<SVGTextElement, LabelDatum>('text')
327
+ // .data([datum])
328
+ // const textEnter = textUpdate
329
+ // .enter()
330
+ // .append('text')
331
+ // .style('dominant-baseline', 'hanging')
332
+ // .style('cursor', 'pointer')
333
+ // // .style('pointer-events', 'none')
334
+ // const text = textUpdate.merge(textEnter)
335
+ // // .text(d => d.text)
336
+ // .style('transform', textReverseTransformWithRotate)
337
+ // .attr('fill', d => getColor(fullParams.labelTextColorType, fullChartParams))
338
+ // .attr('font-size', fullChartParams.styles.textSize)
339
+ // .attr('x', rectX + 6)
340
+ // .attr('y', rectY)
341
+ // textUpdate.exit().remove()
342
+
343
+ // text.each((d, i, n) => {
344
+ // renderTspansOnAxis(d3.select(n[i]), {
345
+ // textArr: datum.textArr,
346
+ // textSizePx,
347
+ // groupAxisPosition: fullDataFormatter.groupAxis.position
348
+ // })
349
+ // })
350
+ })
351
+
352
+ return axisLabelSelection
353
+ }
354
+
355
+ function removeLabel (selection: d3.Selection<any, string, any, unknown>) {
356
+ const gUpdate = selection
357
+ .selectAll<SVGGElement, LabelDatum>(`g.${labelClassName}`)
358
+ .data([])
359
+
360
+ gUpdate.exit().remove()
361
+ }
362
+
363
+
364
+ export const GroupAux = defineGridPlugin(pluginConfig)(({ selection, rootSelection, name, subject, observer }) => {
365
+ const destroy$ = new Subject()
366
+
367
+ let isLabelMouseover = false
368
+
369
+ const rootRectSelection: d3.Selection<SVGRectElement, any, any, any> = rootSelection
370
+ .insert('rect', 'g')
371
+ .classed(getClassName(pluginName, 'rect'), true)
372
+ .attr('opacity', 0)
373
+
374
+ // const axisSelection: d3.Selection<SVGGElement, any, any, any> = selection
375
+ // .append('g')
376
+
377
+ const {
378
+ seriesSelection$,
379
+ axesSelection$,
380
+ defsSelection$,
381
+ graphicGSelection$
382
+ } = gridSelectionsObservable({
383
+ selection,
384
+ pluginName,
385
+ clipPathID: 'test',
386
+ seriesLabels$: observer.isSeriesSeprate$.pipe(
387
+ switchMap(isSeriesSeprate => {
388
+ return iif(
389
+ () => isSeriesSeprate,
390
+ observer.seriesLabels$,
391
+ // 如果沒分開的話只取一筆
392
+ observer.seriesLabels$.pipe(
393
+ map(d => [d[0]])
394
+ )
395
+ )
396
+ })
397
+ ),
398
+ gridContainerPosition$: observer.gridContainerPosition$,
399
+ gridAxesTransform$: observer.gridAxesTransform$,
400
+ gridGraphicTransform$: observer.gridGraphicTransform$
401
+ })
402
+
403
+ observer.layout$.pipe(
404
+ takeUntil(destroy$),
405
+ ).subscribe(d => {
406
+ rootRectSelection
407
+ .attr('width', d.rootWidth)
408
+ .attr('height', d.rootHeight)
409
+ })
410
+
411
+ // observer.gridAxesTransform$
412
+ // .pipe(
413
+ // takeUntil(destroy$),
414
+ // map(d => d.value),
415
+ // distinctUntilChanged()
416
+ // ).subscribe(d => {
417
+ // axisSelection
418
+ // .style('transform', d)
419
+ // })
420
+
421
+ // const visibleComputedData$ = observer.computedData$.pipe(
422
+ // takeUntil(destroy$),
423
+ // map(data => {
424
+ // const visibleComputedData = data
425
+ // .map(d => {
426
+ // return d.filter(_d => {
427
+ // return _d.visible == true
428
+ // })
429
+ // })
430
+ // .filter(d => d.length)
431
+ // // console.log('visibleComputedData', visibleComputedData)
432
+ // return visibleComputedData
433
+ // })
434
+ // )
435
+
436
+ // const SeriesDataMap$ = visibleComputedData$.pipe(
437
+ // map(d => makeGridSeriesDataMap(d))
438
+ // )
439
+
440
+ // const GroupDataMap$ = visibleComputedData$.pipe(
441
+ // map(d => makeGridGroupDataMap(d))
442
+ // )
443
+
444
+ // const contentTransform$: Observable<string> = new Observable(subscriber => {
445
+ // combineLatest({
446
+ // fullParams: observer.fullParams$,
447
+ // gridAxesTransform: observer.gridAxesTransform$
448
+ // }).pipe(
449
+ // takeUntil(destroy$),
450
+ // // 轉換後會退訂前一個未完成的訂閱事件,因此可以取到「同時間」最後一次的訂閱事件
451
+ // switchMap(async (d) => d),
452
+ // ).subscribe(data => {
453
+
454
+ // const transformData = Object.assign({}, data.gridAxesTransform)
455
+
456
+ // // const value = getAxesTransformValue({
457
+ // // translate: [0, 0],
458
+ // // scale: [transformData.scale[0] * -1, transformData.scale[1] * -1],
459
+ // // rotate: transformData.rotate * -1,
460
+ // // rotateX: transformData.rotateX * -1,
461
+ // // rotateY: transformData.rotateY * -1
462
+ // // })
463
+
464
+ // subscriber.next(transformData.value)
465
+ // })
466
+ // })
467
+ // const reverseTransform$: Observable<TransformData> = observer.gridAxesTransform$.pipe(
468
+ // takeUntil(destroy$),
469
+ // map(d => {
470
+ // const translate: [number, number] = [d.translate[0] * -1, d.translate[1] * -1]
471
+ // const scale: [number, number] = [d.scale[0] * -1, d.scale[1] * -1]
472
+ // const rotate = d.rotate * -1
473
+ // const rotateX = d.rotateX * -1
474
+ // const rotateY = d.rotateY * -1
475
+ // return {
476
+ // translate,
477
+ // scale,
478
+ // rotate,
479
+ // rotateX,
480
+ // rotateY,
481
+ // value: ''
482
+ // }
483
+ // }),
484
+ // )
485
+ // const contentTransform$ = combineLatest({
486
+ // fullParams: observer.fullParams$,
487
+ // reverseTransform: reverseTransform$
488
+ // }).pipe(
489
+ // takeUntil(destroy$),
490
+ // switchMap(async data => {
491
+ // const translate = [0, 0]
492
+ // return `translate(${translate[0]}px, ${translate[1]}px) rotate(${data.reverseTransform.rotate}deg) rotateX(${data.reverseTransform.rotateX}deg) rotateY(${data.reverseTransform.rotateY}deg)`
493
+ // }),
494
+ // distinctUntilChanged()
495
+ // )
496
+
497
+ // const groupScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
498
+ // combineLatest({
499
+ // fullDataFormatter: observer.fullDataFormatter$,
500
+ // gridAxesSize: observer.gridAxesSize$,
501
+ // computedData: observer.computedData$
502
+ // }).pipe(
503
+ // takeUntil(destroy$),
504
+ // switchMap(async (d) => d),
505
+ // ).subscribe(data => {
506
+ // const groupMin = 0
507
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
508
+ // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
509
+ // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
510
+ // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
511
+ // const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'auto'
512
+ // ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
513
+ // : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
514
+
515
+ // const groupingLength = data.computedData[0]
516
+ // ? data.computedData[0].length
517
+ // : 0
518
+
519
+ // let _labels = data.fullDataFormatter.seriesDirection === 'row'
520
+ // // ? data.fullDataFormatter.columnLabels
521
+ // // : data.fullDataFormatter.rowLabels
522
+ // ? (data.computedData[0] ?? []).map(d => d.groupLabel)
523
+ // : data.computedData.map(d => d[0].groupLabel)
524
+
525
+ // const axisLabels = new Array(groupingLength).fill(0)
526
+ // .map((d, i) => {
527
+ // return _labels[i] != null
528
+ // ? _labels[i]
529
+ // : String(i) // 沒有label則用序列號填充
530
+ // })
531
+ // .filter((d, i) => {
532
+ // return i >= groupScaleDomainMin && i <= groupScaleDomainMax
533
+ // })
534
+
535
+
536
+ // const padding = data.fullDataFormatter.groupAxis.scalePadding
537
+
538
+ // const groupScale = createLabelToAxisScale({
539
+ // axisLabels,
540
+ // axisWidth: data.gridAxesSize.width,
541
+ // padding
542
+ // })
543
+
544
+ // subscriber.next(groupScale)
545
+ // })
546
+ // })
547
+
548
+ // const groupScaleDomain$ = combineLatest({
549
+ // fullDataFormatter: observer.fullDataFormatter$,
550
+ // gridAxesSize: observer.gridAxesSize$,
551
+ // computedData: observer.computedData$
552
+ // }).pipe(
553
+ // takeUntil(destroy$),
554
+ // switchMap(async (d) => d),
555
+ // map(data => {
556
+ // const groupMin = 0
557
+ // const groupMax = data.computedData[0] ? data.computedData[0].length - 1 : 0
558
+ // // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] === 'auto'
559
+ // // ? groupMin - data.fullDataFormatter.groupAxis.scalePadding
560
+ // // : data.fullDataFormatter.groupAxis.scaleDomain[0] as number - data.fullDataFormatter.groupAxis.scalePadding
561
+ // const groupScaleDomainMin = data.fullDataFormatter.groupAxis.scaleDomain[0] - data.fullDataFormatter.groupAxis.scalePadding
562
+ // const groupScaleDomainMax = data.fullDataFormatter.groupAxis.scaleDomain[1] === 'max'
563
+ // ? groupMax + data.fullDataFormatter.groupAxis.scalePadding
564
+ // : data.fullDataFormatter.groupAxis.scaleDomain[1] as number + data.fullDataFormatter.groupAxis.scalePadding
565
+
566
+ // return [groupScaleDomainMin, groupScaleDomainMax]
567
+ // }),
568
+ // shareReplay(1)
569
+ // )
570
+
571
+ const groupScale$ = combineLatest({
572
+ groupScaleDomainValue: observer.groupScaleDomainValue$,
573
+ gridAxesSize: observer.gridAxesSize$
574
+ }).pipe(
575
+ takeUntil(destroy$),
576
+ switchMap(async (d) => d),
577
+ map(data => {
578
+ const groupScale: d3.ScaleLinear<number, number> = d3.scaleLinear()
579
+ .domain(data.groupScaleDomainValue)
580
+ .range([0, data.gridAxesSize.width])
581
+ return groupScale
582
+ })
583
+ )
584
+
585
+ // // 取得事件座標的group資料
586
+ // const gridGroupPositionFn$ = gridGroupPositionFnObservable({
587
+ // fullDataFormatter$: observer.fullDataFormatter$,
588
+ // gridAxesSize$: observer.gridAxesSize$,
589
+ // computedData$: observer.computedData$,
590
+ // fullChartParams$: observer.fullChartParams$,
591
+ // })
592
+
593
+ const highlightTarget$ = observer.fullChartParams$.pipe(
594
+ takeUntil(destroy$),
595
+ map(d => d.highlightTarget),
596
+ distinctUntilChanged()
597
+ )
598
+
599
+ // combineLatest({
600
+ // computedData: observer.computedData$,
601
+ // gridAxesSize: observer.gridAxesSize$,
602
+ // fullParams: observer.fullParams$,
603
+ // fullChartParams: observer.fullChartParams$,
604
+ // highlightTarget: highlightTarget$,
605
+ // SeriesDataMap: observer.SeriesDataMap$,
606
+ // GroupDataMap: observer.GroupDataMap$,
607
+ // gridGroupPositionFn: gridGroupPositionFn$,
608
+ // groupScale: groupScale$,
609
+ // }).pipe(
610
+ // takeUntil(destroy$),
611
+ // switchMap(async (d) => d),
612
+ // ).subscribe(data => {
613
+
614
+ // // store.selection
615
+ // rootSelection
616
+ // .on('mouseover', (event, datum) => {
617
+ // // event.stopPropagation()
618
+
619
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
620
+
621
+ // subject.event$.next({
622
+ // type: 'grid',
623
+ // pluginName: name,
624
+ // eventName: 'mouseover',
625
+ // highlightTarget: data.highlightTarget,
626
+ // datum: null,
627
+ // gridIndex: 0,
628
+ // series: [],
629
+ // seriesIndex: -1,
630
+ // seriesLabel: '',
631
+ // group: data.GroupDataMap.get(groupLabel) ?? [],
632
+ // // group: [],
633
+ // groupIndex,
634
+ // groupLabel,
635
+ // event,
636
+ // data: data.computedData
637
+ // })
638
+ // })
639
+ // .on('mousemove', (event, datum) => {
640
+ // // event.stopPropagation()
641
+
642
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
643
+
644
+ // subject.event$.next({
645
+ // type: 'grid',
646
+ // pluginName: name,
647
+ // eventName: 'mousemove',
648
+ // highlightTarget: data.highlightTarget,
649
+ // datum: null,
650
+ // gridIndex: 0,
651
+ // series: [],
652
+ // seriesIndex: -1,
653
+ // seriesLabel: '',
654
+ // group: data.GroupDataMap.get(groupLabel) ?? [],
655
+ // // group: [],
656
+ // groupIndex,
657
+ // groupLabel,
658
+ // event,
659
+ // data: data.computedData
660
+ // })
661
+ // })
662
+ // .on('mouseout', (event, datum) => {
663
+ // // event.stopPropagation()
664
+
665
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
666
+
667
+ // subject.event$.next({
668
+ // type: 'grid',
669
+ // pluginName: name,
670
+ // eventName: 'mouseout',
671
+ // highlightTarget: data.highlightTarget,
672
+ // datum: null,
673
+ // gridIndex: 0,
674
+ // series: [],
675
+ // seriesIndex: -1,
676
+ // seriesLabel: '',
677
+ // group: data.GroupDataMap.get(groupLabel) ?? [],
678
+ // // group: [],
679
+ // groupIndex,
680
+ // groupLabel,
681
+ // event,
682
+ // data: data.computedData
683
+ // })
684
+ // })
685
+ // .on('click', (event, datum) => {
686
+ // event.stopPropagation()
687
+
688
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
689
+
690
+ // subject.event$.next({
691
+ // type: 'grid',
692
+ // pluginName: name,
693
+ // eventName: 'click',
694
+ // highlightTarget: data.highlightTarget,
695
+ // datum: null,
696
+ // gridIndex: 0,
697
+ // series: [],
698
+ // seriesIndex: -1,
699
+ // seriesLabel: '',
700
+ // // group: data.GroupDataMap.get(groupLabel) ?? [],
701
+ // group: [],
702
+ // groupIndex,
703
+ // groupLabel,
704
+ // event,
705
+ // data: data.computedData
706
+ // })
707
+ // })
708
+
709
+ // // barSelection$.next(barSelection!)
710
+ // })
711
+
712
+ const rootMousemove$: Observable<any> = d3EventObservable(rootSelection, 'mousemove').pipe(
713
+ takeUntil(destroy$),
714
+ )
715
+
716
+ // const mousemoveGroupLabel$ = combineLatest({
717
+ // rootMousemove: rootMousemove$,
718
+ // gridGroupPositionFn: gridGroupPositionFn$,
719
+ // }).pipe(
720
+ // takeUntil(destroy$),
721
+ // switchMap(async d => d),
722
+ // map(data => {
723
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(data.rootMousemove)
724
+ // return { groupIndex, groupLabel }
725
+ // }),
726
+ // shareReplay(1)
727
+ // )
728
+
729
+
730
+ const textReverseTransform$ = combineLatest({
731
+ gridAxesReverseTransform: observer.gridAxesReverseTransform$,
732
+ gridContainerPosition: observer.gridContainerPosition$
733
+ }).pipe(
734
+ takeUntil(destroy$),
735
+ switchMap(async (d) => d),
736
+ map(data => {
737
+ // const axisReverseTranslateValue = `translate(${data.gridAxesReverseTransform.translate[0]}px, ${data.gridAxesReverseTransform.translate[1]}px)`
738
+ const axesRotateXYReverseValue = `rotateX(${data.gridAxesReverseTransform.rotateX}deg) rotateY(${data.gridAxesReverseTransform.rotateY}deg)`
739
+ const axesRotateReverseValue = `rotate(${data.gridAxesReverseTransform.rotate}deg)`
740
+ const containerScaleReverseValue = `scale(${1 / data.gridContainerPosition[0].scale[0]}, ${1 / data.gridContainerPosition[0].scale[1]})`
741
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale)
742
+ return `${axesRotateXYReverseValue} ${axesRotateReverseValue} ${containerScaleReverseValue}`
743
+ }),
744
+ distinctUntilChanged()
745
+ )
746
+
747
+ const textReverseTransformWithRotate$ = combineLatest({
748
+ textReverseTransform: textReverseTransform$,
749
+ fullParams: observer.fullParams$,
750
+ }).pipe(
751
+ takeUntil(destroy$),
752
+ switchMap(async (d) => d),
753
+ map(data => {
754
+ // 必須按照順序(先抵消外層rotate,再抵消最外層scale,最後再做本身的rotate)
755
+ return `${data.textReverseTransform} rotate(${data.fullParams.labelRotate}deg)`
756
+ })
757
+ )
758
+
759
+ const columnAmount$ = observer.gridContainerPosition$.pipe(
760
+ takeUntil(destroy$),
761
+ map(gridContainerPosition => {
762
+ const maxColumnIndex = gridContainerPosition.reduce((acc, current) => {
763
+ return current.columnIndex > acc ? current.columnIndex : acc
764
+ }, 0)
765
+ return maxColumnIndex + 1
766
+ }),
767
+ distinctUntilChanged()
768
+ )
769
+
770
+ const rowAmount$ = observer.gridContainerPosition$.pipe(
771
+ takeUntil(destroy$),
772
+ map(gridContainerPosition => {
773
+ const maxRowIndex = gridContainerPosition.reduce((acc, current) => {
774
+ return current.rowIndex > acc ? current.rowIndex : acc
775
+ }, 0)
776
+ return maxRowIndex + 1
777
+ }),
778
+ distinctUntilChanged()
779
+ )
780
+
781
+ const gridGroupPosition$ = gridGroupPositionObservable({
782
+ rootSelection,
783
+ fullDataFormatter$: observer.fullDataFormatter$,
784
+ gridAxesSize$: observer.gridAxesSize$,
785
+ computedData$: observer.computedData$,
786
+ fullChartParams$: observer.fullChartParams$,
787
+ gridContainerPosition$: observer.gridContainerPosition$,
788
+ layout$: observer.layout$
789
+ }).pipe(
790
+ takeUntil(destroy$)
791
+ )
792
+
793
+ combineLatest({
794
+ axesSelection: axesSelection$,
795
+ columnAmount: columnAmount$,
796
+ rowAmount: rowAmount$,
797
+ layout: observer.layout$,
798
+ rootMousemove: rootMousemove$,
799
+ // gridGroupPositionFn: gridGroupPositionFn$,
800
+ gridGroupPosition: gridGroupPosition$,
801
+ computedData: observer.computedData$,
802
+ groupScale: groupScale$,
803
+ gridAxesSize: observer.gridAxesSize$,
804
+ fullParams: observer.fullParams$,
805
+ fullDataFormatter: observer.fullDataFormatter$,
806
+ fullChartParams: observer.fullChartParams$,
807
+ highlightTarget: highlightTarget$,
808
+ // gridAxesReverseTransform: observer.gridAxesReverseTransform$,
809
+ textReverseTransformWithRotate: textReverseTransformWithRotate$,
810
+ GroupDataMap: observer.GroupDataMap$,
811
+ textSizePx: observer.textSizePx$
812
+ }).pipe(
813
+ takeUntil(destroy$),
814
+ switchMap(async d => d),
815
+ ).subscribe(data => {
816
+ // // 由於event座標是基於底層的,但是container會有多欄,所以要重新計算
817
+ // const eventData = {
818
+ // offsetX: data.rootMousemove.offsetX * data.columnAmount % data.layout.rootWidth,
819
+ // offsetY: data.rootMousemove.offsetY * data.rowAmount % data.layout.rootHeight
820
+ // }
821
+ // 依event的座標取得group資料
822
+ const { groupIndex, groupLabel } = data.gridGroupPosition
823
+ // console.log('gridGroupPosition', groupIndex, groupLabel)
824
+ const axisX = data.groupScale(groupIndex) ?? 0
825
+ // console.log('axisX', axisX)
826
+ const lineData = createLineData({
827
+ groupLabel: groupLabel,
828
+ axisX,
829
+ axisHeight: data.gridAxesSize.height,
830
+ fullParams: data.fullParams,
831
+ })
832
+ // console.log('lineData', lineData)
833
+ renderLine({
834
+ // selection: axisSelection,
835
+ selection: data.axesSelection,
836
+ pluginName: name,
837
+ lineData,
838
+ fullParams: data.fullParams,
839
+ fullChartParams: data.fullChartParams
840
+ })
841
+ const labelData = createLabelData({
842
+ groupLabel: groupLabel,
843
+ axisX,
844
+ fullParams: data.fullParams,
845
+ textSizePx: data.textSizePx,
846
+ rowAmount: data.rowAmount
847
+ })
848
+ const labelSelection = renderLabel({
849
+ // selection: axisSelection,
850
+ selection: data.axesSelection,
851
+ labelData,
852
+ fullParams: data.fullParams,
853
+ fullDataFormatter: data.fullDataFormatter,
854
+ fullChartParams: data.fullChartParams,
855
+ // gridAxesReverseTransformValue: data.gridAxesReverseTransform.value,
856
+ textReverseTransformWithRotate: data.textReverseTransformWithRotate,
857
+ textSizePx: data.textSizePx,
858
+ })
859
+
860
+ // label的事件
861
+ labelSelection
862
+ .on('mouseover', (event, datum) => {
863
+ event.stopPropagation()
864
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
865
+
866
+ isLabelMouseover = true
867
+
868
+ subject.event$.next({
869
+ type: 'grid',
870
+ pluginName: name,
871
+ eventName: 'mouseover',
872
+ highlightTarget: data.highlightTarget,
873
+ datum: null,
874
+ gridIndex: 0,
875
+ series: [],
876
+ seriesIndex: -1,
877
+ seriesLabel: '',
878
+ group: data.GroupDataMap.get(groupLabel) ?? [],
879
+ groupIndex,
880
+ groupLabel,
881
+ event,
882
+ data: data.computedData
883
+ })
884
+ })
885
+ .on('mousemove', (event, datum) => {
886
+ event.stopPropagation()
887
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
888
+
889
+ subject.event$.next({
890
+ type: 'grid',
891
+ pluginName: name,
892
+ eventName: 'mousemove',
893
+ highlightTarget: data.highlightTarget,
894
+ datum: null,
895
+ gridIndex: 0,
896
+ series: [],
897
+ seriesIndex: -1,
898
+ seriesLabel: '',
899
+ group: data.GroupDataMap.get(groupLabel) ?? [],
900
+ groupIndex,
901
+ groupLabel,
902
+ event,
903
+ data: data.computedData
904
+ })
905
+ })
906
+ .on('mouseout', (event, datum) => {
907
+ event.stopPropagation()
908
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
909
+
910
+ isLabelMouseover = false
911
+
912
+ subject.event$.next({
913
+ type: 'grid',
914
+ pluginName: name,
915
+ eventName: 'mouseout',
916
+ highlightTarget: data.highlightTarget,
917
+ datum: null,
918
+ gridIndex: 0,
919
+ series: [],
920
+ seriesIndex: -1,
921
+ seriesLabel: '',
922
+ group: data.GroupDataMap.get(groupLabel) ?? [],
923
+ groupIndex,
924
+ groupLabel,
925
+ event,
926
+ data: data.computedData
927
+ })
928
+ })
929
+ .on('click', (event, datum) => {
930
+ event.stopPropagation()
931
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
932
+
933
+ subject.event$.next({
934
+ type: 'grid',
935
+ pluginName: name,
936
+ eventName: 'click',
937
+ highlightTarget: data.highlightTarget,
938
+ datum: null,
939
+ gridIndex: 0,
940
+ series: [],
941
+ seriesIndex: -1,
942
+ seriesLabel: '',
943
+ group: data.GroupDataMap.get(groupLabel) ?? [],
944
+ groupIndex,
945
+ groupLabel,
946
+ event,
947
+ data: data.computedData
948
+ })
949
+ })
950
+
951
+ })
952
+
953
+ // // -- highlight(無論highlightTarget設定為何,一律依從groupLabel來顯示) --
954
+ // combineLatest({
955
+ // event: subject.event$.pipe(
956
+ // filter(d => d.eventName === 'mouseover' || d.eventName === 'mousemove')
957
+ // ),
958
+ // computedData: observer.computedData$,
959
+ // groupScale: groupScale$,
960
+ // gridAxesSize: observer.gridAxesSize$,
961
+ // fullParams: observer.fullParams$,
962
+ // fullChartParams: observer.fullChartParams$,
963
+ // highlightTarget: highlightTarget$,
964
+ // gridAxesReverseTransform: observer.gridAxesReverseTransform$,
965
+ // GroupDataMap: observer.GroupDataMap$,
966
+ // gridGroupPositionFn: gridGroupPositionFn$,
967
+ // textSizePx: observer.textSizePx$
968
+ // }).pipe(
969
+ // takeUntil(destroy$),
970
+ // switchMap(async d => d)
971
+ // ).subscribe(data => {
972
+ // // const group = data.event.eventName === 'mouseover' || data.event.eventName === 'mousemove'
973
+ // // ? data.event.group
974
+ // // : []
975
+
976
+ // // const groupLabel = data.event.eventName === 'mouseover' || data.event.eventName === 'mousemove'
977
+ // // ? data.event.groupLabel
978
+ // // : ''
979
+ // const axisX = data.groupScale(data.event.groupLabel) ?? 0
980
+
981
+ // const lineData = createLineData({
982
+ // groupLabel: data.event.groupLabel,
983
+ // axisX,
984
+ // axisHeight: data.gridAxesSize.height,
985
+ // fullParams: data.fullParams,
986
+ // })
987
+ // renderLine({
988
+ // selection: axisSelection,
989
+ // pluginName: name,
990
+ // lineData,
991
+ // fullParams: data.fullParams,
992
+ // fullChartParams: data.fullChartParams
993
+ // })
994
+ // const labelData = createLabelData({
995
+ // groupLabel: data.event.groupLabel,
996
+ // axisX,
997
+ // fullParams: data.fullParams
998
+ // })
999
+ // const labelSelection = renderLabel({
1000
+ // selection: axisSelection,
1001
+ // labelData,
1002
+ // fullParams: data.fullParams,
1003
+ // fullChartParams: data.fullChartParams,
1004
+ // gridAxesReverseTransformValue: data.gridAxesReverseTransform.value,
1005
+ // textSizePx: data.textSizePx
1006
+ // })
1007
+
1008
+ // // label的事件
1009
+ // labelSelection
1010
+ // .on('mouseover', (event, datum) => {
1011
+
1012
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1013
+
1014
+ // subject.event$.next({
1015
+ // type: 'grid',
1016
+ // pluginName: name,
1017
+ // eventName: 'mouseover',
1018
+ // highlightTarget: data.highlightTarget,
1019
+ // datum: null,
1020
+ // gridIndex: 0,
1021
+ // series: [],
1022
+ // seriesIndex: -1,
1023
+ // seriesLabel: '',
1024
+ // group: data.event.group,
1025
+ // groupIndex,
1026
+ // groupLabel,
1027
+ // event,
1028
+ // data: data.computedData
1029
+ // })
1030
+ // })
1031
+ // .on('mousemove', (event, datum) => {
1032
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1033
+
1034
+ // subject.event$.next({
1035
+ // type: 'grid',
1036
+ // pluginName: name,
1037
+ // eventName: 'mousemove',
1038
+ // highlightTarget: data.highlightTarget,
1039
+ // datum: null,
1040
+ // gridIndex: 0,
1041
+ // series: [],
1042
+ // seriesIndex: -1,
1043
+ // seriesLabel: '',
1044
+ // group: data.event.group,
1045
+ // groupIndex,
1046
+ // groupLabel,
1047
+ // event,
1048
+ // data: data.computedData
1049
+ // })
1050
+ // })
1051
+ // .on('mouseout', (event, datum) => {
1052
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1053
+
1054
+ // subject.event$.next({
1055
+ // type: 'grid',
1056
+ // pluginName: name,
1057
+ // eventName: 'mouseout',
1058
+ // highlightTarget: data.highlightTarget,
1059
+ // datum: null,
1060
+ // gridIndex: 0,
1061
+ // series: [],
1062
+ // seriesIndex: -1,
1063
+ // seriesLabel: '',
1064
+ // group: data.event.group,
1065
+ // groupIndex,
1066
+ // groupLabel,
1067
+ // event,
1068
+ // data: data.computedData
1069
+ // })
1070
+ // })
1071
+ // .on('click', (event, datum) => {
1072
+ // const { groupIndex, groupLabel } = data.gridGroupPositionFn(event)
1073
+
1074
+ // subject.event$.next({
1075
+ // type: 'grid',
1076
+ // pluginName: name,
1077
+ // eventName: 'click',
1078
+ // highlightTarget: data.highlightTarget,
1079
+ // datum: null,
1080
+ // gridIndex: 0,
1081
+ // series: [],
1082
+ // seriesIndex: -1,
1083
+ // seriesLabel: '',
1084
+ // group: data.event.group,
1085
+ // groupIndex,
1086
+ // groupLabel,
1087
+ // event,
1088
+ // data: data.computedData
1089
+ // })
1090
+ // })
1091
+ // })
1092
+
1093
+
1094
+
1095
+ const rootRectMouseout$ = d3EventObservable(rootRectSelection, 'mouseout').pipe(
1096
+ takeUntil(destroy$),
1097
+ )
1098
+
1099
+ combineLatest({
1100
+ rootRectMouseout: rootRectMouseout$,
1101
+ axesSelection: axesSelection$,
1102
+ }).pipe(
1103
+ takeUntil(destroy$),
1104
+ switchMap(async d => d)
1105
+ ).subscribe(data => {
1106
+ setTimeout(() => {
1107
+ // @Q@ workaround - 不知為何和 label 會有衝突,當滑鼠移動到 label 上時,會觸發 mouseout 事件
1108
+ if (isLabelMouseover == true) {
1109
+ return
1110
+ }
1111
+
1112
+ removeLine(data.axesSelection)
1113
+ removeLabel(data.axesSelection)
1114
+ })
1115
+ })
1116
+
1117
+ return () => {
1118
+ destroy$.next(undefined)
1119
+ rootRectSelection.remove()
1120
+ }
1099
1121
  })