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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (143) hide show
  1. package/LICENSE +200 -200
  2. package/dist/lib/plugins-basic-types.d.ts +1 -0
  3. package/dist/orbcharts-plugins-basic.es.js +3461 -3468
  4. package/dist/orbcharts-plugins-basic.umd.js +17 -17
  5. package/dist/src/base/BaseBarStack.d.ts +1 -5
  6. package/dist/src/base/BaseBars.d.ts +1 -6
  7. package/dist/src/base/BaseBarsTriangle.d.ts +1 -6
  8. package/dist/src/base/BaseDots.d.ts +2 -8
  9. package/dist/src/base/BaseGroupAxis.d.ts +2 -16
  10. package/dist/src/base/BaseLegend.d.ts +2 -15
  11. package/dist/src/base/BaseLineAreas.d.ts +1 -4
  12. package/dist/src/base/BaseLines.d.ts +1 -4
  13. package/dist/src/base/BaseValueAxis.d.ts +2 -16
  14. package/dist/src/grid/defaults.d.ts +1 -1
  15. package/dist/src/grid/index.d.ts +0 -1
  16. package/dist/src/grid/plugins/BarStack.d.ts +1 -1
  17. package/dist/src/grid/plugins/Bars.d.ts +1 -1
  18. package/dist/src/grid/plugins/BarsPN.d.ts +1 -1
  19. package/dist/src/grid/plugins/BarsTriangle.d.ts +1 -1
  20. package/dist/src/grid/plugins/Dots.d.ts +1 -1
  21. package/dist/src/grid/plugins/GridLegend.d.ts +1 -1
  22. package/dist/src/grid/plugins/GroupAux.d.ts +1 -1
  23. package/dist/src/grid/plugins/GroupAxis.d.ts +1 -1
  24. package/dist/src/grid/plugins/LineAreas.d.ts +1 -1
  25. package/dist/src/grid/plugins/Lines.d.ts +1 -1
  26. package/dist/src/grid/plugins/ScalingArea.d.ts +1 -1
  27. package/dist/src/grid/plugins/ValueAxis.d.ts +1 -1
  28. package/dist/src/grid/plugins/ValueStackAxis.d.ts +1 -1
  29. package/dist/src/multiGrid/defaults.d.ts +1 -1
  30. package/dist/src/multiGrid/index.d.ts +0 -1
  31. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +1 -1
  32. package/dist/src/multiGrid/plugins/MultiBars.d.ts +1 -1
  33. package/dist/src/multiGrid/plugins/MultiBarsTriangle.d.ts +1 -1
  34. package/dist/src/multiGrid/plugins/MultiDots.d.ts +1 -1
  35. package/dist/src/multiGrid/plugins/MultiGridLegend.d.ts +1 -1
  36. package/dist/src/multiGrid/plugins/MultiGroupAxis.d.ts +1 -1
  37. package/dist/src/multiGrid/plugins/MultiLineAreas.d.ts +1 -1
  38. package/dist/src/multiGrid/plugins/MultiLines.d.ts +1 -1
  39. package/dist/src/multiGrid/plugins/MultiValueAxis.d.ts +1 -1
  40. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +1 -1
  41. package/dist/src/multiGrid/plugins/OverlappingValueAxes.d.ts +1 -1
  42. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +1 -1
  43. package/dist/src/noneData/defaults.d.ts +1 -1
  44. package/dist/src/noneData/index.d.ts +0 -1
  45. package/dist/src/noneData/plugins/Container.d.ts +1 -1
  46. package/dist/src/noneData/plugins/Tooltip.d.ts +1 -1
  47. package/dist/src/series/defaults.d.ts +1 -1
  48. package/dist/src/series/index.d.ts +0 -1
  49. package/dist/src/series/plugins/Bubbles.d.ts +1 -1
  50. package/dist/src/series/plugins/Pie.d.ts +1 -1
  51. package/dist/src/series/plugins/PieEventTexts.d.ts +1 -1
  52. package/dist/src/series/plugins/PieLabels.d.ts +1 -1
  53. package/dist/src/series/plugins/Rose.d.ts +1 -1
  54. package/dist/src/series/plugins/RoseLabels.d.ts +1 -1
  55. package/dist/src/series/plugins/SeriesLegend.d.ts +1 -1
  56. package/dist/src/tree/defaults.d.ts +1 -1
  57. package/dist/src/tree/index.d.ts +0 -1
  58. package/dist/src/tree/plugins/TreeLegend.d.ts +1 -1
  59. package/dist/src/tree/plugins/TreeMap.d.ts +1 -1
  60. package/lib/core-types.ts +7 -7
  61. package/lib/core.ts +6 -6
  62. package/lib/plugins-basic-types.ts +6 -0
  63. package/package.json +44 -43
  64. package/src/base/BaseBarStack.ts +780 -779
  65. package/src/base/BaseBars.ts +765 -764
  66. package/src/base/BaseBarsTriangle.ts +674 -672
  67. package/src/base/BaseDots.ts +515 -513
  68. package/src/base/BaseGroupAxis.ts +679 -678
  69. package/src/base/BaseLegend.ts +644 -642
  70. package/src/base/BaseLineAreas.ts +629 -627
  71. package/src/base/BaseLines.ts +706 -704
  72. package/src/base/BaseValueAxis.ts +580 -578
  73. package/src/base/types.ts +2 -2
  74. package/src/const.ts +30 -30
  75. package/src/grid/defaults.ts +128 -128
  76. package/src/grid/gridObservables.ts +545 -545
  77. package/src/grid/index.ts +15 -15
  78. package/src/grid/plugins/BarStack.ts +64 -64
  79. package/src/grid/plugins/Bars.ts +69 -69
  80. package/src/grid/plugins/BarsPN.ts +66 -66
  81. package/src/grid/plugins/BarsTriangle.ts +73 -73
  82. package/src/grid/plugins/Dots.ts +68 -68
  83. package/src/grid/plugins/GridLegend.ts +96 -96
  84. package/src/grid/plugins/GroupAux.ts +1098 -1098
  85. package/src/grid/plugins/GroupAxis.ts +97 -97
  86. package/src/grid/plugins/LineAreas.ts +65 -65
  87. package/src/grid/plugins/Lines.ts +59 -59
  88. package/src/grid/plugins/ScalingArea.ts +218 -218
  89. package/src/grid/plugins/ValueAxis.ts +93 -93
  90. package/src/grid/plugins/ValueStackAxis.ts +95 -95
  91. package/src/index.ts +9 -9
  92. package/src/multiGrid/defaults.ts +158 -158
  93. package/src/multiGrid/index.ts +13 -13
  94. package/src/multiGrid/multiGridObservables.ts +49 -49
  95. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  96. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  97. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  98. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  99. package/src/multiGrid/plugins/MultiGridLegend.ts +148 -148
  100. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  101. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  102. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  103. package/src/multiGrid/plugins/MultiValueAxis.ts +133 -133
  104. package/src/multiGrid/plugins/MultiValueStackAxis.ts +133 -133
  105. package/src/multiGrid/plugins/OverlappingValueAxes.ts +299 -299
  106. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +298 -298
  107. package/src/noneData/defaults.ts +102 -102
  108. package/src/noneData/index.ts +3 -3
  109. package/src/noneData/plugins/Container.ts +27 -27
  110. package/src/noneData/plugins/Tooltip.ts +373 -373
  111. package/src/series/defaults.ts +149 -149
  112. package/src/series/index.ts +9 -9
  113. package/src/series/plugins/Bubbles.ts +603 -603
  114. package/src/series/plugins/Pie.ts +623 -623
  115. package/src/series/plugins/PieEventTexts.ts +283 -283
  116. package/src/series/plugins/PieLabels.ts +640 -640
  117. package/src/series/plugins/Rose.ts +516 -516
  118. package/src/series/plugins/RoseLabels.ts +600 -600
  119. package/src/series/plugins/SeriesLegend.ts +96 -96
  120. package/src/series/seriesObservables.ts +145 -145
  121. package/src/series/seriesUtils.ts +51 -51
  122. package/src/tree/defaults.ts +23 -23
  123. package/src/tree/index.ts +3 -3
  124. package/src/tree/plugins/TreeLegend.ts +96 -96
  125. package/src/tree/plugins/TreeMap.ts +333 -333
  126. package/src/utils/commonUtils.ts +21 -21
  127. package/src/utils/d3Graphics.ts +174 -174
  128. package/src/utils/d3Utils.ts +73 -73
  129. package/src/utils/observables.ts +14 -14
  130. package/src/utils/orbchartsUtils.ts +100 -100
  131. package/tsconfig.base.json +13 -13
  132. package/tsconfig.json +2 -2
  133. package/vite.config.js +22 -22
  134. package/dist/src/grid/types.d.ts +0 -93
  135. package/dist/src/multiGrid/types.d.ts +0 -61
  136. package/dist/src/noneData/types.d.ts +0 -24
  137. package/dist/src/series/types.d.ts +0 -73
  138. package/dist/src/tree/types.d.ts +0 -21
  139. package/src/grid/types.ts +0 -124
  140. package/src/multiGrid/types.ts +0 -73
  141. package/src/noneData/types.ts +0 -26
  142. package/src/series/types.ts +0 -87
  143. package/src/tree/types.ts +0 -23
