@orbcharts/plugins-basic 3.0.0-beta.4 → 3.0.0-beta.5

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 (192) hide show
  1. package/LICENSE +200 -200
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarStack.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  9. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  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 +1 -1
  12. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  13. package/dist/orbcharts-plugins-basic/src/index.d.ts +6 -0
  14. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  15. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  16. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  17. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  18. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  19. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  20. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  21. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  23. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  24. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  25. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  26. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  27. package/dist/orbcharts-plugins-basic.es.js +11809 -10185
  28. package/dist/orbcharts-plugins-basic.umd.js +66 -34
  29. package/dist/src/index.d.ts +1 -5
  30. package/lib/core-types.ts +7 -7
  31. package/lib/core.ts +6 -6
  32. package/lib/plugins-basic-types.ts +6 -6
  33. package/package.json +44 -44
  34. package/src/base/BaseBarStack.ts +780 -780
  35. package/src/base/BaseBars.ts +765 -765
  36. package/src/base/BaseBarsTriangle.ts +674 -674
  37. package/src/base/BaseDots.ts +464 -515
  38. package/src/base/BaseGroupAxis.ts +679 -679
  39. package/src/base/BaseLegend.ts +684 -680
  40. package/src/base/BaseLineAreas.ts +629 -629
  41. package/src/base/BaseLines.ts +706 -706
  42. package/src/base/BaseTooltip.ts +385 -385
  43. package/src/base/BaseValueAxis.ts +583 -580
  44. package/src/base/types.ts +2 -2
  45. package/src/const.ts +30 -30
  46. package/src/grid/defaults.ts +244 -244
  47. package/src/grid/gridObservables.ts +554 -545
  48. package/src/grid/index.ts +16 -16
  49. package/src/grid/plugins/BarStack.ts +64 -64
  50. package/src/grid/plugins/Bars.ts +69 -69
  51. package/src/grid/plugins/BarsPN.ts +66 -66
  52. package/src/grid/plugins/BarsTriangle.ts +73 -73
  53. package/src/grid/plugins/Dots.ts +68 -68
  54. package/src/grid/plugins/GridLegend.ts +107 -107
  55. package/src/grid/plugins/GridTooltip.ts +66 -66
  56. package/src/grid/plugins/GridZoom.ts +218 -218
  57. package/src/grid/plugins/GroupAux.ts +1103 -1098
  58. package/src/grid/plugins/GroupAxis.ts +97 -97
  59. package/src/grid/plugins/LineAreas.ts +65 -65
  60. package/src/grid/plugins/Lines.ts +59 -59
  61. package/src/grid/plugins/ValueAxis.ts +94 -93
  62. package/src/grid/plugins/ValueStackAxis.ts +96 -95
  63. package/src/index.ts +10 -9
  64. package/src/multiGrid/defaults.ts +224 -224
  65. package/src/multiGrid/index.ts +14 -14
  66. package/src/multiGrid/multiGridObservables.ts +49 -49
  67. package/src/multiGrid/plugins/MultiBarStack.ts +106 -106
  68. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  69. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  70. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  71. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  72. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  73. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  74. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  75. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  76. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  77. package/src/multiGrid/plugins/MultiValueStackAxis.ts +134 -133
  78. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  79. package/src/multiGrid/plugins/OverlappingValueStackAxes.ts +299 -298
  80. package/src/multiValue/defaults.ts +163 -0
  81. package/src/multiValue/index.ts +9 -0
  82. package/src/multiValue/multiValueObservables.ts +258 -0
  83. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  84. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  85. package/src/multiValue/plugins/Scatter.ts +426 -0
  86. package/src/multiValue/plugins/ScatterBubbles.ts +551 -0
  87. package/src/multiValue/plugins/XYAux.ts +682 -0
  88. package/src/multiValue/plugins/XYAxes.ts +677 -0
  89. package/src/multiValue/plugins/XYZoom.ts +300 -0
  90. package/src/noneData/defaults.ts +102 -102
  91. package/src/noneData/index.ts +3 -3
  92. package/src/noneData/plugins/Container.ts +27 -27
  93. package/src/noneData/plugins/Tooltip.ts +373 -373
  94. package/src/series/defaults.ts +206 -206
  95. package/src/series/index.ts +9 -9
  96. package/src/series/plugins/Bubbles.ts +603 -603
  97. package/src/series/plugins/Pie.ts +623 -623
  98. package/src/series/plugins/PieEventTexts.ts +283 -283
  99. package/src/series/plugins/PieLabels.ts +640 -640
  100. package/src/series/plugins/Rose.ts +516 -516
  101. package/src/series/plugins/RoseLabels.ts +600 -600
  102. package/src/series/plugins/SeriesLegend.ts +107 -107
  103. package/src/series/plugins/SeriesTooltip.ts +66 -66
  104. package/src/series/seriesObservables.ts +145 -145
  105. package/src/series/seriesUtils.ts +51 -51
  106. package/src/tree/defaults.ts +78 -78
  107. package/src/tree/index.ts +4 -4
  108. package/src/tree/plugins/TreeLegend.ts +100 -107
  109. package/src/tree/plugins/TreeMap.ts +333 -333
  110. package/src/tree/plugins/TreeTooltip.ts +66 -66
  111. package/src/utils/commonUtils.ts +21 -21
  112. package/src/utils/d3Graphics.ts +174 -174
  113. package/src/utils/d3Utils.ts +74 -73
  114. package/src/utils/observables.ts +14 -14
  115. package/src/utils/orbchartsUtils.ts +101 -100
  116. package/tsconfig.base.json +13 -13
  117. package/tsconfig.json +2 -2
  118. package/vite.config.js +22 -22
  119. package/dist/src/base/BaseGroupArea.d.ts +0 -0
  120. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  121. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  122. package/dist/src/relationship/index.d.ts +0 -0
  123. package/src/base/BaseGroupArea.ts +0 -0
  124. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  125. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  126. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  127. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  128. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  129. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  130. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  131. /package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +0 -0
  132. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarStack.d.ts +0 -0
  133. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  134. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  135. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  136. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  137. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  138. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  139. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  140. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  141. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  142. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  143. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  144. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  145. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueStackAxis.d.ts +0 -0
  146. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +0 -0
  147. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +0 -0
  148. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  149. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarStack.d.ts +0 -0
  150. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  151. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  152. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  153. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  154. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  155. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  156. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  157. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  158. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  159. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -0
  160. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  161. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -0
  162. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  163. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  164. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  165. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  166. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Container.d.ts +0 -0
  167. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/plugins/Tooltip.d.ts +0 -0
  168. /package/dist/{src/multiValue → orbcharts-plugins-basic/src/relationship}/index.d.ts +0 -0
  169. /package/dist/{src → orbcharts-plugins-basic/src}/relationship/plugins/Relationship.d.ts +0 -0
  170. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  171. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  172. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  173. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  174. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  175. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  176. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  177. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  178. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  179. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  180. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  181. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  182. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  183. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  184. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  185. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  186. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  187. /package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +0 -0
  188. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  189. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +0 -0
  190. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  191. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  192. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -1,681 +1,685 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- switchMap,
