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

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