@@ -1,765 +1,766 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- takeUntil,
7
- distinctUntilChanged,
8
- shareReplay,
9
- Observable,
10
- Subject } from 'rxjs'
11
- import type { BasePluginFn } from './types'
12
- import type {
13
- ComputedDatumGrid,
14
- ComputedDataGrid,
15
- ComputedLayoutDataGrid,
16
- DataFormatterTypeMap,
17
- GridContainerPosition,
18
- EventGrid,
19
- ChartParams,
20
- Layout,
21
- TransformData } from '../../lib/core-types'
22
- import { getD3TransitionEase } from '../utils/d3Utils'
23
- import { getClassName, getUniID } from '../utils/orbchartsUtils'
24
- import { gridSelectionsObservable } from '../grid/gridObservables'
25
-
26
- export interface BaseBarsParams {
27
- // barType: BarType
28
- barWidth: number
29
- barPadding: number
30
- barGroupPadding: number // 群組和群組間的間隔
31
- barRadius: number | boolean
32
- }
33
-
34
- interface BaseBarsContext {
35
- selection: d3.Selection<any, unknown, any, unknown>
36
- computedData$: Observable<ComputedDataGrid>
37
- computedLayoutData$: Observable<ComputedLayoutDataGrid>
38
- visibleComputedData$: Observable<ComputedDatumGrid[][]>
39
- visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
40
- seriesLabels$: Observable<string[]>
41
- SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
42
- GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
43
- fullParams$: Observable<BaseBarsParams>
44
- fullChartParams$: Observable<ChartParams>
45
- gridAxesTransform$: Observable<TransformData>
46
- gridGraphicTransform$: Observable<TransformData>
47
- gridGraphicReverseScale$: Observable<[number, number][]>
48
- gridAxesSize$: Observable<{
49
- width: number;
50
- height: number;
51
- }>
52
- gridHighlight$: Observable<ComputedDatumGrid[]>
53
- gridContainerPosition$: Observable<GridContainerPosition[]>
54
- isSeriesSeprate$: Observable<boolean>
55
- event$: Subject<EventGrid>
56
- }
57
-
58
- interface RenderBarParams {
59
- graphicGSelection: d3.Selection<SVGGElement, string, any, any>
60
- rectClassName: string
61
- visibleComputedLayoutData: ComputedLayoutDataGrid
62
- zeroYArr: number[]
63
- groupLabels: string[]
64
- barScale: d3.ScalePoint<string>
65
- params: BaseBarsParams
66
- chartParams: ChartParams
67
- barWidth: number
68
- transformedBarRadius: [number, number][]
69
- delayGroup: number
70
- transitionItem: number
71
- isSeriesSeprate: boolean
72
- }
73
-
74
- type ClipPathDatum = {
75
- id: string;
76
- // x: number;
77
- // y: number;
78
- width: number;
79
- height: number;
80
- }
81
-
82
- // const pluginName = 'Bars'
83
- // const rectClassName = getClassName(pluginName, 'rect')
84
- // group的delay在動畫中的佔比(剩餘部份的時間為圖形本身的動畫時間,因為delay時間和最後一個group的動畫時間加總為1)
85
- const groupDelayProportionOfDuration = 0.3
86
-
87
- function calcBarWidth ({ axisWidth, groupAmount, barAmountOfGroup, barPadding = 0, barGroupPadding = 0 }: {
88
- axisWidth: number
89
- groupAmount: number
90
- barAmountOfGroup: number
91
- barPadding: number
92
- barGroupPadding: number
93
- }) {
94
- const eachGroupWidth = groupAmount > 1
95
- ? axisWidth / (groupAmount - 1) // -1是因為要扣掉兩側的padding
96
- : axisWidth
97
- const width = (eachGroupWidth - barGroupPadding) / barAmountOfGroup - barPadding
98
- return width > 1 ? width : 1
99
- }
100
-
101
- function makeBarScale (barWidth: number, seriesLabels: string[], params: BaseBarsParams) {
102
- const barHalfWidth = barWidth! / 2
103
- const barGroupWidth = barWidth * seriesLabels.length + params.barPadding! * seriesLabels.length
104
- return d3.scalePoint()
105
- .domain(seriesLabels)
106
- .range([-barGroupWidth / 2 + barHalfWidth, barGroupWidth / 2 - barHalfWidth])
107
- }
108
-
109
- function calcDelayGroup (barGroupAmount: number, totalDuration: number) {
110
- if (barGroupAmount <= 1) {
111
- // 一筆內計算會出錯所以不算
112
- return 0
113
- }
114
- return totalDuration / (barGroupAmount - 1) * groupDelayProportionOfDuration // 依group數量計算
115
- }
116
-
117
- function calctransitionItem (barGroupAmount: number, totalDuration: number) {
118
- if (barGroupAmount <= 1) {
119
- // 一筆內不會有delay
120
- return totalDuration
121
- }
122
- return totalDuration * (1 - groupDelayProportionOfDuration) // delay後剩餘的時間
123
- }
124
- // let _data: ComputedDatumGrid[][] = []
125
-
126
- function renderRectBars ({ graphicGSelection, rectClassName, visibleComputedLayoutData, zeroYArr, groupLabels, barScale, params, chartParams, barWidth, transformedBarRadius, delayGroup, transitionItem, isSeriesSeprate }: RenderBarParams) {
127
-
128
- const barHalfWidth = barWidth! / 2
129
-
130
- graphicGSelection
131
- .each((seriesData, seriesIndex, g) => {
132
- d3.select(g[seriesIndex])
133
- .selectAll<SVGGElement, ComputedDatumGrid>(`rect.${rectClassName}`)
134
- .data(visibleComputedLayoutData[seriesIndex] ?? [], d => d.id)
135
- .join(
136
- enter => {
137
- // console.log('enter')
138
- return enter
139
- .append('rect')
140
- .classed(rectClassName, true)
141
- .attr('cursor', 'pointer')
142
- .attr('height', d => 0)
143
- },
144
- update => update,
145
- exit => exit.remove()
146
- )
147
- .attr('transform', (d, i) => `translate(${(d ? d.axisX : 0) - barHalfWidth}, ${0})`)
148
- .attr('fill', d => d.color)
149
- .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
150
- .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
151
- .attr('width', barWidth!)
152
- .attr('rx', transformedBarRadius[seriesIndex][0] ?? 1)
153
- .attr('ry', transformedBarRadius[seriesIndex][1] ?? 1)
154
- .transition()
155
- .duration(transitionItem)
156
- .ease(getD3TransitionEase(chartParams.transitionEase))
157
- .delay((d, i) => d.groupIndex * delayGroup)
158
- .attr('height', d => Math.abs(d.axisYFromZero))
159
- })
160
-
161
-
162
- // graphicGSelection
163
- // .each((d, seriesIndex, g) => {
164
- // d3.select(g[seriesIndex])
165
- // .selectAll<SVGGElement, ComputedDatumGrid>(`g.${barClassName}`)
166
- // .data(computedData[seriesIndex], d => d.seriesIndex)
167
- // .join('g')
168
- // .classed(barClassName, true)
169
- // .attr('transform', (d, i) => `translate(${d ? d.axisX : 0}, ${0})`)
170
- // .each((datum, i, g) => {
171
- // d3.select(g[i])
172
- // .selectAll<SVGRectElement, ComputedDatumGrid>(`rect.${rectClassName}`)
173
- // .data([computedData[seriesIndex][i]], d => d.id)
174
- // .join(
175
- // enter => {
176
- // return enter
177
- // .append('rect')
178
- // .classed(rectClassName, true)
179
- // .attr('height', d => 0)
180
- // },
181
- // update => update,
182
- // exit => exit.remove()
183
- // )
184
- // .attr('cursor', 'pointer')
185
- // .attr('fill', d => d.color)
186
- // .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
187
- // .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
188
- // .attr('width', barWidth!)
189
- // .attr('transform', `translate(${-barHalfWidth}, 0)`)
190
- // // .attr('rx', params.barRadius == true ? barHalfWidth
191
- // // : params.barRadius == false ? 0
192
- // // : typeof params.barRadius == 'number' ? params.barRadius
193
- // // : 0)
194
- // .attr('rx', transformedBarRadius[0])
195
- // .attr('ry', transformedBarRadius[1])
196
- // .transition()
197
- // .duration(transitionItem)
198
- // .ease(getD3TransitionEase(chartParams.transitionEase))
199
- // .delay((d, i) => d.groupIndex * delayGroup)
200
- // .attr('height', d => Math.abs(d.axisYFromZero))
201
- // })
202
- // })
203
-
204
- const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumGrid, SVGGElement, unknown> = graphicGSelection.selectAll(`rect.${rectClassName}`)
205
-
206
- return graphicBarSelection
207
- }
208
-
209
- function renderClipPath ({ defsSelection, clipPathData }: {
210
- defsSelection: d3.Selection<SVGDefsElement, any, any, any>
211
- clipPathData: ClipPathDatum[]
212
- }) {
213
- const clipPath = defsSelection
214
- .selectAll<SVGClipPathElement, Layout>('clipPath')
215
- .data(clipPathData)
216
- .join(
217
- enter => {
218
- return enter
219
- .append('clipPath')
220
- },
221
- update => update,
222
- exit => exit.remove()
223
- )
224
- .attr('id', d => d.id)
225
- .each((d, i, g) => {
226
- const rect = d3.select(g[i])
227
- .selectAll<SVGRectElement, typeof d>('rect')
228
- .data([d])
229
- .join(
230
- enter => {
231
- return enter
232
- .append('rect')
233
- },
234
- update => update,
235
- exit => exit.remove()
236
- )
237
- .attr('x', 0)
238
- .attr('y', 0)
239
- .attr('width', _d => _d.width)
240
- .attr('height', _d => _d.height)
241
- })
242
- }
243
-
244
- function highlight ({ selection, ids, fullChartParams }: {
245
- selection: d3.Selection<any, ComputedDatumGrid, any, any>
246
- ids: string[]
247
- fullChartParams: ChartParams
248
- }) {
249
- selection.interrupt('highlight')
250
-
251
- if (!ids.length) {
252
- // remove highlight
253
- selection
254
- .transition('highlight')
255
- .duration(200)
256
- .style('opacity', 1)
257
- return
258
- }
259
-
260
- selection
261
- .each((d, i, n) => {
262
- if (ids.includes(d.id)) {
263
- d3.select(n[i])
264
- .style('opacity', 1)
265
- } else {
266
- d3.select(n[i])
267
- .style('opacity', fullChartParams.styles.unhighlightedOpacity)
268
- }
269
- })
270
- }
271
-
272
-
273
- export const createBaseBars: BasePluginFn<BaseBarsContext> = (pluginName: string, {
274
- selection,
275
- computedData$,
276
- computedLayoutData$,
277
- visibleComputedData$,
278
- visibleComputedLayoutData$,
279
- seriesLabels$,
280
- SeriesDataMap$,
281
- GroupDataMap$,
282
- fullParams$,
283
- fullChartParams$,
284
- gridAxesTransform$,
285
- gridGraphicTransform$,
286
- gridGraphicReverseScale$,
287
- gridAxesSize$,
288
- gridHighlight$,
289
- gridContainerPosition$,
290
- isSeriesSeprate$,
291
- event$
292
- }) => {
293
-
294
- const destroy$ = new Subject()
295
-
296
- const clipPathID = getUniID(pluginName, 'clipPath-box')
297
- const rectClassName = getClassName(pluginName, 'rect')
298
-
299
- // const seriesSelection$ = computedData$.pipe(
300
- // takeUntil(destroy$),
301
- // distinctUntilChanged((a, b) => {
302
- // // 只有當series的數量改變時,才重新計算
303
- // return a.length === b.length
304
- // }),
305
- // map((computedData, i) => {
306
- // return selection
307
- // .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${seriesClassName}`)
308
- // .data(computedData, d => d[0] ? d[0].seriesIndex : i)
309
- // .join(
310
- // enter => {
311
- // return enter
312
- // .append('g')
313
- // .classed(seriesClassName, true)
314
- // .each((d, i, g) => {
315
- // const axesSelection = d3.select(g[i])
316
- // .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${axesClassName}`)
317
- // .data([i])
318
- // .join(
319
- // enter => {
320
- // return enter
321
- // .append('g')
322
- // .classed(axesClassName, true)
323
- // .attr('clip-path', `url(#${clipPathID})`)
324
- // .each((d, i, g) => {
325
- // const defsSelection = d3.select(g[i])
326
- // .selectAll<SVGDefsElement, any>('defs')
327
- // .data([i])
328
- // .join('defs')
329
-
330
- // const graphicGSelection = d3.select(g[i])
331
- // .selectAll<SVGGElement, any>('g')
332
- // .data([i])
333
- // .join('g')
334
- // .classed(graphicClassName, true)
335
- // })
336
- // },
337
- // update => update,
338
- // exit => exit.remove()
339
- // )
340
- // })
341
- // },
342
- // update => update,
343
- // exit => exit.remove()
344
- // )
345
- // })
346
- // )
347
-
348
- // combineLatest({
349
- // seriesSelection: seriesSelection$,
350
- // gridContainerPosition: gridContainerPosition$
351
- // }).pipe(
352
- // takeUntil(destroy$),
353
- // switchMap(async d => d)
354
- // ).subscribe(data => {
355
- // data.seriesSelection
356
- // .transition()
357
- // .attr('transform', (d, i) => {
358
- // const translate = data.gridContainerPosition[i].translate
359
- // const scale = data.gridContainerPosition[i].scale
360
- // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
361
- // })
362
- // })
363
-
364
-
365
- // const axesSelection$ = combineLatest({
366
- // seriesSelection: seriesSelection$,
367
- // gridAxesTransform: gridAxesTransform$
368
- // }).pipe(
369
- // takeUntil(destroy$),
370
- // switchMap(async d => d),
371
- // map(data => {
372
- // return data.seriesSelection
373
- // .select<SVGGElement>(`g.${axesClassName}`)
374
- // .style('transform', data.gridAxesTransform.value)
375
- // })
376
- // )
377
- // const defsSelection$ = axesSelection$.pipe(
378
- // takeUntil(destroy$),
379
- // map(axesSelection => {
380
- // return axesSelection.select<SVGDefsElement>('defs')
381
- // })
382
- // )
383
- // const graphicGSelection$ = combineLatest({
384
- // axesSelection: axesSelection$,
385
- // gridGraphicTransform: gridGraphicTransform$
386
- // }).pipe(
387
- // takeUntil(destroy$),
388
- // switchMap(async d => d),
389
- // map(data => {
390
- // const graphicGSelection = data.axesSelection
391
- // .select<SVGGElement>(`g.${graphicClassName}`)
392
- // graphicGSelection
393
- // .transition()
394
- // .duration(50)
395
- // .style('transform', data.gridGraphicTransform.value)
396
- // return graphicGSelection
397
- // })
398
- // )
399
-
400
- const {
401
- seriesSelection$,
402
- axesSelection$,
403
- defsSelection$,
404
- graphicGSelection$
405
- } = gridSelectionsObservable({
406
- selection,
407
- pluginName,
408
- clipPathID,
409
- seriesLabels$,
410
- gridContainerPosition$,
411
- gridAxesTransform$,
412
- gridGraphicTransform$
413
- })
414
-
415
- const zeroYArr$ = visibleComputedLayoutData$.pipe(
416
- takeUntil(destroy$),
417
- map(data => {
418
- return data.map(d => {
419
- return d[0] ? d[0].axisY - d[0].axisYFromZero : 0
420
- })
421
- }),
422
- distinctUntilChanged()
423
- )
424
-
425
- const barWidth$ = combineLatest({
426
- computedData: computedData$,
427
- visibleComputedData: visibleComputedData$,
428
- params: fullParams$,
429
- gridAxesSize: gridAxesSize$,
430
- isSeriesSeprate: isSeriesSeprate$
431
- }).pipe(
432
- takeUntil(destroy$),
433
- switchMap(async d => d),
434
- map(data => {
435
- if (data.params.barWidth) {
436
- return data.params.barWidth
437
- } else if (data.isSeriesSeprate) {
438
- return calcBarWidth({
439
- axisWidth: data.gridAxesSize.width,
440
- groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
441
- barAmountOfGroup: 1,
442
- barPadding: data.params.barPadding,
443
- barGroupPadding: data.params.barGroupPadding
444
- })
445
- } else {
446
- return calcBarWidth({
447
- axisWidth: data.gridAxesSize.width,
448
- groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
449
- barAmountOfGroup: data.visibleComputedData.length,
450
- barPadding: data.params.barPadding,
451
- barGroupPadding: data.params.barGroupPadding
452
- })
453
- }
454
- }),
455
- distinctUntilChanged()
456
- )
457
-
458
- // 圓角的值 [rx, ry]
459
- const transformedBarRadius$: Observable<[number, number][]> = combineLatest({
460
- computedData: computedData$,
461
- // gridGraphicTransform: gridGraphicTransform$,
462
- barWidth: barWidth$,
463
- params: fullParams$,
464
- // gridContainerPosition: gridContainerPosition$,
465
- // gridAxesTransform: gridAxesTransform$
466
- gridGraphicReverseScale: gridGraphicReverseScale$
467
- }).pipe(
468
- takeUntil(destroy$),
469
- switchMap(async data => data),
470
- map(data => {
471
- const barHalfWidth = data.barWidth! / 2
472
- const radius = data.params.barRadius === true ? barHalfWidth
473
- : data.params.barRadius === false ? 0
474
- : typeof data.params.barRadius == 'number' ? data.params.barRadius
475
- : 0
476
-
477
- return data.computedData.map((series, seriesIndex) => {
478
- const gridGraphicReverseScale = data.gridGraphicReverseScale[seriesIndex] ?? data.gridGraphicReverseScale[0]
479
-
480
- let transformedRx = radius * gridGraphicReverseScale[0]
481
- let transformedRy = radius * gridGraphicReverseScale[1]
482
- // if (radius == 0) {
483
- // transformedRx = 0
484
- // transformedRy = 0
485
- // } else if (data.gridAxesTransform.rotate == 0) {
486
- // transformedRx = radius
487
- // // 抵消外層scale的變型
488
- // / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[0].scale[0]
489
- // transformedRy = radius
490
- // // 抵消外層scale的變型
491
- // / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[0].scale[1]
492
- // } else if (data.gridAxesTransform.rotate != 0) {
493
- // transformedRx = radius
494
- // // 抵消外層scale的變型,由於有90度的旋轉,所以外層 (container) x和y的scale要互換
495
- // / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[0].scale[1]
496
- // transformedRy = radius
497
- // // 抵消外層scale的變型,由於有90度的旋轉,所以外層 (container) x和y的scale要互換
498
- // / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[0].scale[0]
499
- // }
500
-
501
- // 如果計算出來的x圓角值大於寬度一半則進行修正
502
- if (transformedRx > barHalfWidth) {
503
- const rScale = barHalfWidth / transformedRx
504
- transformedRx = transformedRx * rScale
505
- transformedRy = transformedRy * rScale
506
- }
507
-
508
- return [transformedRx, transformedRy]
509
- })
510
- })
511
- )
512
-
513
-
514
- // const seriesLabels$ = visibleComputedData$.pipe(
515
- // takeUntil(destroy$),
516
- // map(data => {
517
- // const SeriesLabelSet: Set<string> = new Set()
518
- // data.forEach(d => {
519
- // d.forEach(_d => {
520
- // SeriesLabelSet.add(_d.seriesLabel)
521
- // })
522
- // })
523
- // return Array.from(SeriesLabelSet)
524
- // })
525
- // )
526
-
527
- const groupLabels$ = visibleComputedData$.pipe(
528
- takeUntil(destroy$),
529
- map(data => {
530
- const GroupLabelSet: Set<string> = new Set()
531
- data.forEach(d => {
532
- d.forEach(_d => {
533
- GroupLabelSet.add(_d.groupLabel)
534
- })
535
- })
536
- return Array.from(GroupLabelSet)
537
- })
538
- )
539
-
540
- const barScale$ = combineLatest({
541
- seriesLabels: seriesLabels$,
542
- barWidth: barWidth$,
543
- params: fullParams$,
544
- }).pipe(
545
- takeUntil(destroy$),
546
- switchMap(async d => d),
547
- map(data => {
548
- return makeBarScale(data.barWidth, data.seriesLabels, data.params)
549
- })
550
- )
551
-
552
- const transitionDuration$ = fullChartParams$.pipe(
553
- takeUntil(destroy$),
554
- map(d => d.transitionDuration),
555
- distinctUntilChanged()
556
- )
557
-
558
- const delayGroup$ = new Observable<number>(subscriber => {
559
- combineLatest({
560
- groupLabels: groupLabels$,
561
- transitionDuration: transitionDuration$,
562
- }).pipe(
563
- switchMap(async d => d)
564
- ).subscribe(data => {
565
- const delay = calcDelayGroup(data.groupLabels.length, data.transitionDuration)
566
- subscriber.next(delay)
567
- })
568
- }).pipe(
569
- takeUntil(destroy$),
570
- distinctUntilChanged()
571
- )
572
-
573
- const transitionItem$ = new Observable<number>(subscriber => {
574
- combineLatest({
575
- groupLabels: groupLabels$,
576
- transitionDuration: transitionDuration$
577
- }).pipe(
578
- switchMap(async d => d)
579
- ).subscribe(data => {
580
- const transition = calctransitionItem(data.groupLabels.length, data.transitionDuration)
581
- subscriber.next(transition)
582
- })
583
- }).pipe(
584
- takeUntil(destroy$),
585
- distinctUntilChanged()
586
- )
587
-
588
- combineLatest({
589
- defsSelection: defsSelection$,
590
- gridAxesSize: gridAxesSize$,
591
- }).pipe(
592
- takeUntil(destroy$),
593
- switchMap(async d => d)
594
- ).subscribe(data => {
595
- const clipPathData = [{
596
- id: clipPathID,
597
- width: data.gridAxesSize.width,
598
- height: data.gridAxesSize.height
599
- }]
600
- renderClipPath({
601
- defsSelection: data.defsSelection,
602
- clipPathData
603
- })
604
- })
605
-
606
-
607
- const highlightTarget$ = fullChartParams$.pipe(
608
- takeUntil(destroy$),
609
- map(d => d.highlightTarget),
610
- distinctUntilChanged()
611
- )
612
-
613
- const barSelection$ = combineLatest({
614
- graphicGSelection: graphicGSelection$,
615
- visibleComputedLayoutData: visibleComputedLayoutData$,
616
- // barData$: barData$,
617
- zeroYArr: zeroYArr$,
618
- groupLabels: groupLabels$,
619
- barScale: barScale$,
620
- params: fullParams$,
621
- chartParams: fullChartParams$,
622
- highlightTarget: highlightTarget$,
623
- barWidth: barWidth$,
624
- transformedBarRadius: transformedBarRadius$,
625
- delayGroup: delayGroup$,
626
- transitionItem: transitionItem$,
627
- isSeriesSeprate: isSeriesSeprate$
628
- }).pipe(
629
- takeUntil(destroy$),
630
- switchMap(async (d) => d),
631
- map(data => {
632
- return renderRectBars({
633
- graphicGSelection: data.graphicGSelection,
634
- rectClassName,
635
- visibleComputedLayoutData: data.visibleComputedLayoutData,
636
- zeroYArr: data.zeroYArr,
637
- groupLabels: data.groupLabels,
638
- barScale: data.barScale,
639
- params: data.params,
640
- chartParams: data.chartParams,
641
- barWidth: data.barWidth,
642
- transformedBarRadius: data.transformedBarRadius,
643
- delayGroup: data.delayGroup,
644
- transitionItem: data.transitionItem,
645
- isSeriesSeprate: data.isSeriesSeprate
646
- })
647
- })
648
- )
649
-
650
- combineLatest({
651
- barSelection: barSelection$,
652
- computedData: computedData$,
653
- highlightTarget: highlightTarget$,
654
- SeriesDataMap: SeriesDataMap$,
655
- GroupDataMap: GroupDataMap$,
656
- }).pipe(
657
- takeUntil(destroy$),
658
- switchMap(async (d) => d),
659
- ).subscribe(data => {
660
- data.barSelection
661
- .on('mouseover', (event, datum) => {
662
- event.stopPropagation()
663
-
664
- event$.next({
665
- type: 'grid',
666
- eventName: 'mouseover',
667
- pluginName,
668
- highlightTarget: data.highlightTarget,
669
- datum,
670
- gridIndex: datum.gridIndex,
671
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
672
- seriesIndex: datum.seriesIndex,
673
- seriesLabel: datum.seriesLabel,
674
- groups: data.GroupDataMap.get(datum.groupLabel)!,
675
- groupIndex: datum.groupIndex,
676
- groupLabel: datum.groupLabel,
677
- event,
678
- data: data.computedData
679
- })
680
- })
681
- .on('mousemove', (event, datum) => {
682
- event.stopPropagation()
683
-
684
- event$.next({
685
- type: 'grid',
686
- eventName: 'mousemove',
687
- pluginName,
688
- highlightTarget: data.highlightTarget,
689
- datum,
690
- gridIndex: datum.gridIndex,
691
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
692
- seriesIndex: datum.seriesIndex,
693
- seriesLabel: datum.seriesLabel,
694
- groups: data.GroupDataMap.get(datum.groupLabel)!,
695
- groupIndex: datum.groupIndex,
696
- groupLabel: datum.groupLabel,
697
- event,
698
- data: data.computedData
699
- })
700
- })
701
- .on('mouseout', (event, datum) => {
702
- event.stopPropagation()
703
-
704
- event$.next({
705
- type: 'grid',
706
- eventName: 'mouseout',
707
- pluginName,
708
- highlightTarget: data.highlightTarget,
709
- datum,
710
- gridIndex: datum.gridIndex,
711
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
712
- seriesIndex: datum.seriesIndex,
713
- seriesLabel: datum.seriesLabel,
714
- groups: data.GroupDataMap.get(datum.groupLabel)!,
715
- groupIndex: datum.groupIndex,
716
- groupLabel: datum.groupLabel,
717
- event,
718
- data: data.computedData
719
- })
720
- })
721
- .on('click', (event, datum) => {
722
- event.stopPropagation()
723
-
724
- event$.next({
725
- type: 'grid',
726
- eventName: 'click',
727
- pluginName,
728
- highlightTarget: data.highlightTarget,
729
- datum,
730
- gridIndex: datum.gridIndex,
731
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
732
- seriesIndex: datum.seriesIndex,
733
- seriesLabel: datum.seriesLabel,
734
- groups: data.GroupDataMap.get(datum.groupLabel)!,
735
- groupIndex: datum.groupIndex,
736
- groupLabel: datum.groupLabel,
737
- event,
738
- data: data.computedData
739
- })
740
- })
741
- })
742
-
743
-
744
- combineLatest({
745
- barSelection: barSelection$,
746
- highlight: gridHighlight$.pipe(
747
- map(data => data.map(d => d.id))
748
- ),
749
- fullChartParams: fullChartParams$
750
- }).pipe(
751
- takeUntil(destroy$),
752
- switchMap(async d => d)
753
- ).subscribe(data => {
754
- highlight({
755
- selection: data.barSelection,
756
- ids: data.highlight,
757
- fullChartParams: data.fullChartParams
758
- })
759
- })
760
-
761
-
762
- return () => {
763
- destroy$.next(undefined)
764
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ distinctUntilChanged,
8
+ shareReplay,
9
+ Observable,
10
+ Subject } from 'rxjs'
11
+ import type { BasePluginFn } from './types'
12
+ import type {
13
+ ComputedDatumGrid,
14
+ ComputedDataGrid,
15
+ ComputedLayoutDataGrid,
16
+ DataFormatterTypeMap,
17
+ GridContainerPosition,
18
+ EventGrid,
19
+ ChartParams,
20
+ Layout,
21
+ TransformData } from '../../lib/core-types'
22
+ import type { BaseBarsParams } from '../../lib/plugins-basic-types'
23
+ import { getD3TransitionEase } from '../utils/d3Utils'
24
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
25
+ import { gridSelectionsObservable } from '../grid/gridObservables'
26
+
27
+ // export interface BaseBarsParams {
28
+ // // barType: BarType
29
+ // barWidth: number
30
+ // barPadding: number
31
+ // barGroupPadding: number // 群組和群組間的間隔
32
+ // barRadius: number | boolean
33
+ // }
34
+
35
+ interface BaseBarsContext {
36
+ selection: d3.Selection<any, unknown, any, unknown>
37
+ computedData$: Observable<ComputedDataGrid>
38
+ computedLayoutData$: Observable<ComputedLayoutDataGrid>
39
+ visibleComputedData$: Observable<ComputedDatumGrid[][]>
40
+ visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
41
+ seriesLabels$: Observable<string[]>
42
+ SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
43
+ GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
44
+ fullParams$: Observable<BaseBarsParams>
45
+ fullChartParams$: Observable<ChartParams>
46
+ gridAxesTransform$: Observable<TransformData>
47
+ gridGraphicTransform$: Observable<TransformData>
48
+ gridGraphicReverseScale$: Observable<[number, number][]>
49
+ gridAxesSize$: Observable<{
50
+ width: number;
51
+ height: number;
52
+ }>
53
+ gridHighlight$: Observable<ComputedDatumGrid[]>
54
+ gridContainerPosition$: Observable<GridContainerPosition[]>
55
+ isSeriesSeprate$: Observable<boolean>
56
+ event$: Subject<EventGrid>
57
+ }
58
+
59
+ interface RenderBarParams {
60
+ graphicGSelection: d3.Selection<SVGGElement, string, any, any>
61
+ rectClassName: string
62
+ visibleComputedLayoutData: ComputedLayoutDataGrid
63
+ zeroYArr: number[]
64
+ groupLabels: string[]
65
+ barScale: d3.ScalePoint<string>
66
+ params: BaseBarsParams
67
+ chartParams: ChartParams
68
+ barWidth: number
69
+ transformedBarRadius: [number, number][]
70
+ delayGroup: number
71
+ transitionItem: number
72
+ isSeriesSeprate: boolean
73
+ }
74
+
75
+ type ClipPathDatum = {
76
+ id: string;
77
+ // x: number;
78
+ // y: number;
79
+ width: number;
80
+ height: number;
81
+ }
82
+
83
+ // const pluginName = 'Bars'
84
+ // const rectClassName = getClassName(pluginName, 'rect')
85
+ // group的delay在動畫中的佔比(剩餘部份的時間為圖形本身的動畫時間,因為delay時間和最後一個group的動畫時間加總為1)
86
+ const groupDelayProportionOfDuration = 0.3
87
+
88
+ function calcBarWidth ({ axisWidth, groupAmount, barAmountOfGroup, barPadding = 0, barGroupPadding = 0 }: {
89
+ axisWidth: number
90
+ groupAmount: number
91
+ barAmountOfGroup: number
92
+ barPadding: number
93
+ barGroupPadding: number
94
+ }) {
95
+ const eachGroupWidth = groupAmount > 1
96
+ ? axisWidth / (groupAmount - 1) // -1是因為要扣掉兩側的padding
97
+ : axisWidth
98
+ const width = (eachGroupWidth - barGroupPadding) / barAmountOfGroup - barPadding
99
+ return width > 1 ? width : 1
100
+ }
101
+
102
+ function makeBarScale (barWidth: number, seriesLabels: string[], params: BaseBarsParams) {
103
+ const barHalfWidth = barWidth! / 2
104
+ const barGroupWidth = barWidth * seriesLabels.length + params.barPadding! * seriesLabels.length
105
+ return d3.scalePoint()
106
+ .domain(seriesLabels)
107
+ .range([-barGroupWidth / 2 + barHalfWidth, barGroupWidth / 2 - barHalfWidth])
108
+ }
109
+
110
+ function calcDelayGroup (barGroupAmount: number, totalDuration: number) {
111
+ if (barGroupAmount <= 1) {
112
+ // 一筆內計算會出錯所以不算
113
+ return 0
114
+ }
115
+ return totalDuration / (barGroupAmount - 1) * groupDelayProportionOfDuration // 依group數量計算
116
+ }
117
+
118
+ function calctransitionItem (barGroupAmount: number, totalDuration: number) {
119
+ if (barGroupAmount <= 1) {
120
+ // 一筆內不會有delay
121
+ return totalDuration
122
+ }
123
+ return totalDuration * (1 - groupDelayProportionOfDuration) // delay後剩餘的時間
124
+ }
125
+ // let _data: ComputedDatumGrid[][] = []
126
+
127
+ function renderRectBars ({ graphicGSelection, rectClassName, visibleComputedLayoutData, zeroYArr, groupLabels, barScale, params, chartParams, barWidth, transformedBarRadius, delayGroup, transitionItem, isSeriesSeprate }: RenderBarParams) {
128
+
129
+ const barHalfWidth = barWidth! / 2
130
+
131
+ graphicGSelection
132
+ .each((seriesData, seriesIndex, g) => {
133
+ d3.select(g[seriesIndex])
134
+ .selectAll<SVGGElement, ComputedDatumGrid>(`rect.${rectClassName}`)
135
+ .data(visibleComputedLayoutData[seriesIndex] ?? [], d => d.id)
136
+ .join(
137
+ enter => {
138
+ // console.log('enter')
139
+ return enter
140
+ .append('rect')
141
+ .classed(rectClassName, true)
142
+ .attr('cursor', 'pointer')
143
+ .attr('height', d => 0)
144
+ },
145
+ update => update,
146
+ exit => exit.remove()
147
+ )
148
+ .attr('transform', (d, i) => `translate(${(d ? d.axisX : 0) - barHalfWidth}, ${0})`)
149
+ .attr('fill', d => d.color)
150
+ .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
151
+ .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
152
+ .attr('width', barWidth!)
153
+ .attr('rx', transformedBarRadius[seriesIndex][0] ?? 1)
154
+ .attr('ry', transformedBarRadius[seriesIndex][1] ?? 1)
155
+ .transition()
156
+ .duration(transitionItem)
157
+ .ease(getD3TransitionEase(chartParams.transitionEase))
158
+ .delay((d, i) => d.groupIndex * delayGroup)
159
+ .attr('height', d => Math.abs(d.axisYFromZero))
160
+ })
161
+
162
+
163
+ // graphicGSelection
164
+ // .each((d, seriesIndex, g) => {
165
+ // d3.select(g[seriesIndex])
166
+ // .selectAll<SVGGElement, ComputedDatumGrid>(`g.${barClassName}`)
167
+ // .data(computedData[seriesIndex], d => d.seriesIndex)
168
+ // .join('g')
169
+ // .classed(barClassName, true)
170
+ // .attr('transform', (d, i) => `translate(${d ? d.axisX : 0}, ${0})`)
171
+ // .each((datum, i, g) => {
172
+ // d3.select(g[i])
173
+ // .selectAll<SVGRectElement, ComputedDatumGrid>(`rect.${rectClassName}`)
174
+ // .data([computedData[seriesIndex][i]], d => d.id)
175
+ // .join(
176
+ // enter => {
177
+ // return enter
178
+ // .append('rect')
179
+ // .classed(rectClassName, true)
180
+ // .attr('height', d => 0)
181
+ // },
182
+ // update => update,
183
+ // exit => exit.remove()
184
+ // )
185
+ // .attr('cursor', 'pointer')
186
+ // .attr('fill', d => d.color)
187
+ // .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
188
+ // .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
189
+ // .attr('width', barWidth!)
190
+ // .attr('transform', `translate(${-barHalfWidth}, 0)`)
191
+ // // .attr('rx', params.barRadius == true ? barHalfWidth
192
+ // // : params.barRadius == false ? 0
193
+ // // : typeof params.barRadius == 'number' ? params.barRadius
194
+ // // : 0)
195
+ // .attr('rx', transformedBarRadius[0])
196
+ // .attr('ry', transformedBarRadius[1])
197
+ // .transition()
198
+ // .duration(transitionItem)
199
+ // .ease(getD3TransitionEase(chartParams.transitionEase))
200
+ // .delay((d, i) => d.groupIndex * delayGroup)
201
+ // .attr('height', d => Math.abs(d.axisYFromZero))
202
+ // })
203
+ // })
204
+
205
+ const graphicBarSelection: d3.Selection<SVGRectElement, ComputedDatumGrid, SVGGElement, unknown> = graphicGSelection.selectAll(`rect.${rectClassName}`)
206
+
207
+ return graphicBarSelection
208
+ }
209
+
210
+ function renderClipPath ({ defsSelection, clipPathData }: {
211
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
212
+ clipPathData: ClipPathDatum[]
213
+ }) {
214
+ const clipPath = defsSelection
215
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
216
+ .data(clipPathData)
217
+ .join(
218
+ enter => {
219
+ return enter
220
+ .append('clipPath')
221
+ },
222
+ update => update,
223
+ exit => exit.remove()
224
+ )
225
+ .attr('id', d => d.id)
226
+ .each((d, i, g) => {
227
+ const rect = d3.select(g[i])
228
+ .selectAll<SVGRectElement, typeof d>('rect')
229
+ .data([d])
230
+ .join(
231
+ enter => {
232
+ return enter
233
+ .append('rect')
234
+ },
235
+ update => update,
236
+ exit => exit.remove()
237
+ )
238
+ .attr('x', 0)
239
+ .attr('y', 0)
240
+ .attr('width', _d => _d.width)
241
+ .attr('height', _d => _d.height)
242
+ })
243
+ }
244
+
245
+ function highlight ({ selection, ids, fullChartParams }: {
246
+ selection: d3.Selection<any, ComputedDatumGrid, any, any>
247
+ ids: string[]
248
+ fullChartParams: ChartParams
249
+ }) {
250
+ selection.interrupt('highlight')
251
+
252
+ if (!ids.length) {
253
+ // remove highlight
254
+ selection
255
+ .transition('highlight')
256
+ .duration(200)
257
+ .style('opacity', 1)
258
+ return
259
+ }
260
+
261
+ selection
262
+ .each((d, i, n) => {
263
+ if (ids.includes(d.id)) {
264
+ d3.select(n[i])
265
+ .style('opacity', 1)
266
+ } else {
267
+ d3.select(n[i])
268
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
269
+ }
270
+ })
271
+ }
272
+
273
+
274
+ export const createBaseBars: BasePluginFn<BaseBarsContext> = (pluginName: string, {
275
+ selection,
276
+ computedData$,
277
+ computedLayoutData$,
278
+ visibleComputedData$,
279
+ visibleComputedLayoutData$,
280
+ seriesLabels$,
281
+ SeriesDataMap$,
282
+ GroupDataMap$,
283
+ fullParams$,
284
+ fullChartParams$,
285
+ gridAxesTransform$,
286
+ gridGraphicTransform$,
287
+ gridGraphicReverseScale$,
288
+ gridAxesSize$,
289
+ gridHighlight$,
290
+ gridContainerPosition$,
291
+ isSeriesSeprate$,
292
+ event$
293
+ }) => {
294
+
295
+ const destroy$ = new Subject()
296
+
297
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
298
+ const rectClassName = getClassName(pluginName, 'rect')
299
+
300
+ // const seriesSelection$ = computedData$.pipe(
301
+ // takeUntil(destroy$),
302
+ // distinctUntilChanged((a, b) => {
303
+ // // 只有當series的數量改變時,才重新計算
304
+ // return a.length === b.length
305
+ // }),
306
+ // map((computedData, i) => {
307
+ // return selection
308
+ // .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${seriesClassName}`)
309
+ // .data(computedData, d => d[0] ? d[0].seriesIndex : i)
310
+ // .join(
311
+ // enter => {
312
+ // return enter
313
+ // .append('g')
314
+ // .classed(seriesClassName, true)
315
+ // .each((d, i, g) => {
316
+ // const axesSelection = d3.select(g[i])
317
+ // .selectAll<SVGGElement, ComputedDatumGrid[]>(`g.${axesClassName}`)
318
+ // .data([i])
319
+ // .join(
320
+ // enter => {
321
+ // return enter
322
+ // .append('g')
323
+ // .classed(axesClassName, true)
324
+ // .attr('clip-path', `url(#${clipPathID})`)
325
+ // .each((d, i, g) => {
326
+ // const defsSelection = d3.select(g[i])
327
+ // .selectAll<SVGDefsElement, any>('defs')
328
+ // .data([i])
329
+ // .join('defs')
330
+
331
+ // const graphicGSelection = d3.select(g[i])
332
+ // .selectAll<SVGGElement, any>('g')
333
+ // .data([i])
334
+ // .join('g')
335
+ // .classed(graphicClassName, true)
336
+ // })
337
+ // },
338
+ // update => update,
339
+ // exit => exit.remove()
340
+ // )
341
+ // })
342
+ // },
343
+ // update => update,
344
+ // exit => exit.remove()
345
+ // )
346
+ // })
347
+ // )
348
+
349
+ // combineLatest({
350
+ // seriesSelection: seriesSelection$,
351
+ // gridContainerPosition: gridContainerPosition$
352
+ // }).pipe(
353
+ // takeUntil(destroy$),
354
+ // switchMap(async d => d)
355
+ // ).subscribe(data => {
356
+ // data.seriesSelection
357
+ // .transition()
358
+ // .attr('transform', (d, i) => {
359
+ // const translate = data.gridContainerPosition[i].translate
360
+ // const scale = data.gridContainerPosition[i].scale
361
+ // return `translate(${translate[0]}, ${translate[1]}) scale(${scale[0]}, ${scale[1]})`
362
+ // })
363
+ // })
364
+
365
+
366
+ // const axesSelection$ = combineLatest({
367
+ // seriesSelection: seriesSelection$,
368
+ // gridAxesTransform: gridAxesTransform$
369
+ // }).pipe(
370
+ // takeUntil(destroy$),
371
+ // switchMap(async d => d),
372
+ // map(data => {
373
+ // return data.seriesSelection
374
+ // .select<SVGGElement>(`g.${axesClassName}`)
375
+ // .style('transform', data.gridAxesTransform.value)
376
+ // })
377
+ // )
378
+ // const defsSelection$ = axesSelection$.pipe(
379
+ // takeUntil(destroy$),
380
+ // map(axesSelection => {
381
+ // return axesSelection.select<SVGDefsElement>('defs')
382
+ // })
383
+ // )
384
+ // const graphicGSelection$ = combineLatest({
385
+ // axesSelection: axesSelection$,
386
+ // gridGraphicTransform: gridGraphicTransform$
387
+ // }).pipe(
388
+ // takeUntil(destroy$),
389
+ // switchMap(async d => d),
390
+ // map(data => {
391
+ // const graphicGSelection = data.axesSelection
392
+ // .select<SVGGElement>(`g.${graphicClassName}`)
393
+ // graphicGSelection
394
+ // .transition()
395
+ // .duration(50)
396
+ // .style('transform', data.gridGraphicTransform.value)
397
+ // return graphicGSelection
398
+ // })
399
+ // )
400
+
401
+ const {
402
+ seriesSelection$,
403
+ axesSelection$,
404
+ defsSelection$,
405
+ graphicGSelection$
406
+ } = gridSelectionsObservable({
407
+ selection,
408
+ pluginName,
409
+ clipPathID,
410
+ seriesLabels$,
411
+ gridContainerPosition$,
412
+ gridAxesTransform$,
413
+ gridGraphicTransform$
414
+ })
415
+
416
+ const zeroYArr$ = visibleComputedLayoutData$.pipe(
417
+ takeUntil(destroy$),
418
+ map(data => {
419
+ return data.map(d => {
420
+ return d[0] ? d[0].axisY - d[0].axisYFromZero : 0
421
+ })
422
+ }),
423
+ distinctUntilChanged()
424
+ )
425
+
426
+ const barWidth$ = combineLatest({
427
+ computedData: computedData$,
428
+ visibleComputedData: visibleComputedData$,
429
+ params: fullParams$,
430
+ gridAxesSize: gridAxesSize$,
431
+ isSeriesSeprate: isSeriesSeprate$
432
+ }).pipe(
433
+ takeUntil(destroy$),
434
+ switchMap(async d => d),
435
+ map(data => {
436
+ if (data.params.barWidth) {
437
+ return data.params.barWidth
438
+ } else if (data.isSeriesSeprate) {
439
+ return calcBarWidth({
440
+ axisWidth: data.gridAxesSize.width,
441
+ groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
442
+ barAmountOfGroup: 1,
443
+ barPadding: data.params.barPadding,
444
+ barGroupPadding: data.params.barGroupPadding
445
+ })
446
+ } else {
447
+ return calcBarWidth({
448
+ axisWidth: data.gridAxesSize.width,
449
+ groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
450
+ barAmountOfGroup: data.visibleComputedData.length,
451
+ barPadding: data.params.barPadding,
452
+ barGroupPadding: data.params.barGroupPadding
453
+ })
454
+ }
455
+ }),
456
+ distinctUntilChanged()
457
+ )
458
+
459
+ // 圓角的值 [rx, ry]
460
+ const transformedBarRadius$: Observable<[number, number][]> = combineLatest({
461
+ computedData: computedData$,
462
+ // gridGraphicTransform: gridGraphicTransform$,
463
+ barWidth: barWidth$,
464
+ params: fullParams$,
465
+ // gridContainerPosition: gridContainerPosition$,
466
+ // gridAxesTransform: gridAxesTransform$
467
+ gridGraphicReverseScale: gridGraphicReverseScale$
468
+ }).pipe(
469
+ takeUntil(destroy$),
470
+ switchMap(async data => data),
471
+ map(data => {
472
+ const barHalfWidth = data.barWidth! / 2
473
+ const radius = data.params.barRadius === true ? barHalfWidth
474
+ : data.params.barRadius === false ? 0
475
+ : typeof data.params.barRadius == 'number' ? data.params.barRadius
476
+ : 0
477
+
478
+ return data.computedData.map((series, seriesIndex) => {
479
+ const gridGraphicReverseScale = data.gridGraphicReverseScale[seriesIndex] ?? data.gridGraphicReverseScale[0]
480
+
481
+ let transformedRx = radius * gridGraphicReverseScale[0]
482
+ let transformedRy = radius * gridGraphicReverseScale[1]
483
+ // if (radius == 0) {
484
+ // transformedRx = 0
485
+ // transformedRy = 0
486
+ // } else if (data.gridAxesTransform.rotate == 0) {
487
+ // transformedRx = radius
488
+ // // 抵消外層scale的變型
489
+ // / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[0].scale[0]
490
+ // transformedRy = radius
491
+ // // 抵消外層scale的變型
492
+ // / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[0].scale[1]
493
+ // } else if (data.gridAxesTransform.rotate != 0) {
494
+ // transformedRx = radius
495
+ // // 抵消外層scale的變型,由於有90度的旋轉,所以外層 (container) x和y的scale要互換
496
+ // / data.gridGraphicTransform.scale[0] / data.gridContainerPosition[0].scale[1]
497
+ // transformedRy = radius
498
+ // // 抵消外層scale的變型,由於有90度的旋轉,所以外層 (container) x和y的scale要互換
499
+ // / data.gridGraphicTransform.scale[1] / data.gridContainerPosition[0].scale[0]
500
+ // }
501
+
502
+ // 如果計算出來的x圓角值大於寬度一半則進行修正
503
+ if (transformedRx > barHalfWidth) {
504
+ const rScale = barHalfWidth / transformedRx
505
+ transformedRx = transformedRx * rScale
506
+ transformedRy = transformedRy * rScale
507
+ }
508
+
509
+ return [transformedRx, transformedRy]
510
+ })
511
+ })
512
+ )
513
+
514
+
515
+ // const seriesLabels$ = visibleComputedData$.pipe(
516
+ // takeUntil(destroy$),
517
+ // map(data => {
518
+ // const SeriesLabelSet: Set<string> = new Set()
519
+ // data.forEach(d => {
520
+ // d.forEach(_d => {
521
+ // SeriesLabelSet.add(_d.seriesLabel)
522
+ // })
523
+ // })
524
+ // return Array.from(SeriesLabelSet)
525
+ // })
526
+ // )
527
+
528
+ const groupLabels$ = visibleComputedData$.pipe(
529
+ takeUntil(destroy$),
530
+ map(data => {
531
+ const GroupLabelSet: Set<string> = new Set()
532
+ data.forEach(d => {
533
+ d.forEach(_d => {
534
+ GroupLabelSet.add(_d.groupLabel)
535
+ })
536
+ })
537
+ return Array.from(GroupLabelSet)
538
+ })
539
+ )
540
+
541
+ const barScale$ = combineLatest({
542
+ seriesLabels: seriesLabels$,
543
+ barWidth: barWidth$,
544
+ params: fullParams$,
545
+ }).pipe(
546
+ takeUntil(destroy$),
547
+ switchMap(async d => d),
548
+ map(data => {
549
+ return makeBarScale(data.barWidth, data.seriesLabels, data.params)
550
+ })
551
+ )
552
+
553
+ const transitionDuration$ = fullChartParams$.pipe(
554
+ takeUntil(destroy$),
555
+ map(d => d.transitionDuration),
556
+ distinctUntilChanged()
557
+ )
558
+
559
+ const delayGroup$ = new Observable<number>(subscriber => {
560
+ combineLatest({
561
+ groupLabels: groupLabels$,
562
+ transitionDuration: transitionDuration$,
563
+ }).pipe(
564
+ switchMap(async d => d)
565
+ ).subscribe(data => {
566
+ const delay = calcDelayGroup(data.groupLabels.length, data.transitionDuration)
567
+ subscriber.next(delay)
568
+ })
569
+ }).pipe(
570
+ takeUntil(destroy$),
571
+ distinctUntilChanged()
572
+ )
573
+
574
+ const transitionItem$ = new Observable<number>(subscriber => {
575
+ combineLatest({
576
+ groupLabels: groupLabels$,
577
+ transitionDuration: transitionDuration$
578
+ }).pipe(
579
+ switchMap(async d => d)
580
+ ).subscribe(data => {
581
+ const transition = calctransitionItem(data.groupLabels.length, data.transitionDuration)
582
+ subscriber.next(transition)
583
+ })
584
+ }).pipe(
585
+ takeUntil(destroy$),
586
+ distinctUntilChanged()
587
+ )
588
+
589
+ combineLatest({
590
+ defsSelection: defsSelection$,
591
+ gridAxesSize: gridAxesSize$,
592
+ }).pipe(
593
+ takeUntil(destroy$),
594
+ switchMap(async d => d)
595
+ ).subscribe(data => {
596
+ const clipPathData = [{
597
+ id: clipPathID,
598
+ width: data.gridAxesSize.width,
599
+ height: data.gridAxesSize.height
600
+ }]
601
+ renderClipPath({
602
+ defsSelection: data.defsSelection,
603
+ clipPathData
604
+ })
605
+ })
606
+
607
+
608
+ const highlightTarget$ = fullChartParams$.pipe(
609
+ takeUntil(destroy$),
610
+ map(d => d.highlightTarget),
611
+ distinctUntilChanged()
612
+ )
613
+
614
+ const barSelection$ = combineLatest({
615
+ graphicGSelection: graphicGSelection$,
616
+ visibleComputedLayoutData: visibleComputedLayoutData$,
617
+ // barData$: barData$,
618
+ zeroYArr: zeroYArr$,
619
+ groupLabels: groupLabels$,
620
+ barScale: barScale$,
621
+ params: fullParams$,
622
+ chartParams: fullChartParams$,
623
+ highlightTarget: highlightTarget$,
624
+ barWidth: barWidth$,
625
+ transformedBarRadius: transformedBarRadius$,
626
+ delayGroup: delayGroup$,
627
+ transitionItem: transitionItem$,
628
+ isSeriesSeprate: isSeriesSeprate$
629
+ }).pipe(
630
+ takeUntil(destroy$),
631
+ switchMap(async (d) => d),
632
+ map(data => {
633
+ return renderRectBars({
634
+ graphicGSelection: data.graphicGSelection,
635
+ rectClassName,
636
+ visibleComputedLayoutData: data.visibleComputedLayoutData,
637
+ zeroYArr: data.zeroYArr,
638
+ groupLabels: data.groupLabels,
639
+ barScale: data.barScale,
640
+ params: data.params,
641
+ chartParams: data.chartParams,
642
+ barWidth: data.barWidth,
643
+ transformedBarRadius: data.transformedBarRadius,
644
+ delayGroup: data.delayGroup,
645
+ transitionItem: data.transitionItem,
646
+ isSeriesSeprate: data.isSeriesSeprate
647
+ })
648
+ })
649
+ )
650
+
651
+ combineLatest({
652
+ barSelection: barSelection$,
653
+ computedData: computedData$,
654
+ highlightTarget: highlightTarget$,
655
+ SeriesDataMap: SeriesDataMap$,
656
+ GroupDataMap: GroupDataMap$,
657
+ }).pipe(
658
+ takeUntil(destroy$),
659
+ switchMap(async (d) => d),
660
+ ).subscribe(data => {
661
+ data.barSelection
662
+ .on('mouseover', (event, datum) => {
663
+ event.stopPropagation()
664
+
665
+ event$.next({
666
+ type: 'grid',
667
+ eventName: 'mouseover',
668
+ pluginName,
669
+ highlightTarget: data.highlightTarget,
670
+ datum,
671
+ gridIndex: datum.gridIndex,
672
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
673
+ seriesIndex: datum.seriesIndex,
674
+ seriesLabel: datum.seriesLabel,
675
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
676
+ groupIndex: datum.groupIndex,
677
+ groupLabel: datum.groupLabel,
678
+ event,
679
+ data: data.computedData
680
+ })
681
+ })
682
+ .on('mousemove', (event, datum) => {
683
+ event.stopPropagation()
684
+
685
+ event$.next({
686
+ type: 'grid',
687
+ eventName: 'mousemove',
688
+ pluginName,
689
+ highlightTarget: data.highlightTarget,
690
+ datum,
691
+ gridIndex: datum.gridIndex,
692
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
693
+ seriesIndex: datum.seriesIndex,
694
+ seriesLabel: datum.seriesLabel,
695
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
696
+ groupIndex: datum.groupIndex,
697
+ groupLabel: datum.groupLabel,
698
+ event,
699
+ data: data.computedData
700
+ })
701
+ })
702
+ .on('mouseout', (event, datum) => {
703
+ event.stopPropagation()
704
+
705
+ event$.next({
706
+ type: 'grid',
707
+ eventName: 'mouseout',
708
+ pluginName,
709
+ highlightTarget: data.highlightTarget,
710
+ datum,
711
+ gridIndex: datum.gridIndex,
712
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
713
+ seriesIndex: datum.seriesIndex,
714
+ seriesLabel: datum.seriesLabel,
715
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
716
+ groupIndex: datum.groupIndex,
717
+ groupLabel: datum.groupLabel,
718
+ event,
719
+ data: data.computedData
720
+ })
721
+ })
722
+ .on('click', (event, datum) => {
723
+ event.stopPropagation()
724
+
725
+ event$.next({
726
+ type: 'grid',
727
+ eventName: 'click',
728
+ pluginName,
729
+ highlightTarget: data.highlightTarget,
730
+ datum,
731
+ gridIndex: datum.gridIndex,
732
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
733
+ seriesIndex: datum.seriesIndex,
734
+ seriesLabel: datum.seriesLabel,
735
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
736
+ groupIndex: datum.groupIndex,
737
+ groupLabel: datum.groupLabel,
738
+ event,
739
+ data: data.computedData
740
+ })
741
+ })
742
+ })
743
+
744
+
745
+ combineLatest({
746
+ barSelection: barSelection$,
747
+ highlight: gridHighlight$.pipe(
748
+ map(data => data.map(d => d.id))
749
+ ),
750
+ fullChartParams: fullChartParams$
751
+ }).pipe(
752
+ takeUntil(destroy$),
753
+ switchMap(async d => d)
754
+ ).subscribe(data => {
755
+ highlight({
756
+ selection: data.barSelection,
757
+ ids: data.highlight,
758
+ fullChartParams: data.fullChartParams
759
+ })
760
+ })
761
+
762
+
763
+ return () => {
764
+ destroy$.next(undefined)
765
+ }
765
766
  }