6
- takeUntil,
7
- shareReplay,
8
- distinctUntilChanged,
9
- Observable,
10
- Subject } from 'rxjs'
11
- import type { BasePluginFn } from './types'
12
- import type {
13
- ChartParams, Layout, ColorType
14
- } from '../../lib/core-types'
15
- import type { BaseLegendParams } from '../../lib/plugins-basic-types'
16
- import { getClassName, getColor, getDatumColor } from '../utils/orbchartsUtils'
17
- import { measureTextWidth } from '../utils/commonUtils'
18
-
19
- // export interface BaseLegendParams {
20
- // position: 'top' | 'bottom' | 'left' | 'right'
21
- // justify: 'start' | 'center' | 'end'
22
- // padding: number
23
- // // offset: [number, number]
24
- // backgroundFill: ColorType
25
- // backgroundStroke: ColorType
26
- // textColorType: ColorType
27
- // gap: number
28
- // seriesList: Array<{
29
- // listRectWidth: number
30
- // listRectHeight: number
31
- // listRectRadius: number
32
- // }>
33
- // // highlightEvent: boolean
34
- // }
35
-
36
- interface BaseLegendContext {
37
- rootSelection: d3.Selection<any, unknown, any, unknown>
38
- seriesLabels$: Observable<string[]>
39
- fullParams$: Observable<BaseLegendParams>
40
- layout$: Observable<Layout>
41
- fullChartParams$: Observable<ChartParams>
42
- textSizePx$: Observable<number>
43
- }
44
-
45
- // 第1層 - 定位的容器
46
- interface RootPosition {
47
- x:number
48
- y:number
49
- }
50
-
51
- // 第2層 - 卡片
52
- interface LegendCard {
53
- width: number
54
- height: number
55
- translateX:number
56
- translateY:number
57
- }
58
-
59
- // 第3層 - 圖例列表
60
- interface LegendList {
61
- direction: 'row' | 'column'
62
- width: number
63
- height: number
64
- translateX:number
65
- translateY:number
66
- // list: LegendItem[][]
67
- }
68
-
69
- // 第4層 - 圖例項目
70
- interface LegendItem {
71
- id: string // seriesLabel
72
- seriesLabel: string
73
- seriesIndex: number
74
- lineIndex: number
75
- itemIndex: number // 行內的item
76
- text: string
77
- itemWidth: number
78
- translateX: number
79
- translateY: number
80
- color: string
81
- listRectWidth: number
82
- listRectHeight: number
83
- listRectRadius: number
84
- }
85
-
86
- interface ListStyle {
87
- listRectWidth: number
88
- listRectHeight: number
89
- listRectRadius: number
90
- }
91
-
92
- const defaultListStyle: ListStyle = {
93
- listRectWidth: 14,
94
- listRectHeight: 14,
95
- listRectRadius: 0,
96
- }
97
-
98
- function getSeriesColor (seriesIndex: number, fullChartParams: ChartParams) {
99
- const colorIndex = seriesIndex < fullChartParams.colors[fullChartParams.colorScheme].series.length
100
- ? seriesIndex
101
- : seriesIndex % fullChartParams.colors[fullChartParams.colorScheme].series.length
102
- return fullChartParams.colors[fullChartParams.colorScheme].series[colorIndex]
103
- }
104
-
105
-
106
- export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: string, {
107
- rootSelection,
108
- seriesLabels$,
109
- fullParams$,
110
- layout$,
111
- fullChartParams$,
112
- textSizePx$
113
- }) => {
114
-
115
- const rootPositionClassName = getClassName(pluginName, 'root-position')
116
- const legendCardClassName = getClassName(pluginName, 'legend-card')
117
- const legendListClassName = getClassName(pluginName, 'legend-list')
118
- const legendItemClassName = getClassName(pluginName, 'legend-item')
119
-
120
- const destroy$ = new Subject()
121
-
122
- // const seriesLabels$: Observable<string[]> = SeriesDataMap$.pipe(
123
- // takeUntil(destroy$),
124
- // map(data => {
125
- // return Array.from(data.keys())
126
- // })
127
- // )
128
-
129
- const SeriesLabelColorMap$ = combineLatest({
130
- seriesLabels: seriesLabels$,
131
- fullChartParams: fullChartParams$
132
- }).pipe(
133
- takeUntil(destroy$),
134
- switchMap(async d => d),
135
- map(data => {
136
- const SeriesLabelColorMap: Map<string, string> = new Map()
137
- let accIndex = 0
138
- data.seriesLabels.forEach((label, i) => {
139
- if (!SeriesLabelColorMap.has(label)) {
140
- const color = getSeriesColor(accIndex, data.fullChartParams)
141
- SeriesLabelColorMap.set(label, color)
142
- accIndex ++
143
- }
144
- })
145
- return SeriesLabelColorMap
146
- })
147
- )
148
-
149
- // 對應seriesLabels是否顯示(只顯示不重覆的)
150
- const visibleList$ = seriesLabels$.pipe(
151
- takeUntil(destroy$),
152
- map(data => {
153
- const AccSeriesLabelSet = new Set()
154
- let visibleList: boolean[] = []
155
- data.forEach(d => {
156
- if (AccSeriesLabelSet.has(d)) {
157
- visibleList.push(false) // 已存在則不顯示
158
- } else {
159
- visibleList.push(true)
160
- }
161
- AccSeriesLabelSet.add(d) // 累加已存在的seriesLabel
162
- })
163
- return visibleList
164
- })
165
- )
166
-
167
- const position$: Observable<"top" | "bottom" | "left" | "right"> = fullParams$.pipe(
168
- takeUntil(destroy$),
169
- map(data => {
170
- const position: "top" | "bottom" | "left" | "right" = data.placement === 'top' || data.placement === 'top-start' || data.placement === 'top-end'
171
- ? 'top'
172
- : data.placement === 'bottom' || data.placement === 'bottom-start' || data.placement === 'bottom-end'
173
- ? 'bottom'
174
- : data.placement === 'left' || data.placement === 'left-start' || data.placement === 'left-end'
175
- ? 'left'
176
- : 'right'
177
- return position
178
- }),
179
- distinctUntilChanged((a, b) => a === b),
180
- shareReplay(1)
181
- )
182
-
183
- const justify$: Observable<"start" | "center" | "end"> = fullParams$.pipe(
184
- takeUntil(destroy$),
185
- map(data => {
186
- const justify: "start" | "center" | "end" = data.placement === 'top-start' || data.placement === 'bottom-start' || data.placement === 'left-start' || data.placement === 'right-start'
187
- ? 'start'
188
- : data.placement === 'top-end' || data.placement === 'bottom-end' || data.placement === 'left-end' || data.placement === 'right-end'
189
- ? 'end'
190
- : data.placement === 'top' || data.placement === 'bottom' || data.placement === 'left' || data.placement === 'right'
191
- ? 'center'
192
- : 'center'
193
- return justify
194
- }),
195
- distinctUntilChanged((a, b) => a === b),
196
- shareReplay(1)
197
- )
198
-
199
- const lineDirection$ = position$.pipe(
200
- takeUntil(destroy$),
201
- map(data => {
202
- return data === 'bottom' || data === 'top'
203
- ? 'row'
204
- : 'column'
205
- }),
206
- distinctUntilChanged((a, b) => a === b),
207
- shareReplay(1)
208
- )
209
-
210
- const lineMaxSize$ = combineLatest({
211
- fullParams: fullParams$,
212
- position: position$,
213
- layout: layout$
214
- }).pipe(
215
- takeUntil(destroy$),
216
- switchMap(async d => d),
217
- map(data => {
218
- const ourterSize = (data.fullParams.padding) * 2 + (data.fullParams.gap * 2) // 卡片離場景的間距 & 卡片內的間距
219
-
220
- return data.position === 'bottom' || data.position === 'top'
221
- ? data.layout.rootWidth - ourterSize
222
- : data.layout.rootHeight - ourterSize
223
- })
224
- )
225
-
226
- const rootPosition$ = combineLatest({
227
- layout: layout$,
228
- position: position$,
229
- justify: justify$
230
- }).pipe(
231
- takeUntil(destroy$),
232
- switchMap(async d => d),
233
- map(data => {
234
- let x = 0
235
- let y = 0
236
- if (data.position === 'bottom') {
237
- y = data.layout.rootHeight
238
- if (data.justify === 'start') {
239
- x = 0
240
- } else if (data.justify === 'center') {
241
- x = data.layout.rootWidth / 2
242
- } else if (data.justify === 'end') {
243
- x = data.layout.rootWidth
244
- }
245
- } else if (data.position === 'right') {
246
- x = data.layout.rootWidth
247
- if (data.justify === 'start') {
248
- y = 0
249
- } else if (data.justify === 'center') {
250
- y = data.layout.rootHeight / 2
251
- } else if (data.justify === 'end') {
252
- y = data.layout.rootHeight
253
- }
254
- } else if (data.position === 'top') {
255
- y = 0
256
- if (data.justify === 'start') {
257
- x = 0
258
- } else if (data.justify === 'center') {
259
- x = data.layout.rootWidth / 2
260
- } else if (data.justify === 'end') {
261
- x = data.layout.rootWidth
262
- }
263
- } else if (data.position === 'left') {
264
- x = 0
265
- if (data.justify === 'start') {
266
- y = 0
267
- } else if (data.justify === 'center') {
268
- y = data.layout.rootHeight / 2
269
- } else if (data.justify === 'end') {
270
- y = data.layout.rootHeight
271
- }
272
- }
273
-
274
- return {
275
- x,
276
- y
277
- }
278
- })
279
- )
280
-
281
- const rootPositionSelection$: Observable<d3.Selection<SVGGElement, RootPosition, any, any>> = rootPosition$.pipe(
282
- takeUntil(destroy$),
283
- map(data => {
284
-
285
- return rootSelection
286
- .selectAll<SVGGElement, RootPosition>(`g.${rootPositionClassName}`)
287
- .data([data])
288
- .join(
289
- enter => {
290
- return enter
291
- .append('g')
292
- .classed(rootPositionClassName, true)
293
- .attr('transform', d => `translate(${d.x}, ${d.y})`)
294
- },
295
- update => {
296
- return update
297
- .transition()
298
- .attr('transform', d => `translate(${d.x}, ${d.y})`)
299
- },
300
- exit => exit.remove()
301
- )
302
- })
303
- )
304
-
305
- const defaultListStyle$ = fullParams$.pipe(
306
- takeUntil(destroy$),
307
- map(data => {
308
- return data.seriesList[0] ? data.seriesList[0] : defaultListStyle
309
- })
310
- )
311
-
312
- // 先計算list內每個item
313
- const lengendItems$: Observable<LegendItem[][]> = combineLatest({
314
- visibleList: visibleList$,
315
- fullParams: fullParams$,
316
- fullChartParams: fullChartParams$,
317
- seriesLabels: seriesLabels$,
318
- lineDirection: lineDirection$,
319
- lineMaxSize: lineMaxSize$,
320
- defaultListStyle: defaultListStyle$,
321
- SeriesLabelColorMap: SeriesLabelColorMap$,
322
- textSizePx: textSizePx$
323
- }).pipe(
324
- takeUntil(destroy$),
325
- switchMap(async d => d),
326
- map(data => {
327
- return data.seriesLabels.reduce((prev: LegendItem[][], current, currentIndex) => {
328
- // visible為flase則不加入
329
- if (!data.visibleList[currentIndex]) {
330
- return prev
331
- }
332
-
333
- const textWidth = measureTextWidth(current, data.textSizePx)
334
- const itemWidth = (data.textSizePx * 1.5) + textWidth
335
- // const color = getSeriesColor(currentIndex, data.fullChartParams)
336
- const color = data.SeriesLabelColorMap.get(current)
337
- const lastItem: LegendItem | null = prev[0] && prev[0][0]
338
- ? prev[prev.length - 1][prev[prev.length - 1].length - 1]
339
- : null
340
-
341
- const { translateX, translateY, lineIndex, itemIndex } = ((_data, _prev, _lastItem) => {
342
- let translateX = 0
343
- let translateY = 0
344
- let lineIndex = 0
345
- let itemIndex = 0
346
-
347
- if (_data.lineDirection === 'column') {
348
- let tempTranslateY = _lastItem
349
- ? _lastItem.translateY + _data.textSizePx + _data.fullParams.gap
350
- : 0
351
-
352
- if ((tempTranslateY + _data.textSizePx) > _data.lineMaxSize) {
353
- // 換行
354
- lineIndex = _lastItem.lineIndex + 1
355
- itemIndex = 0
356
- translateY = 0
357
- // 前一行最寬寬度
358
- const maxItemWidthInLastLine = _prev[_prev.length - 1].reduce((p, c) => {
359
- return c.itemWidth > p ? c.itemWidth : p
360
- }, 0)
361
- translateX = _lastItem.translateX + maxItemWidthInLastLine + _data.fullParams.gap
362
- } else {
363
- lineIndex = _lastItem ? _lastItem.lineIndex : 0
364
- itemIndex = _lastItem ? _lastItem.itemIndex + 1 : 0
365
- translateY = tempTranslateY
366
- translateX = _lastItem ? _lastItem.translateX : 0
367
- }
368
- } else {
369
- let tempTranslateX = _lastItem
370
- ? _lastItem.translateX + _lastItem.itemWidth + _data.fullParams.gap
371
- : 0
372
- if ((tempTranslateX + itemWidth) > _data.lineMaxSize) {
373
- // 換行
374
- lineIndex = _lastItem.lineIndex + 1
375
- itemIndex = 0
376
- translateX = 0
377
- } else {
378
- lineIndex = _lastItem ? _lastItem.lineIndex : 0
379
- itemIndex = _lastItem ? _lastItem.itemIndex + 1 : 0
380
- translateX = tempTranslateX
381
- }
382
- translateY = (_data.textSizePx + _data.fullParams.gap) * lineIndex
383
- }
384
-
385
- return { translateX, translateY, lineIndex, itemIndex }
386
- })(data, prev, lastItem)
387
-
388
- if (!prev[lineIndex]) {
389
- prev[lineIndex] = []
390
- }
391
-
392
- const listStyle = data.fullParams.seriesList[itemIndex] ? data.fullParams.seriesList[itemIndex] : data.defaultListStyle
393
-
394
- prev[lineIndex].push({
395
- id: current,
396
- seriesLabel: current,
397
- seriesIndex: currentIndex,
398
- lineIndex,
399
- itemIndex,
400
- text: current,
401
- itemWidth,
402
- translateX,
403
- translateY,
404
- color,
405
- listRectWidth: listStyle.listRectWidth,
406
- listRectHeight: listStyle.listRectHeight,
407
- listRectRadius: listStyle.listRectRadius
408
- })
409
-
410
- return prev
411
- }, [])
412
- }),
413
- shareReplay(1)
414
- )
415
-
416
- // 依list計算出來的排序位置來計算整體容器的尺寸
417
- const lengendList$: Observable<LegendList> = combineLatest({
418
- fullParams: fullParams$,
419
- fullChartParams: fullChartParams$,
420
- lineDirection: lineDirection$,
421
- lengendItems: lengendItems$,
422
- textSizePx: textSizePx$
423
- }).pipe(
424
- takeUntil(destroy$),
425
- switchMap(async d => d),
426
- map(data => {
427
- // 依list計算出來的排序位置來計算整體容器的偏移位置
428
- const { width, height } = ((_data, _lengendItems) => {
429
- let width = 0
430
- let height = 0
431
-
432
- if (!_lengendItems.length || !_lengendItems[0].length) {
433
- return { width, height }
434
- }
435
-
436
- const firstLineLastItem = _lengendItems[0][_lengendItems[0].length - 1]
437
- if (_data.lineDirection === 'column') {
438
- width = _lengendItems.reduce((p, c) => {
439
- const maxWidthInLine = c.reduce((_p, _c) => {
440
- // 找出最寬的寬度
441
- return _c.itemWidth > _p ? _c.itemWidth : _p
442
- }, 0)
443
- // 每行寬度加總
444
- return p + maxWidthInLine
445
- }, 0)
446
- width += _data.fullParams.gap * (_lengendItems.length - 1)
447
- height = firstLineLastItem.translateY + _data.textSizePx
448
- } else {
449
- width = firstLineLastItem.translateX + firstLineLastItem.itemWidth
450
- height = (_data.textSizePx * _lengendItems.length) + (_data.fullParams.gap * (_lengendItems.length - 1))
451
- }
452
-
453
- return { width, height }
454
- })(data, data.lengendItems)
455
-
456
- return <LegendList>{
457
- direction: data.lineDirection,
458
- width,
459
- height,
460
- translateX: data.fullParams.gap,
461
- translateY: data.fullParams.gap
462
- }
463
- }),
464
- shareReplay(1)
465
- )
466
-
467
- const legendCard$: Observable<LegendCard> = combineLatest({
468
- fullParams: fullParams$,
469
- position: position$,
470
- justify: justify$,
471
- lengendList: lengendList$
472
- }).pipe(
473
- takeUntil(destroy$),
474
- switchMap(async d => d),
475
- map(data => {
476
- const width = data.lengendList.width + (data.fullParams.gap * 2)
477
- const height = data.lengendList.height + (data.fullParams.gap * 2)
478
- let translateX = 0
479
- let translateY = 0
480
-
481
- if (data.position === 'left') {
482
- if (data.justify === 'start') {
483
- translateX = data.fullParams.padding
484
- translateY = data.fullParams.padding
485
- } else if (data.justify === 'center') {
486
- translateX = data.fullParams.padding
487
- translateY = - height / 2
488
- } else if (data.justify === 'end') {
489
- translateX = data.fullParams.padding
490
- translateY = - height - data.fullParams.padding
491
- }
492
- } else if (data.position === 'right') {
493
- if (data.justify === 'start') {
494
- translateX = - width - data.fullParams.padding
495
- translateY = data.fullParams.padding
496
- } else if (data.justify === 'center') {
497
- translateX = - width - data.fullParams.padding
498
- translateY = - height / 2
499
- } else if (data.justify === 'end') {
500
- translateX = - width - data.fullParams.padding
501
- translateY = - height - data.fullParams.padding
502
- }
503
- } else if (data.position === 'top') {
504
- if (data.justify === 'start') {
505
- translateX = data.fullParams.padding
506
- translateY = data.fullParams.padding
507
- } else if (data.justify === 'center') {
508
- translateX = - width / 2
509
- translateY = data.fullParams.padding
510
- } else if (data.justify === 'end') {
511
- translateX = - width - data.fullParams.padding
512
- translateY = data.fullParams.padding
513
- }
514
- } else {
515
- if (data.justify === 'start') {
516
- translateX = data.fullParams.padding
517
- translateY = - height - data.fullParams.padding
518
- } else if (data.justify === 'center') {
519
- translateX = - width / 2
520
- translateY = - height - data.fullParams.padding
521
- } else if (data.justify === 'end') {
522
- translateX = - width - data.fullParams.padding
523
- translateY = - height - data.fullParams.padding
524
- }
525
- }
526
- // translateX += _data.fullParams.offset[0]
527
- // translateY += _data.fullParams.offset[1]
528
-
529
- return {
530
- width,
531
- height,
532
- translateX,
533
- translateY
534
- }
535
- })
536
- )
537
-
538
- const lengendCardSelection$ = combineLatest({
539
- rootPositionSelection: rootPositionSelection$,
540
- fullParams: fullParams$,
541
- fullChartParams: fullChartParams$,
542
- legendCard: legendCard$
543
- }).pipe(
544
- takeUntil(destroy$),
545
- switchMap(async d => d),
546
- map(data => {
547
- return data.rootPositionSelection
548
- .selectAll<SVGGElement, BaseLegendParams>('g')
549
- .data([data.legendCard])
550
- .join(
551
- enter => {
552
- return enter
553
- .append('g')
554
- .classed(legendCardClassName, true)
555
- .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
556
- },
557
- update => {
558
- return update
559
- .transition()
560
- .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
561
- },
562
- exit => exit.remove()
563
- )
564
- .each((d, i, g) => {
565
- const rect = d3.select(g[i])
566
- .selectAll('rect')
567
- .data([d])
568
- .join('rect')
569
- .attr('width', d => d.width)
570
- .attr('height', d => d.height)
571
- .attr('fill', getColor(data.fullParams.backgroundFill, data.fullChartParams))
572
- .attr('stroke', getColor(data.fullParams.backgroundStroke, data.fullChartParams))
573
- })
574
- })
575
- )
576
-
577
-
578
- const lengendListSelection$ = combineLatest({
579
- lengendCardSelection: lengendCardSelection$,
580
- fullParams: fullParams$,
581
- lengendList: lengendList$
582
- }).pipe(
583
- takeUntil(destroy$),
584
- switchMap(async d => d),
585
- map(data => {
586
- return data.lengendCardSelection
587
- .selectAll<SVGGElement, BaseLegendParams>('g')
588
- .data([data.lengendList])
589
- .join(
590
- enter => {
591
- return enter
592
- .append('g')
593
- .classed(legendListClassName, true)
594
- .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
595
- },
596
- update => {
597
- return update
598
- .transition()
599
- .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
600
- },
601
- exit => exit.remove()
602
- )
603
- })
604
- )
605
-
606
- const itemSelection$ = combineLatest({
607
- lengendListSelection: lengendListSelection$,
608
- fullParams: fullParams$,
609
- fullChartParams: fullChartParams$,
610
- lengendItems: lengendItems$,
611
- textSizePx: textSizePx$
612
- }).pipe(
613
- takeUntil(destroy$),
614
- switchMap(async d => d),
615
- map(data => {
616
- const items = data.lengendItems[0] ? data.lengendItems.flat() : []
617
-
618
- return data.lengendListSelection
619
- .selectAll<SVGGElement, string>(`g.${legendItemClassName}`)
620
- .data(items)
621
- .join(
622
- enter => {
623
- return enter
624
- .append('g')
625
- .classed(legendItemClassName, true)
626
- .attr('cursor', 'default')
627
- },
628
- update => update,
629
- exit => exit.remove()
630
- )
631
- .attr('transform', (d, i) => {
632
- return `translate(${d.translateX}, ${d.translateY})`
633
- })
634
- .each((d, i, g) => {
635
- const rectCenterX = data.textSizePx / 2
636
- const transformRectWidth = - d.listRectWidth / 2
637
- const transformRectHeight = - d.listRectHeight / 2
638
- // 方塊
639
- d3.select(g[i])
640
- .selectAll('rect')
641
- .data([d])
642
- .join('rect')
643
- .attr('x', rectCenterX)
644
- .attr('y', rectCenterX)
645
- .attr('width', _d => _d.listRectWidth)
646
- .attr('height', _d => _d.listRectHeight)
647
- .attr('transform', _d => `translate(${transformRectWidth}, ${transformRectHeight})`)
648
- .attr('fill', _d => _d.color)
649
- .attr('rx', _d => _d.listRectRadius)
650
- // 文字
651
- d3.select(g[i])
652
- .selectAll('text')
653
- .data([d])
654
- .join(
655
- enter => {
656
- return enter
657
- .append('text')
658
- .attr('dominant-baseline', 'hanging')
659
- },
660
- update => {
661
- return update
662
- },
663
- exit => exit.remove()
664
- )
665
- .attr('x', data.textSizePx * 1.5)
666
- .attr('font-size', data.fullChartParams.styles.textSize)
667
- .attr('fill', d => data.fullParams.textColorType === 'series'
668
- ? getSeriesColor(d.seriesIndex, data.fullChartParams)
669
- : getColor(data.fullParams.textColorType, data.fullChartParams))
670
- .text(d => d.text)
671
- })
672
- })
673
- )
674
-
675
- itemSelection$.subscribe()
676
-
677
- return () => {
678
- rootSelection.select(`g.${rootPositionClassName}`).remove()
679
- destroy$.next(undefined)
680
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ switchMap,
6
+ takeUntil,
7
+ shareReplay,
8
+ distinctUntilChanged,
9
+ Observable,
10
+ Subject } from 'rxjs'
11
+ import type { BasePluginFn } from './types'
12
+ import type {
13
+ ChartParams, Layout, ColorType
14
+ } from '../../lib/core-types'
15
+ import type { BaseLegendParams } from '../../lib/plugins-basic-types'
16
+ import { getClassName, getColor, getDatumColor } from '../utils/orbchartsUtils'
17
+ import { measureTextWidth } from '../utils/commonUtils'
18
+
19
+ // export interface BaseLegendParams {
20
+ // position: 'top' | 'bottom' | 'left' | 'right'
21
+ // justify: 'start' | 'center' | 'end'
22
+ // padding: number
23
+ // // offset: [number, number]
24
+ // backgroundFill: ColorType
25
+ // backgroundStroke: ColorType
26
+ // textColorType: ColorType
27
+ // gap: number
28
+ // labelList: Array<{
29
+ // listRectWidth: number
30
+ // listRectHeight: number
31
+ // listRectRadius: number
32
+ // }>
33
+ // // highlightEvent: boolean
34
+ // }
35
+
36
+ interface BaseLegendContext {
37
+ rootSelection: d3.Selection<any, unknown, any, unknown>
38
+ legendLabels$: Observable<string[]>
39
+ fullParams$: Observable<BaseLegendParams>
40
+ layout$: Observable<Layout>
41
+ fullChartParams$: Observable<ChartParams>
42
+ textSizePx$: Observable<number>
43
+ }
44
+
45
+ // 第1層 - 定位的容器
46
+ interface RootPosition {
47
+ x:number
48
+ y:number
49
+ }
50
+
51
+ // 第2層 - 卡片
52
+ interface LegendCard {
53
+ width: number
54
+ height: number
55
+ translateX:number
56
+ translateY:number
57
+ }
58
+
59
+ // 第3層 - 圖例列表
60
+ interface LegendList {
61
+ direction: 'row' | 'column'
62
+ width: number
63
+ height: number
64
+ translateX:number
65
+ translateY:number
66
+ // list: LegendItem[][]
67
+ }
68
+
69
+ // 第4層 - 圖例項目
70
+ interface LegendItem {
71
+ id: string // seriesLabel
72
+ seriesLabel: string
73
+ seriesIndex: number
74
+ lineIndex: number
75
+ itemIndex: number // 行內的item
76
+ text: string
77
+ itemWidth: number
78
+ translateX: number
79
+ translateY: number
80
+ color: string
81
+ listRectWidth: number
82
+ listRectHeight: number
83
+ listRectRadius: number
84
+ }
85
+
86
+ interface ListStyle {
87
+ listRectWidth: number
88
+ listRectHeight: number
89
+ listRectRadius: number
90
+ }
91
+
92
+ const noneLabelText = ' - ' // 沒有label時的預設文字
93
+
94
+ const defaultListStyle: ListStyle = {
95
+ listRectWidth: 14,
96
+ listRectHeight: 14,
97
+ listRectRadius: 0,
98
+ }
99
+
100
+ function getSeriesColor (seriesIndex: number, fullChartParams: ChartParams) {
101
+ const colorIndex = seriesIndex < fullChartParams.colors[fullChartParams.colorScheme].series.length
102
+ ? seriesIndex
103
+ : seriesIndex % fullChartParams.colors[fullChartParams.colorScheme].series.length
104
+ return fullChartParams.colors[fullChartParams.colorScheme].series[colorIndex]
105
+ }
106
+
107
+
108
+ export const createBaseLegend: BasePluginFn<BaseLegendContext> = (pluginName: string, {
109
+ rootSelection,
110
+ legendLabels$,
111
+ fullParams$,
112
+ layout$,
113
+ fullChartParams$,
114
+ textSizePx$
115
+ }) => {
116
+
117
+ const rootPositionClassName = getClassName(pluginName, 'root-position')
118
+ const legendCardClassName = getClassName(pluginName, 'legend-card')
119
+ const legendListClassName = getClassName(pluginName, 'legend-list')
120
+ const legendItemClassName = getClassName(pluginName, 'legend-item')
121
+
122
+ const destroy$ = new Subject()
123
+
124
+ // const legendLabels$: Observable<string[]> = SeriesDataMap$.pipe(
125
+ // takeUntil(destroy$),
126
+ // map(data => {
127
+ // return Array.from(data.keys())
128
+ // })
129
+ // )
130
+
131
+ const SeriesLabelColorMap$ = combineLatest({
132
+ legendLabels: legendLabels$,
133
+ fullChartParams: fullChartParams$
134
+ }).pipe(
135
+ takeUntil(destroy$),
136
+ switchMap(async d => d),
137
+ map(data => {
138
+ const SeriesLabelColorMap: Map<string, string> = new Map()
139
+ let accIndex = 0
140
+ data.legendLabels.forEach((label, i) => {
141
+ if (!SeriesLabelColorMap.has(label)) {
142
+ const color = getSeriesColor(accIndex, data.fullChartParams)
143
+ SeriesLabelColorMap.set(label, color)
144
+ accIndex ++
145
+ }
146
+ })
147
+ return SeriesLabelColorMap
148
+ })
149
+ )
150
+
151
+ // 對應legendLabels是否顯示(只顯示不重覆的)
152
+ const visibleList$ = legendLabels$.pipe(
153
+ takeUntil(destroy$),
154
+ map(data => {
155
+ const AccSeriesLabelSet = new Set()
156
+ let visibleList: boolean[] = []
157
+ data.forEach(d => {
158
+ if (AccSeriesLabelSet.has(d)) {
159
+ visibleList.push(false) // 已存在則不顯示
160
+ } else {
161
+ visibleList.push(true)
162
+ }
163
+ AccSeriesLabelSet.add(d) // 累加已存在的seriesLabel
164
+ })
165
+ return visibleList
166
+ })
167
+ )
168
+
169
+ const position$: Observable<"top" | "bottom" | "left" | "right"> = fullParams$.pipe(
170
+ takeUntil(destroy$),
171
+ map(data => {
172
+ const position: "top" | "bottom" | "left" | "right" = data.placement === 'top' || data.placement === 'top-start' || data.placement === 'top-end'
173
+ ? 'top'
174
+ : data.placement === 'bottom' || data.placement === 'bottom-start' || data.placement === 'bottom-end'
175
+ ? 'bottom'
176
+ : data.placement === 'left' || data.placement === 'left-start' || data.placement === 'left-end'
177
+ ? 'left'
178
+ : 'right'
179
+ return position
180
+ }),
181
+ distinctUntilChanged((a, b) => a === b),
182
+ shareReplay(1)
183
+ )
184
+
185
+ const justify$: Observable<"start" | "center" | "end"> = fullParams$.pipe(
186
+ takeUntil(destroy$),
187
+ map(data => {
188
+ const justify: "start" | "center" | "end" = data.placement === 'top-start' || data.placement === 'bottom-start' || data.placement === 'left-start' || data.placement === 'right-start'
189
+ ? 'start'
190
+ : data.placement === 'top-end' || data.placement === 'bottom-end' || data.placement === 'left-end' || data.placement === 'right-end'
191
+ ? 'end'
192
+ : data.placement === 'top' || data.placement === 'bottom' || data.placement === 'left' || data.placement === 'right'
193
+ ? 'center'
194
+ : 'center'
195
+ return justify
196
+ }),
197
+ distinctUntilChanged((a, b) => a === b),
198
+ shareReplay(1)
199
+ )
200
+
201
+ const lineDirection$ = position$.pipe(
202
+ takeUntil(destroy$),
203
+ map(data => {
204
+ return data === 'bottom' || data === 'top'
205
+ ? 'row'
206
+ : 'column'
207
+ }),
208
+ distinctUntilChanged((a, b) => a === b),
209
+ shareReplay(1)
210
+ )
211
+
212
+ const lineMaxSize$ = combineLatest({
213
+ fullParams: fullParams$,
214
+ position: position$,
215
+ layout: layout$
216
+ }).pipe(
217
+ takeUntil(destroy$),
218
+ switchMap(async d => d),
219
+ map(data => {
220
+ const ourterSize = (data.fullParams.padding) * 2 + (data.fullParams.gap * 2) // 卡片離場景的間距 & 卡片內的間距
221
+
222
+ return data.position === 'bottom' || data.position === 'top'
223
+ ? data.layout.rootWidth - ourterSize
224
+ : data.layout.rootHeight - ourterSize
225
+ })
226
+ )
227
+
228
+ const rootPosition$ = combineLatest({
229
+ layout: layout$,
230
+ position: position$,
231
+ justify: justify$
232
+ }).pipe(
233
+ takeUntil(destroy$),
234
+ switchMap(async d => d),
235
+ map(data => {
236
+ let x = 0
237
+ let y = 0
238
+ if (data.position === 'bottom') {
239
+ y = data.layout.rootHeight
240
+ if (data.justify === 'start') {
241
+ x = 0
242
+ } else if (data.justify === 'center') {
243
+ x = data.layout.rootWidth / 2
244
+ } else if (data.justify === 'end') {
245
+ x = data.layout.rootWidth
246
+ }
247
+ } else if (data.position === 'right') {
248
+ x = data.layout.rootWidth
249
+ if (data.justify === 'start') {
250
+ y = 0
251
+ } else if (data.justify === 'center') {
252
+ y = data.layout.rootHeight / 2
253
+ } else if (data.justify === 'end') {
254
+ y = data.layout.rootHeight
255
+ }
256
+ } else if (data.position === 'top') {
257
+ y = 0
258
+ if (data.justify === 'start') {
259
+ x = 0
260
+ } else if (data.justify === 'center') {
261
+ x = data.layout.rootWidth / 2
262
+ } else if (data.justify === 'end') {
263
+ x = data.layout.rootWidth
264
+ }
265
+ } else if (data.position === 'left') {
266
+ x = 0
267
+ if (data.justify === 'start') {
268
+ y = 0
269
+ } else if (data.justify === 'center') {
270
+ y = data.layout.rootHeight / 2
271
+ } else if (data.justify === 'end') {
272
+ y = data.layout.rootHeight
273
+ }
274
+ }
275
+
276
+ return {
277
+ x,
278
+ y
279
+ }
280
+ })
281
+ )
282
+
283
+ const rootPositionSelection$: Observable<d3.Selection<SVGGElement, RootPosition, any, any>> = rootPosition$.pipe(
284
+ takeUntil(destroy$),
285
+ map(data => {
286
+
287
+ return rootSelection
288
+ .selectAll<SVGGElement, RootPosition>(`g.${rootPositionClassName}`)
289
+ .data([data])
290
+ .join(
291
+ enter => {
292
+ return enter
293
+ .append('g')
294
+ .classed(rootPositionClassName, true)
295
+ .attr('transform', d => `translate(${d.x}, ${d.y})`)
296
+ },
297
+ update => {
298
+ return update
299
+ .transition()
300
+ .attr('transform', d => `translate(${d.x}, ${d.y})`)
301
+ },
302
+ exit => exit.remove()
303
+ )
304
+ })
305
+ )
306
+
307
+ const defaultListStyle$ = fullParams$.pipe(
308
+ takeUntil(destroy$),
309
+ map(data => {
310
+ return data.labelList[0] ? data.labelList[0] : defaultListStyle
311
+ })
312
+ )
313
+
314
+ // 先計算list內每個item
315
+ const lengendItems$: Observable<LegendItem[][]> = combineLatest({
316
+ visibleList: visibleList$,
317
+ fullParams: fullParams$,
318
+ fullChartParams: fullChartParams$,
319
+ legendLabels: legendLabels$,
320
+ lineDirection: lineDirection$,
321
+ lineMaxSize: lineMaxSize$,
322
+ defaultListStyle: defaultListStyle$,
323
+ SeriesLabelColorMap: SeriesLabelColorMap$,
324
+ textSizePx: textSizePx$
325
+ }).pipe(
326
+ takeUntil(destroy$),
327
+ switchMap(async d => d),
328
+ map(data => {
329
+ return data.legendLabels.reduce((prev: LegendItem[][], _current, currentIndex) => {
330
+ // visible為flase則不加入
331
+ if (!data.visibleList[currentIndex]) {
332
+ return prev
333
+ }
334
+
335
+ const currentText = _current !== '' ? _current : noneLabelText
336
+
337
+ const textWidth = measureTextWidth(currentText, data.textSizePx)
338
+ const itemWidth = (data.textSizePx * 1.5) + textWidth
339
+ // const color = getSeriesColor(currentIndex, data.fullChartParams)
340
+ const color = data.SeriesLabelColorMap.get(_current)
341
+ const lastItem: LegendItem | null = prev[0] && prev[0][0]
342
+ ? prev[prev.length - 1][prev[prev.length - 1].length - 1]
343
+ : null
344
+
345
+ const { translateX, translateY, lineIndex, itemIndex } = ((_data, _prev, _lastItem) => {
346
+ let translateX = 0
347
+ let translateY = 0
348
+ let lineIndex = 0
349
+ let itemIndex = 0
350
+
351
+ if (_data.lineDirection === 'column') {
352
+ let tempTranslateY = _lastItem
353
+ ? _lastItem.translateY + _data.textSizePx + _data.fullParams.gap
354
+ : 0
355
+
356
+ if ((tempTranslateY + _data.textSizePx) > _data.lineMaxSize) {
357
+ // 換行
358
+ lineIndex = _lastItem.lineIndex + 1
359
+ itemIndex = 0
360
+ translateY = 0
361
+ // 前一行最寬寬度
362
+ const maxItemWidthInLastLine = _prev[_prev.length - 1].reduce((p, c) => {
363
+ return c.itemWidth > p ? c.itemWidth : p
364
+ }, 0)
365
+ translateX = _lastItem.translateX + maxItemWidthInLastLine + _data.fullParams.gap
366
+ } else {
367
+ lineIndex = _lastItem ? _lastItem.lineIndex : 0
368
+ itemIndex = _lastItem ? _lastItem.itemIndex + 1 : 0
369
+ translateY = tempTranslateY
370
+ translateX = _lastItem ? _lastItem.translateX : 0
371
+ }
372
+ } else {
373
+ let tempTranslateX = _lastItem
374
+ ? _lastItem.translateX + _lastItem.itemWidth + _data.fullParams.gap
375
+ : 0
376
+ if ((tempTranslateX + itemWidth) > _data.lineMaxSize) {
377
+ // 換行
378
+ lineIndex = _lastItem.lineIndex + 1
379
+ itemIndex = 0
380
+ translateX = 0
381
+ } else {
382
+ lineIndex = _lastItem ? _lastItem.lineIndex : 0
383
+ itemIndex = _lastItem ? _lastItem.itemIndex + 1 : 0
384
+ translateX = tempTranslateX
385
+ }
386
+ translateY = (_data.textSizePx + _data.fullParams.gap) * lineIndex
387
+ }
388
+
389
+ return { translateX, translateY, lineIndex, itemIndex }
390
+ })(data, prev, lastItem)
391
+
392
+ if (!prev[lineIndex]) {
393
+ prev[lineIndex] = []
394
+ }
395
+
396
+ const listStyle = data.fullParams.labelList[itemIndex] ? data.fullParams.labelList[itemIndex] : data.defaultListStyle
397
+
398
+ prev[lineIndex].push({
399
+ id: currentText,
400
+ seriesLabel: currentText,
401
+ seriesIndex: currentIndex,
402
+ lineIndex,
403
+ itemIndex,
404
+ text: currentText,
405
+ itemWidth,
406
+ translateX,
407
+ translateY,
408
+ color,
409
+ listRectWidth: listStyle.listRectWidth,
410
+ listRectHeight: listStyle.listRectHeight,
411
+ listRectRadius: listStyle.listRectRadius
412
+ })
413
+
414
+ return prev
415
+ }, [])
416
+ }),
417
+ shareReplay(1)
418
+ )
419
+
420
+ // 依list計算出來的排序位置來計算整體容器的尺寸
421
+ const lengendList$: Observable<LegendList> = combineLatest({
422
+ fullParams: fullParams$,
423
+ fullChartParams: fullChartParams$,
424
+ lineDirection: lineDirection$,
425
+ lengendItems: lengendItems$,
426
+ textSizePx: textSizePx$
427
+ }).pipe(
428
+ takeUntil(destroy$),
429
+ switchMap(async d => d),
430
+ map(data => {
431
+ // 依list計算出來的排序位置來計算整體容器的偏移位置
432
+ const { width, height } = ((_data, _lengendItems) => {
433
+ let width = 0
434
+ let height = 0
435
+
436
+ if (!_lengendItems.length || !_lengendItems[0].length) {
437
+ return { width, height }
438
+ }
439
+
440
+ const firstLineLastItem = _lengendItems[0][_lengendItems[0].length - 1]
441
+ if (_data.lineDirection === 'column') {
442
+ width = _lengendItems.reduce((p, c) => {
443
+ const maxWidthInLine = c.reduce((_p, _c) => {
444
+ // 找出最寬的寬度
445
+ return _c.itemWidth > _p ? _c.itemWidth : _p
446
+ }, 0)
447
+ // 每行寬度加總
448
+ return p + maxWidthInLine
449
+ }, 0)
450
+ width += _data.fullParams.gap * (_lengendItems.length - 1)
451
+ height = firstLineLastItem.translateY + _data.textSizePx
452
+ } else {
453
+ width = firstLineLastItem.translateX + firstLineLastItem.itemWidth
454
+ height = (_data.textSizePx * _lengendItems.length) + (_data.fullParams.gap * (_lengendItems.length - 1))
455
+ }
456
+
457
+ return { width, height }
458
+ })(data, data.lengendItems)
459
+
460
+ return <LegendList>{
461
+ direction: data.lineDirection,
462
+ width,
463
+ height,
464
+ translateX: data.fullParams.gap,
465
+ translateY: data.fullParams.gap
466
+ }
467
+ }),
468
+ shareReplay(1)
469
+ )
470
+
471
+ const legendCard$: Observable<LegendCard> = combineLatest({
472
+ fullParams: fullParams$,
473
+ position: position$,
474
+ justify: justify$,
475
+ lengendList: lengendList$
476
+ }).pipe(
477
+ takeUntil(destroy$),
478
+ switchMap(async d => d),
479
+ map(data => {
480
+ const width = data.lengendList.width + (data.fullParams.gap * 2)
481
+ const height = data.lengendList.height + (data.fullParams.gap * 2)
482
+ let translateX = 0
483
+ let translateY = 0
484
+
485
+ if (data.position === 'left') {
486
+ if (data.justify === 'start') {
487
+ translateX = data.fullParams.padding
488
+ translateY = data.fullParams.padding
489
+ } else if (data.justify === 'center') {
490
+ translateX = data.fullParams.padding
491
+ translateY = - height / 2
492
+ } else if (data.justify === 'end') {
493
+ translateX = data.fullParams.padding
494
+ translateY = - height - data.fullParams.padding
495
+ }
496
+ } else if (data.position === 'right') {
497
+ if (data.justify === 'start') {
498
+ translateX = - width - data.fullParams.padding
499
+ translateY = data.fullParams.padding
500
+ } else if (data.justify === 'center') {
501
+ translateX = - width - data.fullParams.padding
502
+ translateY = - height / 2
503
+ } else if (data.justify === 'end') {
504
+ translateX = - width - data.fullParams.padding
505
+ translateY = - height - data.fullParams.padding
506
+ }
507
+ } else if (data.position === 'top') {
508
+ if (data.justify === 'start') {
509
+ translateX = data.fullParams.padding
510
+ translateY = data.fullParams.padding
511
+ } else if (data.justify === 'center') {
512
+ translateX = - width / 2
513
+ translateY = data.fullParams.padding
514
+ } else if (data.justify === 'end') {
515
+ translateX = - width - data.fullParams.padding
516
+ translateY = data.fullParams.padding
517
+ }
518
+ } else {
519
+ if (data.justify === 'start') {
520
+ translateX = data.fullParams.padding
521
+ translateY = - height - data.fullParams.padding
522
+ } else if (data.justify === 'center') {
523
+ translateX = - width / 2
524
+ translateY = - height - data.fullParams.padding
525
+ } else if (data.justify === 'end') {
526
+ translateX = - width - data.fullParams.padding
527
+ translateY = - height - data.fullParams.padding
528
+ }
529
+ }
530
+ // translateX += _data.fullParams.offset[0]
531
+ // translateY += _data.fullParams.offset[1]
532
+
533
+ return {
534
+ width,
535
+ height,
536
+ translateX,
537
+ translateY
538
+ }
539
+ })
540
+ )
541
+
542
+ const lengendCardSelection$ = combineLatest({
543
+ rootPositionSelection: rootPositionSelection$,
544
+ fullParams: fullParams$,
545
+ fullChartParams: fullChartParams$,
546
+ legendCard: legendCard$
547
+ }).pipe(
548
+ takeUntil(destroy$),
549
+ switchMap(async d => d),
550
+ map(data => {
551
+ return data.rootPositionSelection
552
+ .selectAll<SVGGElement, BaseLegendParams>('g')
553
+ .data([data.legendCard])
554
+ .join(
555
+ enter => {
556
+ return enter
557
+ .append('g')
558
+ .classed(legendCardClassName, true)
559
+ .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
560
+ },
561
+ update => {
562
+ return update
563
+ .transition()
564
+ .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
565
+ },
566
+ exit => exit.remove()
567
+ )
568
+ .each((d, i, g) => {
569
+ const rect = d3.select(g[i])
570
+ .selectAll('rect')
571
+ .data([d])
572
+ .join('rect')
573
+ .attr('width', d => d.width)
574
+ .attr('height', d => d.height)
575
+ .attr('fill', getColor(data.fullParams.backgroundFill, data.fullChartParams))
576
+ .attr('stroke', getColor(data.fullParams.backgroundStroke, data.fullChartParams))
577
+ })
578
+ })
579
+ )
580
+
581
+
582
+ const lengendListSelection$ = combineLatest({
583
+ lengendCardSelection: lengendCardSelection$,
584
+ fullParams: fullParams$,
585
+ lengendList: lengendList$
586
+ }).pipe(
587
+ takeUntil(destroy$),
588
+ switchMap(async d => d),
589
+ map(data => {
590
+ return data.lengendCardSelection
591
+ .selectAll<SVGGElement, BaseLegendParams>('g')
592
+ .data([data.lengendList])
593
+ .join(
594
+ enter => {
595
+ return enter
596
+ .append('g')
597
+ .classed(legendListClassName, true)
598
+ .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
599
+ },
600
+ update => {
601
+ return update
602
+ .transition()
603
+ .attr('transform', d => `translate(${d.translateX}, ${d.translateY})`)
604
+ },
605
+ exit => exit.remove()
606
+ )
607
+ })
608
+ )
609
+
610
+ const itemSelection$ = combineLatest({
611
+ lengendListSelection: lengendListSelection$,
612
+ fullParams: fullParams$,
613
+ fullChartParams: fullChartParams$,
614
+ lengendItems: lengendItems$,
615
+ textSizePx: textSizePx$
616
+ }).pipe(
617
+ takeUntil(destroy$),
618
+ switchMap(async d => d),
619
+ map(data => {
620
+ const items = data.lengendItems[0] ? data.lengendItems.flat() : []
621
+
622
+ return data.lengendListSelection
623
+ .selectAll<SVGGElement, string>(`g.${legendItemClassName}`)
624
+ .data(items)
625
+ .join(
626
+ enter => {
627
+ return enter
628
+ .append('g')
629
+ .classed(legendItemClassName, true)
630
+ .attr('cursor', 'default')
631
+ },
632
+ update => update,
633
+ exit => exit.remove()
634
+ )
635
+ .attr('transform', (d, i) => {
636
+ return `translate(${d.translateX}, ${d.translateY})`
637
+ })
638
+ .each((d, i, g) => {
639
+ const rectCenterX = data.textSizePx / 2
640
+ const transformRectWidth = - d.listRectWidth / 2
641
+ const transformRectHeight = - d.listRectHeight / 2
642
+ // 方塊
643
+ d3.select(g[i])
644
+ .selectAll('rect')
645
+ .data([d])
646
+ .join('rect')
647
+ .attr('x', rectCenterX)
648
+ .attr('y', rectCenterX)
649
+ .attr('width', _d => _d.listRectWidth)
650
+ .attr('height', _d => _d.listRectHeight)
651
+ .attr('transform', _d => `translate(${transformRectWidth}, ${transformRectHeight})`)
652
+ .attr('fill', _d => _d.color)
653
+ .attr('rx', _d => _d.listRectRadius)
654
+ // 文字
655
+ d3.select(g[i])
656
+ .selectAll('text')
657
+ .data([d])
658
+ .join(
659
+ enter => {
660
+ return enter
661
+ .append('text')
662
+ .attr('dominant-baseline', 'hanging')
663
+ },
664
+ update => {
665
+ return update
666
+ },
667
+ exit => exit.remove()
668
+ )
669
+ .attr('x', data.textSizePx * 1.5)
670
+ .attr('font-size', data.fullChartParams.styles.textSize)
671
+ .attr('fill', d => data.fullParams.textColorType === 'series'
672
+ ? getSeriesColor(d.seriesIndex, data.fullChartParams)
673
+ : getColor(data.fullParams.textColorType, data.fullChartParams))
674
+ .text(d => d.text)
675
+ })
676
+ })
677
+ )
678
+
679
+ itemSelection$.subscribe()
680
+
681
+ return () => {
682
+ rootSelection.select(`g.${rootPositionClassName}`).remove()
683
+ destroy$.next(undefined)
684
+ }
681
685
  }