@orbcharts/plugins-basic 3.0.0-beta.1 → 3.0.0-beta.10

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 (212) hide show
  1. package/LICENSE +200 -200
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  9. package/dist/{src/base/BaseBarStack.d.ts → orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts} +6 -6
  10. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
  11. package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +4 -4
  12. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  13. package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +2 -2
  14. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
  15. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  16. package/dist/orbcharts-plugins-basic/src/index.d.ts +7 -0
  17. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +4 -4
  18. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +3 -3
  19. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
  20. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  21. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  23. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  24. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  25. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  26. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  27. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  28. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  29. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  30. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  31. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  32. package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +6 -0
  33. package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +5 -0
  34. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
  35. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  36. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  37. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  38. package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
  39. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  40. package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +1 -1
  41. package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +2 -2
  42. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  43. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  44. package/dist/orbcharts-plugins-basic.es.js +13264 -10298
  45. package/dist/orbcharts-plugins-basic.umd.js +105 -55
  46. package/dist/src/index.d.ts +1 -5
  47. package/lib/core-types.ts +7 -7
  48. package/lib/core.ts +6 -6
  49. package/lib/plugins-basic-types.ts +6 -6
  50. package/package.json +44 -44
  51. package/src/base/BaseBars.ts +765 -765
  52. package/src/base/BaseBarsTriangle.ts +676 -674
  53. package/src/base/BaseDots.ts +464 -515
  54. package/src/base/BaseGroupAxis.ts +679 -679
  55. package/src/base/BaseLegend.ts +684 -680
  56. package/src/base/BaseLineAreas.ts +629 -629
  57. package/src/base/BaseLines.ts +706 -706
  58. package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +782 -780
  59. package/src/base/BaseTooltip.ts +385 -382
  60. package/src/base/BaseValueAxis.ts +583 -580
  61. package/src/base/types.ts +2 -2
  62. package/src/const.ts +30 -30
  63. package/src/grid/defaults.ts +246 -244
  64. package/src/grid/gridObservables.ts +554 -545
  65. package/src/grid/index.ts +16 -16
  66. package/src/grid/plugins/Bars.ts +69 -69
  67. package/src/grid/plugins/BarsPN.ts +66 -66
  68. package/src/grid/plugins/BarsTriangle.ts +73 -73
  69. package/src/grid/plugins/Dots.ts +68 -68
  70. package/src/grid/plugins/GridLegend.ts +107 -107
  71. package/src/grid/plugins/GridTooltip.ts +66 -66
  72. package/src/grid/plugins/GridZoom.ts +218 -218
  73. package/src/grid/plugins/GroupAux.ts +1103 -1098
  74. package/src/grid/plugins/GroupAxis.ts +97 -97
  75. package/src/grid/plugins/LineAreas.ts +65 -65
  76. package/src/grid/plugins/Lines.ts +59 -59
  77. package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +64 -64
  78. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
  79. package/src/grid/plugins/ValueAxis.ts +94 -93
  80. package/src/index.ts +6 -9
  81. package/src/multiGrid/defaults.ts +224 -224
  82. package/src/multiGrid/index.ts +15 -15
  83. package/src/multiGrid/multiGridObservables.ts +49 -49
  84. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  85. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  86. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  87. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  88. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  89. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  90. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  91. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  92. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +106 -106
  93. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
  94. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  95. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +299 -298
  96. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  97. package/src/multiValue/defaults.ts +167 -0
  98. package/src/multiValue/index.ts +9 -0
  99. package/src/multiValue/multiValueObservables.ts +297 -0
  100. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  101. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  102. package/src/multiValue/plugins/Scatter.ts +426 -0
  103. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  104. package/src/multiValue/plugins/XYAux.ts +682 -0
  105. package/src/multiValue/plugins/XYAxes.ts +685 -0
  106. package/src/multiValue/plugins/XYZoom.ts +300 -0
  107. package/src/noneData/defaults.ts +102 -102
  108. package/src/noneData/index.ts +3 -3
  109. package/src/noneData/plugins/Container.ts +28 -28
  110. package/src/noneData/plugins/Tooltip.ts +374 -374
  111. package/src/relationship/defaults.ts +196 -0
  112. package/src/relationship/index.ts +5 -0
  113. package/src/relationship/plugins/ForceDirected.ts +1167 -0
  114. package/src/relationship/plugins/ForceDirectedBubbles.ts +1391 -0
  115. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  116. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  117. package/src/relationship/relationshipObservables.ts +50 -0
  118. package/src/series/defaults.ts +206 -206
  119. package/src/series/index.ts +9 -9
  120. package/src/series/plugins/Bubbles.ts +606 -603
  121. package/src/series/plugins/Pie.ts +623 -623
  122. package/src/series/plugins/PieEventTexts.ts +284 -283
  123. package/src/series/plugins/PieLabels.ts +640 -640
  124. package/src/series/plugins/Rose.ts +516 -516
  125. package/src/series/plugins/RoseLabels.ts +600 -600
  126. package/src/series/plugins/SeriesLegend.ts +107 -107
  127. package/src/series/plugins/SeriesTooltip.ts +66 -66
  128. package/src/series/seriesObservables.ts +145 -145
  129. package/src/series/seriesUtils.ts +51 -51
  130. package/src/tree/defaults.ts +78 -78
  131. package/src/tree/index.ts +4 -4
  132. package/src/tree/plugins/TreeLegend.ts +100 -107
  133. package/src/tree/plugins/TreeMap.ts +333 -333
  134. package/src/tree/plugins/TreeTooltip.ts +66 -66
  135. package/src/utils/commonUtils.ts +21 -21
  136. package/src/utils/d3Graphics.ts +174 -174
  137. package/src/utils/d3Utils.ts +74 -73
  138. package/src/utils/observables.ts +14 -14
  139. package/src/utils/orbchartsUtils.ts +116 -100
  140. package/tsconfig.base.json +13 -13
  141. package/tsconfig.json +2 -2
  142. package/vite.config.js +22 -22
  143. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  144. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  145. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  146. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  147. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  148. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  149. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  150. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  151. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  152. package/dist/src/relationship/index.d.ts +0 -0
  153. package/dist/src/relationship/plugins/Relationship.d.ts +0 -0
  154. package/src/base/BaseGroupArea.ts +0 -0
  155. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  156. package/src/relationship/plugins/Relationship.ts +0 -0
  157. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  158. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  159. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  160. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  161. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  162. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  163. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  164. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  165. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  166. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  167. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  168. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  169. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  170. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  171. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  172. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  173. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  174. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  175. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  176. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  177. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  178. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  179. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  180. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  181. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  182. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  183. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  184. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  185. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  186. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  187. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  188. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  189. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  190. /package/dist/{src/base/BaseGroupArea.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts} +0 -0
  191. /package/dist/{src/multiValue/index.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts} +0 -0
  192. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  193. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  194. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  195. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  196. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  197. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  198. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  199. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  200. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  201. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  202. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  203. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  204. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  205. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  206. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  207. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  208. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  209. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  210. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  211. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  212. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -1,675 +1,677 @@
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
- ComputedLayoutDatumGrid,
16
- ComputedLayoutDataGrid,
17
- DataFormatterTypeMap,
18
- EventGrid,
19
- ChartParams,
20
- GridContainerPosition,
21
- Layout,
22
- TransformData
23
- } from '../../lib/core-types'
24
- import type { BaseBarsTriangleParams } from '../../lib/plugins-basic-types'
25
- import { getD3TransitionEase } from '../utils/d3Utils'
26
- import { getClassName, getUniID } from '../utils/orbchartsUtils'
27
- import { gridSelectionsObservable } from '../grid/gridObservables'
28
-
29
- // export interface BaseBarsTriangleParams {
30
- // barWidth: number
31
- // barPadding: number
32
- // barGroupPadding: number // 群組和群組間的間隔
33
- // linearGradientOpacity: [number, number]
34
- // }
35
-
36
- interface BaseBarsContext {
37
- selection: d3.Selection<any, unknown, any, unknown>
38
- computedData$: Observable<ComputedDataGrid>
39
- computedLayoutData$: Observable<ComputedLayoutDataGrid>
40
- visibleComputedData$: Observable<ComputedDatumGrid[][]>
41
- visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
42
- fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
43
- seriesLabels$: Observable<string[]>
44
- SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
45
- GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
46
- fullParams$: Observable<BaseBarsTriangleParams>
47
- fullChartParams$: Observable<ChartParams>
48
- gridAxesTransform$: Observable<TransformData>
49
- gridGraphicTransform$: Observable<TransformData>
50
- gridAxesSize$: Observable<{
51
- width: number;
52
- height: number;
53
- }>
54
- gridHighlight$: Observable<ComputedDatumGrid[]>
55
- gridContainerPosition$: Observable<GridContainerPosition[]>
56
- isSeriesSeprate$: Observable<boolean>
57
- event$: Subject<EventGrid>
58
- }
59
-
60
-
61
- interface RenderBarParams {
62
- graphicGSelection: d3.Selection<SVGGElement, unknown, any, any>
63
- pathGClassName: string
64
- pathClassName: string
65
- visibleComputedLayoutData: ComputedLayoutDataGrid
66
- linearGradientIds: string[]
67
- zeroYArr: number[]
68
- groupLabels: string[]
69
- barScale: d3.ScalePoint<string>
70
- params: BaseBarsTriangleParams
71
- chartParams: ChartParams
72
- barWidth: number
73
- delayGroup: number
74
- transitionItem: number
75
- isSeriesSeprate: boolean
76
- }
77
-
78
- // interface BarDatumGrid extends ComputedDatumGrid {
79
- // linearGradientId: string
80
- // }
81
-
82
- type ClipPathDatum = {
83
- id: string;
84
- // x: number;
85
- // y: number;
86
- width: number;
87
- height: number;
88
- }
89
-
90
- // const pluginName = 'BaseBarsTriangle'
91
- // const pathGClassName = getClassName(pluginName, 'pathG')
92
- // const pathClassName = getClassName(pluginName, 'path')
93
- // group的delay在動畫中的佔比(剩餘部份的時間為圖形本身的動畫時間,因為delay時間和最後一個group的動畫時間加總為1)
94
- const groupDelayProportionOfDuration = 0.3
95
-
96
- function calcBarWidth ({ axisWidth, groupAmount, barAmountOfGroup, barPadding = 0, barGroupPadding = 0 }: {
97
- axisWidth: number
98
- groupAmount: number
99
- barAmountOfGroup: number
100
- barPadding: number
101
- barGroupPadding: number
102
- }) {
103
- const eachGroupWidth = axisWidth / (groupAmount - 1)
104
- const width = (eachGroupWidth - barGroupPadding) / barAmountOfGroup - barPadding
105
- return width > 1 ? width : 1
106
- }
107
-
108
- function makeBarScale (barWidth: number, seriesLabels: string[], params: BaseBarsTriangleParams) {
109
- const barHalfWidth = barWidth! / 2
110
- const barGroupWidth = barWidth * seriesLabels.length + params.barPadding! * seriesLabels.length
111
- return d3.scalePoint()
112
- .domain(seriesLabels)
113
- .range([-barGroupWidth / 2 + barHalfWidth, barGroupWidth / 2 - barHalfWidth])
114
- }
115
-
116
- function calcDelayGroup (barGroupAmount: number, totalDuration: number) {
117
- if (barGroupAmount <= 1) {
118
- // 一筆內計算會出錯所以不算
119
- return 0
120
- }
121
- return totalDuration / (barGroupAmount - 1) * groupDelayProportionOfDuration // 依group數量計算
122
- }
123
-
124
- function calctransitionItem (barGroupAmount: number, totalDuration: number) {
125
- if (barGroupAmount <= 1) {
126
- // 一筆內不會有delay
127
- return totalDuration
128
- }
129
- return totalDuration * (1 - groupDelayProportionOfDuration) // delay後剩餘的時間
130
- }
131
-
132
- function renderTriangleBars ({ graphicGSelection, pathGClassName, pathClassName, visibleComputedLayoutData, linearGradientIds, zeroYArr, groupLabels, barScale, params, chartParams, barWidth, delayGroup, transitionItem, isSeriesSeprate }: RenderBarParams) {
133
-
134
- const barHalfWidth = barWidth! / 2
135
-
136
- graphicGSelection
137
- .each((d, seriesIndex, g) => {
138
- // g
139
- const gSelection = d3.select(g[seriesIndex])
140
- .selectAll<SVGGElement, ComputedDatumGrid>(`g.${pathGClassName}`)
141
- .data(visibleComputedLayoutData[seriesIndex] ?? [])
142
- .join(
143
- enter => {
144
- const enterSelection = enter
145
- .append('g')
146
- .classed(pathGClassName, true)
147
- .attr('cursor', 'pointer')
148
- enterSelection
149
- .append('path')
150
- .classed(pathClassName, true)
151
- .style('vector-effect', 'non-scaling-stroke')
152
- .attr('d', (d) => {
153
- const x = -barHalfWidth
154
- const y1 = zeroYArr[seriesIndex]
155
- const y2 = zeroYArr[seriesIndex]
156
- return `M${x},${y1} L${x + (barWidth! / 2)},${y2} ${x + barWidth!},${y1}`
157
- })
158
- return enterSelection
159
- },
160
- update => update,
161
- exit => exit.remove()
162
- )
163
- .attr('transform', d => `translate(${isSeriesSeprate ? 0 : barScale(d.seriesLabel)!}, 0)`)
164
-
165
- // path
166
- gSelection.select(`path.${pathClassName}`)
167
- .attr('height', d => Math.abs(d.axisYFromZero))
168
- .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
169
- .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
170
- // .style('fill', d => `url(#${d.linearGradientId})`)
171
- .style('fill', d => `url(#${linearGradientIds[d.seriesIndex]})`)
172
- .attr('stroke', d => d.color)
173
- .attr('transform', d => `translate(${(d ? d.axisX : 0)}, ${0})`)
174
- .transition()
175
- .duration(transitionItem)
176
- .ease(getD3TransitionEase(chartParams.transitionEase))
177
- .delay((d, i) => d.groupIndex * delayGroup)
178
- // .attr('transform', `translate(${-barHalfWidth}, 0)`)
179
- // .attr('x', d => itemScale(d.itemLabel)!)
180
- // .attr('y', d => -d.y)
181
- .attr('d', (d) => {
182
- const x = -barHalfWidth
183
- const y1 = zeroYArr[seriesIndex]
184
- const y2 = d.axisY
185
- return `M${x},${y1} L${x + (barWidth! / 2)},${y2} ${x + barWidth!},${y1}`
186
- })
187
- })
188
-
189
- const graphicBarSelection: d3.Selection<SVGPathElement, ComputedDatumGrid, any, any> = graphicGSelection.selectAll(`path.${pathClassName}`)
190
-
191
- return graphicBarSelection
192
- }
193
-
194
- function renderLinearGradient ({ defsSelection, computedData, linearGradientIds, params }: {
195
- defsSelection: d3.Selection<SVGDefsElement, any, any, any>
196
- computedData: ComputedDataGrid
197
- linearGradientIds: string[]
198
- params: BaseBarsTriangleParams
199
- }) {
200
- defsSelection!
201
- .selectAll<SVGLinearGradientElement, ComputedDatumGrid>('linearGradient')
202
- .data(computedData ?? [])
203
- .join(
204
- enter => {
205
- return enter
206
- .append('linearGradient')
207
- .attr('x1', '0%')
208
- .attr('x2', '0%')
209
- .attr('y1', '100%')
210
- .attr('y2', '0%')
211
- .attr('spreadMethod', 'pad')
212
- },
213
- update => update,
214
- exit => exit.remove()
215
- )
216
- .attr('id', (d, i) => {
217
- return d[0] ? linearGradientIds[d[0].seriesIndex] : ''
218
- })
219
- .html((d, i) => {
220
- const color = d[0] ? d[0].color : ''
221
- return `
222
- <stop offset="0%" stop-color="${color}" stop-opacity="${params.linearGradientOpacity[0]}"/>
223
- <stop offset="100%" stop-color="${color}" stop-opacity="${params.linearGradientOpacity[1]}"/>
224
- `
225
- })
226
-
227
- }
228
-
229
-
230
- function renderClipPath ({ defsSelection, clipPathData }: {
231
- defsSelection: d3.Selection<SVGDefsElement, any, any, any>
232
- clipPathData: ClipPathDatum[]
233
- }) {
234
- const clipPath = defsSelection
235
- .selectAll<SVGClipPathElement, Layout>('clipPath')
236
- .data(clipPathData)
237
- .join(
238
- enter => {
239
- return enter
240
- .append('clipPath')
241
- },
242
- update => update,
243
- exit => exit.remove()
244
- )
245
- .attr('id', d => d.id)
246
- .each((d, i, g) => {
247
- const rect = d3.select(g[i])
248
- .selectAll<SVGRectElement, typeof d>('rect')
249
- .data([d])
250
- .join(
251
- enter => {
252
- return enter
253
- .append('rect')
254
- },
255
- update => update,
256
- exit => exit.remove()
257
- )
258
- .attr('x', 0)
259
- .attr('y', 0)
260
- .attr('width', _d => _d.width)
261
- .attr('height', _d => _d.height)
262
- })
263
- }
264
-
265
- function highlight ({ selection, ids, fullChartParams }: {
266
- selection: d3.Selection<SVGPathElement, ComputedDatumGrid, any, any>
267
- ids: string[]
268
- fullChartParams: ChartParams
269
- }) {
270
- selection.interrupt('highlight')
271
-
272
- const removeHighlight = () => {
273
- selection
274
- .transition('highlight')
275
- .duration(200)
276
- .style('opacity', 1)
277
- }
278
-
279
- if (!ids.length) {
280
- removeHighlight()
281
- return
282
- }
283
-
284
- selection
285
- .each((d, i, n) => {
286
- if (ids.includes(d.id)) {
287
- d3.select(n[i])
288
- .style('opacity', 1)
289
- } else {
290
- d3.select(n[i])
291
- .style('opacity', fullChartParams.styles.unhighlightedOpacity)
292
- }
293
- })
294
- }
295
-
296
-
297
- export const createBaseBarsTriangle: BasePluginFn<BaseBarsContext> = (pluginName: string, {
298
- selection,
299
- computedData$,
300
- computedLayoutData$,
301
- visibleComputedData$,
302
- visibleComputedLayoutData$,
303
- fullDataFormatter$,
304
- seriesLabels$,
305
- SeriesDataMap$,
306
- GroupDataMap$,
307
- fullParams$,
308
- fullChartParams$,
309
- gridAxesTransform$,
310
- gridGraphicTransform$,
311
- gridAxesSize$,
312
- gridHighlight$,
313
- gridContainerPosition$,
314
- isSeriesSeprate$,
315
- event$
316
- }) => {
317
- const destroy$ = new Subject()
318
-
319
- const clipPathID = getUniID(pluginName, 'clipPath-box')
320
- const pathGClassName = getClassName(pluginName, 'pathG')
321
- const pathClassName = getClassName(pluginName, 'path')
322
-
323
- const {
324
- seriesSelection$,
325
- axesSelection$,
326
- defsSelection$,
327
- graphicGSelection$
328
- } = gridSelectionsObservable({
329
- selection,
330
- pluginName,
331
- clipPathID,
332
- seriesLabels$,
333
- gridContainerPosition$,
334
- gridAxesTransform$,
335
- gridGraphicTransform$
336
- })
337
-
338
- // valueAxis 的起始座標
339
- const valueAxisStart$: Observable<number> = gridGraphicTransform$.pipe(
340
- takeUntil(destroy$),
341
- map(data => {
342
- // 抵消掉外層的變型
343
- return - data.translate[1] / data.scale[1]
344
- })
345
- )
346
-
347
- const zeroYArr$ = visibleComputedLayoutData$.pipe(
348
- // map(d => d[0] && d[0][0]
349
- // ? d[0][0].axisY - d[0][0].axisYFromZero
350
- // : 0),
351
- map(data => {
352
- return data.map(d => {
353
- return d[0] ? d[0].axisY - d[0].axisYFromZero : 0
354
- })
355
- }),
356
- distinctUntilChanged()
357
- )
358
-
359
- const barWidth$ = combineLatest({
360
- computedData: computedData$,
361
- visibleComputedData: visibleComputedData$,
362
- params: fullParams$,
363
- gridAxesSize: gridAxesSize$,
364
- isSeriesSeprate: isSeriesSeprate$
365
- }).pipe(
366
- takeUntil(destroy$),
367
- switchMap(async d => d),
368
- map(data => {
369
- if (data.params.barWidth) {
370
- return data.params.barWidth
371
- } else if (data.isSeriesSeprate) {
372
- return calcBarWidth({
373
- axisWidth: data.gridAxesSize.width,
374
- groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
375
- barAmountOfGroup: 1,
376
- barPadding: data.params.barPadding,
377
- barGroupPadding: data.params.barGroupPadding
378
- })
379
- } else {
380
- return calcBarWidth({
381
- axisWidth: data.gridAxesSize.width,
382
- groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
383
- barAmountOfGroup: data.visibleComputedData.length,
384
- barPadding: data.params.barPadding,
385
- barGroupPadding: data.params.barGroupPadding
386
- })
387
- }
388
- })
389
- )
390
-
391
- // const seriesLabels$ = visibleComputedData$.pipe(
392
- // takeUntil(destroy$),
393
- // map(data => {
394
- // const SeriesLabelSet: Set<string> = new Set()
395
- // data.forEach(d => {
396
- // d.forEach(_d => {
397
- // SeriesLabelSet.add(_d.seriesLabel)
398
- // })
399
- // })
400
- // return Array.from(SeriesLabelSet)
401
- // })
402
- // )
403
-
404
- const groupLabels$ = visibleComputedData$.pipe(
405
- takeUntil(destroy$),
406
- map(data => {
407
- const GroupLabelSet: Set<string> = new Set()
408
- data.forEach(d => {
409
- d.forEach(_d => {
410
- GroupLabelSet.add(_d.groupLabel)
411
- })
412
- })
413
- return Array.from(GroupLabelSet)
414
- })
415
- )
416
-
417
- const barScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
418
- combineLatest({
419
- seriesLabels: seriesLabels$,
420
- barWidth: barWidth$,
421
- params: fullParams$,
422
- }).pipe(
423
- takeUntil(destroy$),
424
- switchMap(async d => d)
425
- ).subscribe(data => {
426
- const barScale = makeBarScale(data.barWidth, data.seriesLabels, data.params)
427
- subscriber.next(barScale)
428
- })
429
- })
430
-
431
- const transitionDuration$ = fullChartParams$.pipe(
432
- takeUntil(destroy$),
433
- map(d => d.transitionDuration),
434
- distinctUntilChanged()
435
- )
436
-
437
- const delayGroup$ = new Observable<number>(subscriber => {
438
- combineLatest({
439
- groupLabels: groupLabels$,
440
- transitionDuration: transitionDuration$,
441
- }).pipe(
442
- switchMap(async d => d)
443
- ).subscribe(data => {
444
- const delay = calcDelayGroup(data.groupLabels.length, data.transitionDuration)
445
- subscriber.next(delay)
446
- })
447
- }).pipe(
448
- takeUntil(destroy$),
449
- distinctUntilChanged()
450
- )
451
-
452
- const transitionItem$ = new Observable<number>(subscriber => {
453
- combineLatest({
454
- groupLabels: groupLabels$,
455
- transitionDuration: transitionDuration$
456
- }).pipe(
457
- switchMap(async d => d)
458
- ).subscribe(data => {
459
- const transition = calctransitionItem(data.groupLabels.length, data.transitionDuration)
460
- subscriber.next(transition)
461
- })
462
- }).pipe(
463
- takeUntil(destroy$),
464
- distinctUntilChanged()
465
- )
466
-
467
- //
468
-
469
- combineLatest({
470
- defsSelection: defsSelection$,
471
- gridAxesSize: gridAxesSize$,
472
- }).pipe(
473
- takeUntil(destroy$),
474
- switchMap(async d => d)
475
- ).subscribe(data => {
476
- const clipPathData = [{
477
- id: clipPathID,
478
- width: data.gridAxesSize.width,
479
- height: data.gridAxesSize.height
480
- }]
481
- renderClipPath({
482
- defsSelection: data.defsSelection,
483
- clipPathData
484
- })
485
- })
486
-
487
-
488
- const highlightTarget$ = fullChartParams$.pipe(
489
- takeUntil(destroy$),
490
- map(d => d.highlightTarget),
491
- distinctUntilChanged()
492
- )
493
-
494
- const linearGradientIds$ = seriesLabels$.pipe(
495
- takeUntil(destroy$),
496
- map(d => d.map((d, i) => {
497
- return getUniID(pluginName, `lineargradient-${d}`)
498
- }))
499
- )
500
-
501
- // const barData$ = combineLatest({
502
- // linearGradientIds: linearGradientIds$,
503
- // computedData: computedData$
504
- // }).pipe(
505
- // takeUntil(destroy$),
506
- // switchMap(async d => d),
507
- // map(data => {
508
- // return data.computedData.map((series, seriesIndex) => {
509
- // return series.map((_d, _i) => {
510
- // return <BarDatumGrid>{
511
- // linearGradientId: data.linearGradientIds[seriesIndex],
512
- // ..._d
513
- // }
514
- // })
515
- // })
516
- // })
517
- // )
518
-
519
- const barSelection$ = combineLatest({
520
- graphicGSelection: graphicGSelection$,
521
- defsSelection: defsSelection$,
522
- computedData: computedData$,
523
- visibleComputedLayoutData: visibleComputedLayoutData$,
524
- linearGradientIds: linearGradientIds$,
525
- zeroYArr: zeroYArr$,
526
- groupLabels: groupLabels$,
527
- barScale: barScale$,
528
- params: fullParams$,
529
- chartParams: fullChartParams$,
530
- barWidth: barWidth$,
531
- delayGroup: delayGroup$,
532
- transitionItem: transitionItem$,
533
- isSeriesSeprate: isSeriesSeprate$
534
- }).pipe(
535
- takeUntil(destroy$),
536
- switchMap(async (d) => d),
537
- map(data => {
538
- renderLinearGradient({
539
- defsSelection: data.defsSelection,
540
- computedData: data.computedData,
541
- linearGradientIds: data.linearGradientIds,
542
- params: data.params
543
- })
544
-
545
- return renderTriangleBars({
546
- graphicGSelection: data.graphicGSelection,
547
- pathGClassName,
548
- pathClassName,
549
- visibleComputedLayoutData: data.visibleComputedLayoutData,
550
- linearGradientIds: data.linearGradientIds,
551
- zeroYArr: data.zeroYArr,
552
- groupLabels: data.groupLabels,
553
- barScale: data.barScale,
554
- params: data.params,
555
- chartParams: data.chartParams,
556
- barWidth: data.barWidth,
557
- delayGroup: data.delayGroup,
558
- transitionItem: data.transitionItem,
559
- isSeriesSeprate: data.isSeriesSeprate
560
- })
561
- })
562
- )
563
-
564
- combineLatest({
565
- barSelection: barSelection$,
566
- computedData: computedData$,
567
- highlightTarget: highlightTarget$,
568
- SeriesDataMap: SeriesDataMap$,
569
- GroupDataMap: GroupDataMap$,
570
- }).subscribe(data => {
571
-
572
- data.barSelection!
573
- .on('mouseover', (event, datum) => {
574
- event.stopPropagation()
575
-
576
- event$.next({
577
- type: 'grid',
578
- eventName: 'mouseover',
579
- pluginName,
580
- highlightTarget: data.highlightTarget,
581
- datum,
582
- gridIndex: datum.gridIndex,
583
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
584
- seriesIndex: datum.seriesIndex,
585
- seriesLabel: datum.seriesLabel,
586
- groups: data.GroupDataMap.get(datum.groupLabel)!,
587
- groupIndex: datum.groupIndex,
588
- groupLabel: datum.groupLabel,
589
- event,
590
- data: data.computedData
591
- })
592
- })
593
- .on('mousemove', (event, datum) => {
594
- event.stopPropagation()
595
-
596
- event$.next({
597
- type: 'grid',
598
- eventName: 'mousemove',
599
- pluginName,
600
- highlightTarget: data.highlightTarget,
601
- datum,
602
- gridIndex: datum.gridIndex,
603
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
604
- seriesIndex: datum.seriesIndex,
605
- seriesLabel: datum.seriesLabel,
606
- groups: data.GroupDataMap.get(datum.groupLabel)!,
607
- groupIndex: datum.groupIndex,
608
- groupLabel: datum.groupLabel,
609
- event,
610
- data: data.computedData
611
- })
612
- })
613
- .on('mouseout', (event, datum) => {
614
- event.stopPropagation()
615
-
616
- event$.next({
617
- type: 'grid',
618
- eventName: 'mouseout',
619
- pluginName,
620
- highlightTarget: data.highlightTarget,
621
- datum,
622
- gridIndex: datum.gridIndex,
623
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
624
- seriesIndex: datum.seriesIndex,
625
- seriesLabel: datum.seriesLabel,
626
- groups: data.GroupDataMap.get(datum.groupLabel)!,
627
- groupIndex: datum.groupIndex,
628
- groupLabel: datum.groupLabel,
629
- event,
630
- data: data.computedData
631
- })
632
- })
633
- .on('click', (event, datum) => {
634
- event.stopPropagation()
635
-
636
- event$.next({
637
- type: 'grid',
638
- eventName: 'click',
639
- pluginName,
640
- highlightTarget: data.highlightTarget,
641
- datum,
642
- gridIndex: datum.gridIndex,
643
- series: data.SeriesDataMap.get(datum.seriesLabel)!,
644
- seriesIndex: datum.seriesIndex,
645
- seriesLabel: datum.seriesLabel,
646
- groups: data.GroupDataMap.get(datum.groupLabel)!,
647
- groupIndex: datum.groupIndex,
648
- groupLabel: datum.groupLabel,
649
- event,
650
- data: data.computedData
651
- })
652
- })
653
- })
654
-
655
- combineLatest({
656
- barSelection: barSelection$,
657
- highlight: gridHighlight$.pipe(
658
- map(data => data.map(d => d.id))
659
- ),
660
- fullChartParams: fullChartParams$
661
- }).pipe(
662
- takeUntil(destroy$),
663
- switchMap(async d => d)
664
- ).subscribe(data => {
665
- highlight({
666
- selection: data.barSelection,
667
- ids: data.highlight,
668
- fullChartParams: data.fullChartParams
669
- })
670
- })
671
-
672
- return () => {
673
- destroy$.next(undefined)
674
- }
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
+ ComputedLayoutDatumGrid,
16
+ ComputedLayoutDataGrid,
17
+ DataFormatterTypeMap,
18
+ EventGrid,
19
+ ChartParams,
20
+ ContainerPositionScaled,
21
+ Layout,
22
+ TransformData
23
+ } from '../../lib/core-types'
24
+ import type { BaseBarsTriangleParams } from '../../lib/plugins-basic-types'
25
+ import { getD3TransitionEase } from '../utils/d3Utils'
26
+ import { getClassName, getUniID } from '../utils/orbchartsUtils'
27
+ import { gridSelectionsObservable } from '../grid/gridObservables'
28
+
29
+ // export interface BaseBarsTriangleParams {
30
+ // barWidth: number
31
+ // barPadding: number
32
+ // barGroupPadding: number // 群組和群組間的間隔
33
+ // linearGradientOpacity: [number, number]
34
+ // }
35
+
36
+ interface BaseBarsContext {
37
+ selection: d3.Selection<any, unknown, any, unknown>
38
+ computedData$: Observable<ComputedDataGrid>
39
+ computedLayoutData$: Observable<ComputedLayoutDataGrid>
40
+ visibleComputedData$: Observable<ComputedDatumGrid[][]>
41
+ visibleComputedLayoutData$: Observable<ComputedLayoutDataGrid>
42
+ fullDataFormatter$: Observable<DataFormatterTypeMap<'grid'>>
43
+ seriesLabels$: Observable<string[]>
44
+ SeriesDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
45
+ GroupDataMap$: Observable<Map<string, ComputedDatumGrid[]>>
46
+ fullParams$: Observable<BaseBarsTriangleParams>
47
+ fullChartParams$: Observable<ChartParams>
48
+ gridAxesTransform$: Observable<TransformData>
49
+ gridGraphicTransform$: Observable<TransformData>
50
+ gridAxesSize$: Observable<{
51
+ width: number;
52
+ height: number;
53
+ }>
54
+ gridHighlight$: Observable<ComputedDatumGrid[]>
55
+ gridContainerPosition$: Observable<ContainerPositionScaled[]>
56
+ isSeriesSeprate$: Observable<boolean>
57
+ event$: Subject<EventGrid>
58
+ }
59
+
60
+
61
+ interface RenderBarParams {
62
+ graphicGSelection: d3.Selection<SVGGElement, unknown, any, any>
63
+ pathGClassName: string
64
+ pathClassName: string
65
+ visibleComputedLayoutData: ComputedLayoutDataGrid
66
+ linearGradientIds: string[]
67
+ zeroYArr: number[]
68
+ groupLabels: string[]
69
+ barScale: d3.ScalePoint<string>
70
+ params: BaseBarsTriangleParams
71
+ chartParams: ChartParams
72
+ barWidth: number
73
+ delayGroup: number
74
+ transitionItem: number
75
+ isSeriesSeprate: boolean
76
+ }
77
+
78
+ // interface BarDatumGrid extends ComputedDatumGrid {
79
+ // linearGradientId: string
80
+ // }
81
+
82
+ type ClipPathDatum = {
83
+ id: string;
84
+ // x: number;
85
+ // y: number;
86
+ width: number;
87
+ height: number;
88
+ }
89
+
90
+ // const pluginName = 'BaseBarsTriangle'
91
+ // const pathGClassName = getClassName(pluginName, 'pathG')
92
+ // const pathClassName = getClassName(pluginName, 'path')
93
+ // group的delay在動畫中的佔比(剩餘部份的時間為圖形本身的動畫時間,因為delay時間和最後一個group的動畫時間加總為1)
94
+ const groupDelayProportionOfDuration = 0.3
95
+
96
+ function calcBarWidth ({ axisWidth, groupAmount, barAmountOfGroup, barPadding = 0, barGroupPadding = 0 }: {
97
+ axisWidth: number
98
+ groupAmount: number
99
+ barAmountOfGroup: number
100
+ barPadding: number
101
+ barGroupPadding: number
102
+ }) {
103
+ const eachGroupWidth = groupAmount > 1 // 等於 1 時會算出 Infinity
104
+ ? axisWidth / (groupAmount - 1)
105
+ : axisWidth
106
+ const width = (eachGroupWidth - barGroupPadding) / barAmountOfGroup - barPadding
107
+ return width > 1 ? width : 1
108
+ }
109
+
110
+ function makeBarScale (barWidth: number, seriesLabels: string[], params: BaseBarsTriangleParams) {
111
+ const barHalfWidth = barWidth! / 2
112
+ const barGroupWidth = barWidth * seriesLabels.length + params.barPadding! * seriesLabels.length
113
+ return d3.scalePoint()
114
+ .domain(seriesLabels)
115
+ .range([-barGroupWidth / 2 + barHalfWidth, barGroupWidth / 2 - barHalfWidth])
116
+ }
117
+
118
+ function calcDelayGroup (barGroupAmount: number, totalDuration: number) {
119
+ if (barGroupAmount <= 1) {
120
+ // 一筆內計算會出錯所以不算
121
+ return 0
122
+ }
123
+ return totalDuration / (barGroupAmount - 1) * groupDelayProportionOfDuration // 依group數量計算
124
+ }
125
+
126
+ function calctransitionItem (barGroupAmount: number, totalDuration: number) {
127
+ if (barGroupAmount <= 1) {
128
+ // 一筆內不會有delay
129
+ return totalDuration
130
+ }
131
+ return totalDuration * (1 - groupDelayProportionOfDuration) // delay後剩餘的時間
132
+ }
133
+
134
+ function renderTriangleBars ({ graphicGSelection, pathGClassName, pathClassName, visibleComputedLayoutData, linearGradientIds, zeroYArr, groupLabels, barScale, params, chartParams, barWidth, delayGroup, transitionItem, isSeriesSeprate }: RenderBarParams) {
135
+
136
+ const barHalfWidth = barWidth! / 2
137
+
138
+ graphicGSelection
139
+ .each((d, seriesIndex, g) => {
140
+ // g
141
+ const gSelection = d3.select(g[seriesIndex])
142
+ .selectAll<SVGGElement, ComputedDatumGrid>(`g.${pathGClassName}`)
143
+ .data(visibleComputedLayoutData[seriesIndex] ?? [])
144
+ .join(
145
+ enter => {
146
+ const enterSelection = enter
147
+ .append('g')
148
+ .classed(pathGClassName, true)
149
+ .attr('cursor', 'pointer')
150
+ enterSelection
151
+ .append('path')
152
+ .classed(pathClassName, true)
153
+ .style('vector-effect', 'non-scaling-stroke')
154
+ .attr('d', (d) => {
155
+ const x = -barHalfWidth
156
+ const y1 = zeroYArr[seriesIndex]
157
+ const y2 = zeroYArr[seriesIndex]
158
+ return `M${x},${y1} L${x + (barWidth! / 2)},${y2} ${x + barWidth!},${y1}`
159
+ })
160
+ return enterSelection
161
+ },
162
+ update => update,
163
+ exit => exit.remove()
164
+ )
165
+ .attr('transform', d => `translate(${isSeriesSeprate ? 0 : barScale(d.seriesLabel)!}, 0)`)
166
+
167
+ // path
168
+ gSelection.select(`path.${pathClassName}`)
169
+ .attr('height', d => Math.abs(d.axisYFromZero) || 1) // 無值還是給一個 1 的高度
170
+ .attr('y', d => d.axisY < zeroYArr[seriesIndex] ? d.axisY : zeroYArr[seriesIndex])
171
+ .attr('x', d => isSeriesSeprate ? 0 : barScale(d.seriesLabel)!)
172
+ // .style('fill', d => `url(#${d.linearGradientId})`)
173
+ .style('fill', d => `url(#${linearGradientIds[d.seriesIndex]})`)
174
+ .attr('stroke', d => d.color)
175
+ .attr('transform', d => `translate(${(d ? d.axisX : 0)}, ${0})`)
176
+ .transition()
177
+ .duration(transitionItem)
178
+ .ease(getD3TransitionEase(chartParams.transitionEase))
179
+ .delay((d, i) => d.groupIndex * delayGroup)
180
+ // .attr('transform', `translate(${-barHalfWidth}, 0)`)
181
+ // .attr('x', d => itemScale(d.itemLabel)!)
182
+ // .attr('y', d => -d.y)
183
+ .attr('d', (d) => {
184
+ const x = -barHalfWidth
185
+ const y1 = zeroYArr[seriesIndex]
186
+ const y2 = d.axisY
187
+ return `M${x},${y1} L${x + (barWidth! / 2)},${y2} ${x + barWidth!},${y1}`
188
+ })
189
+ })
190
+
191
+ const graphicBarSelection: d3.Selection<SVGPathElement, ComputedDatumGrid, any, any> = graphicGSelection.selectAll(`path.${pathClassName}`)
192
+
193
+ return graphicBarSelection
194
+ }
195
+
196
+ function renderLinearGradient ({ defsSelection, computedData, linearGradientIds, params }: {
197
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
198
+ computedData: ComputedDataGrid
199
+ linearGradientIds: string[]
200
+ params: BaseBarsTriangleParams
201
+ }) {
202
+ defsSelection!
203
+ .selectAll<SVGLinearGradientElement, ComputedDatumGrid>('linearGradient')
204
+ .data(computedData ?? [])
205
+ .join(
206
+ enter => {
207
+ return enter
208
+ .append('linearGradient')
209
+ .attr('x1', '0%')
210
+ .attr('x2', '0%')
211
+ .attr('y1', '100%')
212
+ .attr('y2', '0%')
213
+ .attr('spreadMethod', 'pad')
214
+ },
215
+ update => update,
216
+ exit => exit.remove()
217
+ )
218
+ .attr('id', (d, i) => {
219
+ return d[0] ? linearGradientIds[d[0].seriesIndex] : ''
220
+ })
221
+ .html((d, i) => {
222
+ const color = d[0] ? d[0].color : ''
223
+ return `
224
+ <stop offset="0%" stop-color="${color}" stop-opacity="${params.linearGradientOpacity[0]}"/>
225
+ <stop offset="100%" stop-color="${color}" stop-opacity="${params.linearGradientOpacity[1]}"/>
226
+ `
227
+ })
228
+
229
+ }
230
+
231
+
232
+ function renderClipPath ({ defsSelection, clipPathData }: {
233
+ defsSelection: d3.Selection<SVGDefsElement, any, any, any>
234
+ clipPathData: ClipPathDatum[]
235
+ }) {
236
+ const clipPath = defsSelection
237
+ .selectAll<SVGClipPathElement, Layout>('clipPath')
238
+ .data(clipPathData)
239
+ .join(
240
+ enter => {
241
+ return enter
242
+ .append('clipPath')
243
+ },
244
+ update => update,
245
+ exit => exit.remove()
246
+ )
247
+ .attr('id', d => d.id)
248
+ .each((d, i, g) => {
249
+ const rect = d3.select(g[i])
250
+ .selectAll<SVGRectElement, typeof d>('rect')
251
+ .data([d])
252
+ .join(
253
+ enter => {
254
+ return enter
255
+ .append('rect')
256
+ },
257
+ update => update,
258
+ exit => exit.remove()
259
+ )
260
+ .attr('x', 0)
261
+ .attr('y', 0)
262
+ .attr('width', _d => _d.width)
263
+ .attr('height', _d => _d.height)
264
+ })
265
+ }
266
+
267
+ function highlight ({ selection, ids, fullChartParams }: {
268
+ selection: d3.Selection<SVGPathElement, ComputedDatumGrid, any, any>
269
+ ids: string[]
270
+ fullChartParams: ChartParams
271
+ }) {
272
+ selection.interrupt('highlight')
273
+
274
+ const removeHighlight = () => {
275
+ selection
276
+ .transition('highlight')
277
+ .duration(200)
278
+ .style('opacity', 1)
279
+ }
280
+
281
+ if (!ids.length) {
282
+ removeHighlight()
283
+ return
284
+ }
285
+
286
+ selection
287
+ .each((d, i, n) => {
288
+ if (ids.includes(d.id)) {
289
+ d3.select(n[i])
290
+ .style('opacity', 1)
291
+ } else {
292
+ d3.select(n[i])
293
+ .style('opacity', fullChartParams.styles.unhighlightedOpacity)
294
+ }
295
+ })
296
+ }
297
+
298
+
299
+ export const createBaseBarsTriangle: BasePluginFn<BaseBarsContext> = (pluginName: string, {
300
+ selection,
301
+ computedData$,
302
+ computedLayoutData$,
303
+ visibleComputedData$,
304
+ visibleComputedLayoutData$,
305
+ fullDataFormatter$,
306
+ seriesLabels$,
307
+ SeriesDataMap$,
308
+ GroupDataMap$,
309
+ fullParams$,
310
+ fullChartParams$,
311
+ gridAxesTransform$,
312
+ gridGraphicTransform$,
313
+ gridAxesSize$,
314
+ gridHighlight$,
315
+ gridContainerPosition$,
316
+ isSeriesSeprate$,
317
+ event$
318
+ }) => {
319
+ const destroy$ = new Subject()
320
+
321
+ const clipPathID = getUniID(pluginName, 'clipPath-box')
322
+ const pathGClassName = getClassName(pluginName, 'pathG')
323
+ const pathClassName = getClassName(pluginName, 'path')
324
+
325
+ const {
326
+ seriesSelection$,
327
+ axesSelection$,
328
+ defsSelection$,
329
+ graphicGSelection$
330
+ } = gridSelectionsObservable({
331
+ selection,
332
+ pluginName,
333
+ clipPathID,
334
+ seriesLabels$,
335
+ gridContainerPosition$,
336
+ gridAxesTransform$,
337
+ gridGraphicTransform$
338
+ })
339
+
340
+ // valueAxis 的起始座標
341
+ const valueAxisStart$: Observable<number> = gridGraphicTransform$.pipe(
342
+ takeUntil(destroy$),
343
+ map(data => {
344
+ // 抵消掉外層的變型
345
+ return - data.translate[1] / data.scale[1]
346
+ })
347
+ )
348
+
349
+ const zeroYArr$ = visibleComputedLayoutData$.pipe(
350
+ // map(d => d[0] && d[0][0]
351
+ // ? d[0][0].axisY - d[0][0].axisYFromZero
352
+ // : 0),
353
+ map(data => {
354
+ return data.map(d => {
355
+ return d[0] ? d[0].axisY - d[0].axisYFromZero : 0
356
+ })
357
+ }),
358
+ distinctUntilChanged()
359
+ )
360
+
361
+ const barWidth$ = combineLatest({
362
+ computedData: computedData$,
363
+ visibleComputedData: visibleComputedData$,
364
+ params: fullParams$,
365
+ gridAxesSize: gridAxesSize$,
366
+ isSeriesSeprate: isSeriesSeprate$
367
+ }).pipe(
368
+ takeUntil(destroy$),
369
+ switchMap(async d => d),
370
+ map(data => {
371
+ if (data.params.barWidth) {
372
+ return data.params.barWidth
373
+ } else if (data.isSeriesSeprate) {
374
+ return calcBarWidth({
375
+ axisWidth: data.gridAxesSize.width,
376
+ groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
377
+ barAmountOfGroup: 1,
378
+ barPadding: data.params.barPadding,
379
+ barGroupPadding: data.params.barGroupPadding
380
+ })
381
+ } else {
382
+ return calcBarWidth({
383
+ axisWidth: data.gridAxesSize.width,
384
+ groupAmount: data.computedData[0] ? data.computedData[0].length : 0,
385
+ barAmountOfGroup: data.visibleComputedData.length,
386
+ barPadding: data.params.barPadding,
387
+ barGroupPadding: data.params.barGroupPadding
388
+ })
389
+ }
390
+ })
391
+ )
392
+
393
+ // const seriesLabels$ = visibleComputedData$.pipe(
394
+ // takeUntil(destroy$),
395
+ // map(data => {
396
+ // const SeriesLabelSet: Set<string> = new Set()
397
+ // data.forEach(d => {
398
+ // d.forEach(_d => {
399
+ // SeriesLabelSet.add(_d.seriesLabel)
400
+ // })
401
+ // })
402
+ // return Array.from(SeriesLabelSet)
403
+ // })
404
+ // )
405
+
406
+ const groupLabels$ = visibleComputedData$.pipe(
407
+ takeUntil(destroy$),
408
+ map(data => {
409
+ const GroupLabelSet: Set<string> = new Set()
410
+ data.forEach(d => {
411
+ d.forEach(_d => {
412
+ GroupLabelSet.add(_d.groupLabel)
413
+ })
414
+ })
415
+ return Array.from(GroupLabelSet)
416
+ })
417
+ )
418
+
419
+ const barScale$: Observable<d3.ScalePoint<string>> = new Observable(subscriber => {
420
+ combineLatest({
421
+ seriesLabels: seriesLabels$,
422
+ barWidth: barWidth$,
423
+ params: fullParams$,
424
+ }).pipe(
425
+ takeUntil(destroy$),
426
+ switchMap(async d => d)
427
+ ).subscribe(data => {
428
+ const barScale = makeBarScale(data.barWidth, data.seriesLabels, data.params)
429
+ subscriber.next(barScale)
430
+ })
431
+ })
432
+
433
+ const transitionDuration$ = fullChartParams$.pipe(
434
+ takeUntil(destroy$),
435
+ map(d => d.transitionDuration),
436
+ distinctUntilChanged()
437
+ )
438
+
439
+ const delayGroup$ = new Observable<number>(subscriber => {
440
+ combineLatest({
441
+ groupLabels: groupLabels$,
442
+ transitionDuration: transitionDuration$,
443
+ }).pipe(
444
+ switchMap(async d => d)
445
+ ).subscribe(data => {
446
+ const delay = calcDelayGroup(data.groupLabels.length, data.transitionDuration)
447
+ subscriber.next(delay)
448
+ })
449
+ }).pipe(
450
+ takeUntil(destroy$),
451
+ distinctUntilChanged()
452
+ )
453
+
454
+ const transitionItem$ = new Observable<number>(subscriber => {
455
+ combineLatest({
456
+ groupLabels: groupLabels$,
457
+ transitionDuration: transitionDuration$
458
+ }).pipe(
459
+ switchMap(async d => d)
460
+ ).subscribe(data => {
461
+ const transition = calctransitionItem(data.groupLabels.length, data.transitionDuration)
462
+ subscriber.next(transition)
463
+ })
464
+ }).pipe(
465
+ takeUntil(destroy$),
466
+ distinctUntilChanged()
467
+ )
468
+
469
+ //
470
+
471
+ combineLatest({
472
+ defsSelection: defsSelection$,
473
+ gridAxesSize: gridAxesSize$,
474
+ }).pipe(
475
+ takeUntil(destroy$),
476
+ switchMap(async d => d)
477
+ ).subscribe(data => {
478
+ const clipPathData = [{
479
+ id: clipPathID,
480
+ width: data.gridAxesSize.width,
481
+ height: data.gridAxesSize.height
482
+ }]
483
+ renderClipPath({
484
+ defsSelection: data.defsSelection,
485
+ clipPathData
486
+ })
487
+ })
488
+
489
+
490
+ const highlightTarget$ = fullChartParams$.pipe(
491
+ takeUntil(destroy$),
492
+ map(d => d.highlightTarget),
493
+ distinctUntilChanged()
494
+ )
495
+
496
+ const linearGradientIds$ = seriesLabels$.pipe(
497
+ takeUntil(destroy$),
498
+ map(d => d.map((d, i) => {
499
+ return getUniID(pluginName, `lineargradient-${d}`)
500
+ }))
501
+ )
502
+
503
+ // const barData$ = combineLatest({
504
+ // linearGradientIds: linearGradientIds$,
505
+ // computedData: computedData$
506
+ // }).pipe(
507
+ // takeUntil(destroy$),
508
+ // switchMap(async d => d),
509
+ // map(data => {
510
+ // return data.computedData.map((series, seriesIndex) => {
511
+ // return series.map((_d, _i) => {
512
+ // return <BarDatumGrid>{
513
+ // linearGradientId: data.linearGradientIds[seriesIndex],
514
+ // ..._d
515
+ // }
516
+ // })
517
+ // })
518
+ // })
519
+ // )
520
+
521
+ const barSelection$ = combineLatest({
522
+ graphicGSelection: graphicGSelection$,
523
+ defsSelection: defsSelection$,
524
+ computedData: computedData$,
525
+ visibleComputedLayoutData: visibleComputedLayoutData$,
526
+ linearGradientIds: linearGradientIds$,
527
+ zeroYArr: zeroYArr$,
528
+ groupLabels: groupLabels$,
529
+ barScale: barScale$,
530
+ params: fullParams$,
531
+ chartParams: fullChartParams$,
532
+ barWidth: barWidth$,
533
+ delayGroup: delayGroup$,
534
+ transitionItem: transitionItem$,
535
+ isSeriesSeprate: isSeriesSeprate$
536
+ }).pipe(
537
+ takeUntil(destroy$),
538
+ switchMap(async (d) => d),
539
+ map(data => {
540
+ renderLinearGradient({
541
+ defsSelection: data.defsSelection,
542
+ computedData: data.computedData,
543
+ linearGradientIds: data.linearGradientIds,
544
+ params: data.params
545
+ })
546
+
547
+ return renderTriangleBars({
548
+ graphicGSelection: data.graphicGSelection,
549
+ pathGClassName,
550
+ pathClassName,
551
+ visibleComputedLayoutData: data.visibleComputedLayoutData,
552
+ linearGradientIds: data.linearGradientIds,
553
+ zeroYArr: data.zeroYArr,
554
+ groupLabels: data.groupLabels,
555
+ barScale: data.barScale,
556
+ params: data.params,
557
+ chartParams: data.chartParams,
558
+ barWidth: data.barWidth,
559
+ delayGroup: data.delayGroup,
560
+ transitionItem: data.transitionItem,
561
+ isSeriesSeprate: data.isSeriesSeprate
562
+ })
563
+ })
564
+ )
565
+
566
+ combineLatest({
567
+ barSelection: barSelection$,
568
+ computedData: computedData$,
569
+ highlightTarget: highlightTarget$,
570
+ SeriesDataMap: SeriesDataMap$,
571
+ GroupDataMap: GroupDataMap$,
572
+ }).subscribe(data => {
573
+
574
+ data.barSelection!
575
+ .on('mouseover', (event, datum) => {
576
+ event.stopPropagation()
577
+
578
+ event$.next({
579
+ type: 'grid',
580
+ eventName: 'mouseover',
581
+ pluginName,
582
+ highlightTarget: data.highlightTarget,
583
+ datum,
584
+ gridIndex: datum.gridIndex,
585
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
586
+ seriesIndex: datum.seriesIndex,
587
+ seriesLabel: datum.seriesLabel,
588
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
589
+ groupIndex: datum.groupIndex,
590
+ groupLabel: datum.groupLabel,
591
+ event,
592
+ data: data.computedData
593
+ })
594
+ })
595
+ .on('mousemove', (event, datum) => {
596
+ event.stopPropagation()
597
+
598
+ event$.next({
599
+ type: 'grid',
600
+ eventName: 'mousemove',
601
+ pluginName,
602
+ highlightTarget: data.highlightTarget,
603
+ datum,
604
+ gridIndex: datum.gridIndex,
605
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
606
+ seriesIndex: datum.seriesIndex,
607
+ seriesLabel: datum.seriesLabel,
608
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
609
+ groupIndex: datum.groupIndex,
610
+ groupLabel: datum.groupLabel,
611
+ event,
612
+ data: data.computedData
613
+ })
614
+ })
615
+ .on('mouseout', (event, datum) => {
616
+ event.stopPropagation()
617
+
618
+ event$.next({
619
+ type: 'grid',
620
+ eventName: 'mouseout',
621
+ pluginName,
622
+ highlightTarget: data.highlightTarget,
623
+ datum,
624
+ gridIndex: datum.gridIndex,
625
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
626
+ seriesIndex: datum.seriesIndex,
627
+ seriesLabel: datum.seriesLabel,
628
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
629
+ groupIndex: datum.groupIndex,
630
+ groupLabel: datum.groupLabel,
631
+ event,
632
+ data: data.computedData
633
+ })
634
+ })
635
+ .on('click', (event, datum) => {
636
+ event.stopPropagation()
637
+
638
+ event$.next({
639
+ type: 'grid',
640
+ eventName: 'click',
641
+ pluginName,
642
+ highlightTarget: data.highlightTarget,
643
+ datum,
644
+ gridIndex: datum.gridIndex,
645
+ series: data.SeriesDataMap.get(datum.seriesLabel)!,
646
+ seriesIndex: datum.seriesIndex,
647
+ seriesLabel: datum.seriesLabel,
648
+ groups: data.GroupDataMap.get(datum.groupLabel)!,
649
+ groupIndex: datum.groupIndex,
650
+ groupLabel: datum.groupLabel,
651
+ event,
652
+ data: data.computedData
653
+ })
654
+ })
655
+ })
656
+
657
+ combineLatest({
658
+ barSelection: barSelection$,
659
+ highlight: gridHighlight$.pipe(
660
+ map(data => data.map(d => d.id))
661
+ ),
662
+ fullChartParams: fullChartParams$
663
+ }).pipe(
664
+ takeUntil(destroy$),
665
+ switchMap(async d => d)
666
+ ).subscribe(data => {
667
+ highlight({
668
+ selection: data.barSelection,
669
+ ids: data.highlight,
670
+ fullChartParams: data.fullChartParams
671
+ })
672
+ })
673
+
674
+ return () => {
675
+ destroy$.next(undefined)
676
+ }
675
677
  }