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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (212) hide show
  1. package/LICENSE +200 -200
  2. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBars.d.ts +2 -2
  3. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseBarsTriangle.d.ts +2 -2
  4. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseDots.d.ts +2 -2
  5. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseGroupAxis.d.ts +2 -2
  6. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLegend.d.ts +1 -1
  7. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLineAreas.d.ts +3 -3
  8. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseLines.d.ts +3 -3
  9. package/dist/{src/base/BaseBarStack.d.ts → orbcharts-plugins-basic/src/base/BaseStackedBar.d.ts} +6 -6
  10. package/dist/{src → orbcharts-plugins-basic/src}/base/BaseValueAxis.d.ts +3 -2
  11. package/dist/{src → orbcharts-plugins-basic/src}/grid/defaults.d.ts +4 -4
  12. package/dist/{src → orbcharts-plugins-basic/src}/grid/gridObservables.d.ts +5 -5
  13. package/dist/{src → orbcharts-plugins-basic/src}/grid/index.d.ts +2 -2
  14. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedBar.d.ts +1 -0
  15. package/dist/orbcharts-plugins-basic/src/grid/plugins/StackedValueAxis.d.ts +1 -0
  16. package/dist/orbcharts-plugins-basic/src/index.d.ts +7 -0
  17. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/defaults.d.ts +4 -4
  18. package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/index.d.ts +3 -3
  19. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedBar.d.ts +1 -0
  20. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/MultiStackedValueAxis.d.ts +1 -0
  21. package/dist/orbcharts-plugins-basic/src/multiGrid/plugins/OverlappingStackedValueAxes.d.ts +1 -0
  22. package/dist/orbcharts-plugins-basic/src/multiValue/defaults.d.ts +9 -0
  23. package/dist/orbcharts-plugins-basic/src/multiValue/index.d.ts +8 -0
  24. package/dist/orbcharts-plugins-basic/src/multiValue/multiValueObservables.d.ts +33 -0
  25. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueLegend.d.ts +1 -0
  26. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/MultiValueTooltip.d.ts +1 -0
  27. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/Scatter.d.ts +3 -0
  28. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/ScatterBubbles.d.ts +3 -0
  29. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAux.d.ts +3 -0
  30. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYAxes.d.ts +3 -0
  31. package/dist/orbcharts-plugins-basic/src/multiValue/plugins/XYZoom.d.ts +1 -0
  32. package/dist/orbcharts-plugins-basic/src/relationship/defaults.d.ts +6 -0
  33. package/dist/orbcharts-plugins-basic/src/relationship/index.d.ts +5 -0
  34. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirected.d.ts +3 -0
  35. package/dist/orbcharts-plugins-basic/src/relationship/plugins/ForceDirectedBubbles.d.ts +3 -0
  36. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipLegend.d.ts +1 -0
  37. package/dist/orbcharts-plugins-basic/src/relationship/plugins/RelationshipTooltip.d.ts +1 -0
  38. package/dist/orbcharts-plugins-basic/src/relationship/relationshipObservables.d.ts +1 -0
  39. package/dist/{src → orbcharts-plugins-basic/src}/series/seriesObservables.d.ts +3 -3
  40. package/dist/{src → orbcharts-plugins-basic/src}/utils/commonUtils.d.ts +1 -1
  41. package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Utils.d.ts +2 -2
  42. package/dist/{src → orbcharts-plugins-basic/src}/utils/observables.d.ts +1 -1
  43. package/dist/{src → orbcharts-plugins-basic/src}/utils/orbchartsUtils.d.ts +3 -3
  44. package/dist/orbcharts-plugins-basic.es.js +13264 -10298
  45. package/dist/orbcharts-plugins-basic.umd.js +105 -55
  46. package/dist/src/index.d.ts +1 -5
  47. package/lib/core-types.ts +7 -7
  48. package/lib/core.ts +6 -6
  49. package/lib/plugins-basic-types.ts +6 -6
  50. package/package.json +44 -44
  51. package/src/base/BaseBars.ts +765 -765
  52. package/src/base/BaseBarsTriangle.ts +676 -674
  53. package/src/base/BaseDots.ts +464 -515
  54. package/src/base/BaseGroupAxis.ts +679 -679
  55. package/src/base/BaseLegend.ts +684 -680
  56. package/src/base/BaseLineAreas.ts +629 -629
  57. package/src/base/BaseLines.ts +706 -706
  58. package/src/base/{BaseBarStack.ts → BaseStackedBar.ts} +782 -780
  59. package/src/base/BaseTooltip.ts +385 -382
  60. package/src/base/BaseValueAxis.ts +583 -580
  61. package/src/base/types.ts +2 -2
  62. package/src/const.ts +30 -30
  63. package/src/grid/defaults.ts +246 -244
  64. package/src/grid/gridObservables.ts +554 -545
  65. package/src/grid/index.ts +16 -16
  66. package/src/grid/plugins/Bars.ts +69 -69
  67. package/src/grid/plugins/BarsPN.ts +66 -66
  68. package/src/grid/plugins/BarsTriangle.ts +73 -73
  69. package/src/grid/plugins/Dots.ts +68 -68
  70. package/src/grid/plugins/GridLegend.ts +107 -107
  71. package/src/grid/plugins/GridTooltip.ts +66 -66
  72. package/src/grid/plugins/GridZoom.ts +218 -218
  73. package/src/grid/plugins/GroupAux.ts +1103 -1098
  74. package/src/grid/plugins/GroupAxis.ts +97 -97
  75. package/src/grid/plugins/LineAreas.ts +65 -65
  76. package/src/grid/plugins/Lines.ts +59 -59
  77. package/src/grid/plugins/{BarStack.ts → StackedBar.ts} +64 -64
  78. package/src/grid/plugins/{ValueStackAxis.ts → StackedValueAxis.ts} +96 -95
  79. package/src/grid/plugins/ValueAxis.ts +94 -93
  80. package/src/index.ts +6 -9
  81. package/src/multiGrid/defaults.ts +224 -224
  82. package/src/multiGrid/index.ts +15 -15
  83. package/src/multiGrid/multiGridObservables.ts +49 -49
  84. package/src/multiGrid/plugins/MultiBars.ts +108 -108
  85. package/src/multiGrid/plugins/MultiBarsTriangle.ts +114 -114
  86. package/src/multiGrid/plugins/MultiDots.ts +102 -102
  87. package/src/multiGrid/plugins/MultiGridLegend.ts +159 -159
  88. package/src/multiGrid/plugins/MultiGridTooltip.ts +66 -66
  89. package/src/multiGrid/plugins/MultiGroupAxis.ts +137 -137
  90. package/src/multiGrid/plugins/MultiLineAreas.ts +107 -107
  91. package/src/multiGrid/plugins/MultiLines.ts +101 -101
  92. package/src/multiGrid/plugins/{MultiBarStack.ts → MultiStackedBar.ts} +106 -106
  93. package/src/multiGrid/plugins/{MultiValueStackAxis.ts → MultiStackedValueAxis.ts} +134 -133
  94. package/src/multiGrid/plugins/MultiValueAxis.ts +134 -133
  95. package/src/multiGrid/plugins/{OverlappingValueStackAxes.ts → OverlappingStackedValueAxes.ts} +299 -298
  96. package/src/multiGrid/plugins/OverlappingValueAxes.ts +300 -299
  97. package/src/multiValue/defaults.ts +167 -0
  98. package/src/multiValue/index.ts +9 -0
  99. package/src/multiValue/multiValueObservables.ts +297 -0
  100. package/src/multiValue/plugins/MultiValueLegend.ts +107 -0
  101. package/src/multiValue/plugins/MultiValueTooltip.ts +66 -0
  102. package/src/multiValue/plugins/Scatter.ts +426 -0
  103. package/src/multiValue/plugins/ScatterBubbles.ts +554 -0
  104. package/src/multiValue/plugins/XYAux.ts +682 -0
  105. package/src/multiValue/plugins/XYAxes.ts +685 -0
  106. package/src/multiValue/plugins/XYZoom.ts +300 -0
  107. package/src/noneData/defaults.ts +102 -102
  108. package/src/noneData/index.ts +3 -3
  109. package/src/noneData/plugins/Container.ts +28 -28
  110. package/src/noneData/plugins/Tooltip.ts +374 -374
  111. package/src/relationship/defaults.ts +196 -0
  112. package/src/relationship/index.ts +5 -0
  113. package/src/relationship/plugins/ForceDirected.ts +1167 -0
  114. package/src/relationship/plugins/ForceDirectedBubbles.ts +1391 -0
  115. package/src/relationship/plugins/RelationshipLegend.ts +100 -0
  116. package/src/relationship/plugins/RelationshipTooltip.ts +66 -0
  117. package/src/relationship/relationshipObservables.ts +50 -0
  118. package/src/series/defaults.ts +206 -206
  119. package/src/series/index.ts +9 -9
  120. package/src/series/plugins/Bubbles.ts +606 -603
  121. package/src/series/plugins/Pie.ts +623 -623
  122. package/src/series/plugins/PieEventTexts.ts +284 -283
  123. package/src/series/plugins/PieLabels.ts +640 -640
  124. package/src/series/plugins/Rose.ts +516 -516
  125. package/src/series/plugins/RoseLabels.ts +600 -600
  126. package/src/series/plugins/SeriesLegend.ts +107 -107
  127. package/src/series/plugins/SeriesTooltip.ts +66 -66
  128. package/src/series/seriesObservables.ts +145 -145
  129. package/src/series/seriesUtils.ts +51 -51
  130. package/src/tree/defaults.ts +78 -78
  131. package/src/tree/index.ts +4 -4
  132. package/src/tree/plugins/TreeLegend.ts +100 -107
  133. package/src/tree/plugins/TreeMap.ts +333 -333
  134. package/src/tree/plugins/TreeTooltip.ts +66 -66
  135. package/src/utils/commonUtils.ts +21 -21
  136. package/src/utils/d3Graphics.ts +174 -174
  137. package/src/utils/d3Utils.ts +74 -73
  138. package/src/utils/observables.ts +14 -14
  139. package/src/utils/orbchartsUtils.ts +116 -100
  140. package/tsconfig.base.json +13 -13
  141. package/tsconfig.json +2 -2
  142. package/vite.config.js +22 -22
  143. package/dist/src/grid/plugins/BarStack.d.ts +0 -1
  144. package/dist/src/grid/plugins/ValueStackAxis.d.ts +0 -1
  145. package/dist/src/multiGrid/plugins/MultiBarStack.d.ts +0 -1
  146. package/dist/src/multiGrid/plugins/MultiValueStackAxis.d.ts +0 -1
  147. package/dist/src/multiGrid/plugins/OverlappingValueStackAxes.d.ts +0 -1
  148. package/dist/src/multiValue/plugins/Scatter.d.ts +0 -0
  149. package/dist/src/multiValue/plugins/ScatterAxes.d.ts +0 -0
  150. package/dist/src/noneData/plugins/Container.d.ts +0 -1
  151. package/dist/src/noneData/plugins/Tooltip.d.ts +0 -3
  152. package/dist/src/relationship/index.d.ts +0 -0
  153. package/dist/src/relationship/plugins/Relationship.d.ts +0 -0
  154. package/src/base/BaseGroupArea.ts +0 -0
  155. package/src/multiValue/plugins/ScatterAxes.ts +0 -0
  156. package/src/relationship/plugins/Relationship.ts +0 -0
  157. /package/dist/{lib → orbcharts-plugins-basic/lib}/core-types.d.ts +0 -0
  158. /package/dist/{lib → orbcharts-plugins-basic/lib}/core.d.ts +0 -0
  159. /package/dist/{lib → orbcharts-plugins-basic/lib}/plugins-basic-types.d.ts +0 -0
  160. /package/dist/{src → orbcharts-plugins-basic/src}/base/BaseTooltip.d.ts +0 -0
  161. /package/dist/{src → orbcharts-plugins-basic/src}/base/types.d.ts +0 -0
  162. /package/dist/{src → orbcharts-plugins-basic/src}/const.d.ts +0 -0
  163. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Bars.d.ts +0 -0
  164. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsPN.d.ts +0 -0
  165. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/BarsTriangle.d.ts +0 -0
  166. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Dots.d.ts +0 -0
  167. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridLegend.d.ts +0 -0
  168. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridTooltip.d.ts +0 -0
  169. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GridZoom.d.ts +0 -0
  170. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAux.d.ts +0 -0
  171. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/GroupAxis.d.ts +0 -0
  172. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/LineAreas.d.ts +0 -0
  173. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/Lines.d.ts +0 -0
  174. /package/dist/{src → orbcharts-plugins-basic/src}/grid/plugins/ValueAxis.d.ts +0 -0
  175. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/multiGridObservables.d.ts +0 -0
  176. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBars.d.ts +0 -0
  177. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiBarsTriangle.d.ts +0 -0
  178. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiDots.d.ts +0 -0
  179. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridLegend.d.ts +0 -0
  180. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGridTooltip.d.ts +0 -0
  181. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiGroupAxis.d.ts +0 -0
  182. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLineAreas.d.ts +0 -0
  183. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiLines.d.ts +0 -0
  184. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/MultiValueAxis.d.ts +0 -0
  185. /package/dist/{src → orbcharts-plugins-basic/src}/multiGrid/plugins/OverlappingValueAxes.d.ts +0 -0
  186. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/Ranking.d.ts +0 -0
  187. /package/dist/{src/grid → orbcharts-plugins-basic/src/multiValue}/plugins/RankingAxis.d.ts +0 -0
  188. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/defaults.d.ts +0 -0
  189. /package/dist/{src → orbcharts-plugins-basic/src}/noneData/index.d.ts +0 -0
  190. /package/dist/{src/base/BaseGroupArea.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Container.d.ts} +0 -0
  191. /package/dist/{src/multiValue/index.d.ts → orbcharts-plugins-basic/src/noneData/plugins/Tooltip.d.ts} +0 -0
  192. /package/dist/{src → orbcharts-plugins-basic/src}/series/defaults.d.ts +0 -0
  193. /package/dist/{src → orbcharts-plugins-basic/src}/series/index.d.ts +0 -0
  194. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Bubbles.d.ts +0 -0
  195. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Pie.d.ts +0 -0
  196. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieEventTexts.d.ts +0 -0
  197. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/PieLabels.d.ts +0 -0
  198. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Rose.d.ts +0 -0
  199. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/RoseLabels.d.ts +0 -0
  200. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesLegend.d.ts +0 -0
  201. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/SeriesTooltip.d.ts +0 -0
  202. /package/dist/{src → orbcharts-plugins-basic/src}/series/plugins/Waffle.d.ts +0 -0
  203. /package/dist/{src → orbcharts-plugins-basic/src}/series/seriesUtils.d.ts +0 -0
  204. /package/dist/{src → orbcharts-plugins-basic/src}/tree/defaults.d.ts +0 -0
  205. /package/dist/{src → orbcharts-plugins-basic/src}/tree/index.d.ts +0 -0
  206. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeLegend.d.ts +0 -0
  207. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeMap.d.ts +0 -0
  208. /package/dist/{src → orbcharts-plugins-basic/src}/tree/plugins/TreeTooltip.d.ts +0 -0
  209. /package/dist/{src → orbcharts-plugins-basic/src}/utils/d3Graphics.d.ts +0 -0
  210. /package/dist/{vite.config.d.ts → orbcharts-plugins-basic/vite.config.d.ts} +0 -0
  211. /package/src/{grid → multiValue}/plugins/Ranking.ts +0 -0
  212. /package/src/{grid → multiValue}/plugins/RankingAxis.ts +0 -0
@@ -1,383 +1,386 @@
1
- import * as d3 from 'd3'
2
- import {
3
- combineLatest,
4
- map,
5
- merge,
6
- filter,
7
- switchMap,
8
- first,
9
- iif,
10
- takeUntil,
11
- Subject,
12
- Observable,
13
- distinctUntilChanged } from 'rxjs'
14
- import type {
15
- EventTypeMap,
16
- PluginConstructor,
17
- ChartType,
18
- ChartParams,
19
- Layout
20
- } from '../../lib/core-types'
21
- import type { BaseTooltipParams, BaseTooltipStyle } from '../../lib/plugins-basic-types'
22
- import type { BasePluginFn } from './types'
23
- import { defineNoneDataPlugin, textSizePxObservable } from '../../lib/core'
24
- import { getSvgGElementSize, appendSvg } from '../utils/d3Utils'
25
- import { getColor, getClassName } from '../utils/orbchartsUtils'
26
-
27
-
28
- interface BaseTooltipContext {
29
- rootSelection: d3.Selection<any, unknown, any, unknown>
30
- fullParams$: Observable<BaseTooltipParams>
31
- fullChartParams$: Observable<ChartParams>
32
- layout$: Observable<Layout>
33
- event$: Subject<EventTypeMap<any>>
34
- }
35
-
36
- // export interface BaseTooltipStyle {
37
- // backgroundColor: string
38
- // backgroundOpacity: number
39
- // strokeColor: string
40
- // offset: [number, number]
41
- // padding: number
42
- // textColor: string
43
- // textSize: number | string // chartParams上的設定
44
- // textSizePx: number
45
- // }
46
-
47
- function textToSvg (_textArr: string[] | string | null | undefined, textStyle: BaseTooltipStyle) {
48
- const lineHeight = textStyle.textSizePx * 1.5
49
-
50
- const textArr = _textArr == null
51
- ? []
52
- : Array.isArray(_textArr)
53
- ? _textArr
54
- : typeof _textArr === 'string'
55
- ? _textArr.split('\n')
56
- : [_textArr]
57
-
58
- const tspan = textArr
59
- .filter(d => d != '')
60
- .map((text, i) => {
61
- const top = i * lineHeight
62
- return `<tspan x="0" y="${top}">${text}</tspan>`
63
- })
64
- .join('')
65
-
66
- if (tspan) {
67
- return `<text font-size="${textStyle.textSize}" fill="${textStyle.textColor}" x="0" y="0" style="dominant-baseline:text-before-edge">
68
- ${tspan}
69
- </text>`
70
- } else {
71
- return ''
72
- }
73
- }
74
-
75
- function renderTooltip ({ rootSelection, pluginName, gClassName, boxClassName, rootWidth, rootHeight, svgString, tooltipStyle, event }: {
76
- rootSelection: d3.Selection<any, unknown, any, unknown>
77
- pluginName: string
78
- gClassName: string
79
- boxClassName: string
80
- rootWidth: number
81
- rootHeight: number
82
- svgString: string
83
- tooltipStyle: BaseTooltipStyle
84
- event: MouseEvent
85
- }) {
86
- // if (!svgString) {
87
- // return
88
- // }
89
- // const rootSelection = d3.select('svg.bpcharts__root')
90
- // console.log('tooltip', { selection, rootWidth, rootHeight, svgString, event })
91
- rootSelection.interrupt('fadeout')
92
- const radius = 5
93
-
94
- // data(svg string無值則為空陣列)
95
- const contentData = svgString ? [svgString] : []
96
- const styleData = svgString ? [tooltipStyle] : []
97
- // tooltipG <g>
98
- const tooltipG = rootSelection
99
- .selectAll<SVGGElement, string>(`g.${gClassName}`)
100
- .data(contentData)
101
- .join(
102
- enter => {
103
- return enter
104
- .append('g')
105
- .classed(gClassName, true)
106
- .attr('pointer-events', 'none')
107
- },
108
- update => {
109
- return update
110
- },
111
- exit => {
112
- return exit
113
- // .transition('fadeout')
114
- // .duration(0)
115
- // .delay(500)
116
- .style('opacity', 0)
117
- .remove()
118
- }
119
- )
120
- .attr('transform', () => `translate(${event.offsetX}, ${event.offsetY})`)
121
-
122
- // tooltipBox <g><g>
123
- const tooltipBox = tooltipG
124
- .selectAll<SVGGElement, string>(`g.${boxClassName}`)
125
- .data(styleData)
126
- .join(
127
- enter => {
128
- return enter
129
- .append('g')
130
- .classed(getClassName(pluginName, 'box'), true)
131
- },
132
- )
133
-
134
- // rect <g><g><rect>
135
- const rect = tooltipBox
136
- .selectAll<SVGRectElement, string>('rect')
137
- .data(styleData)
138
- .join(
139
- enter => {
140
- return enter
141
- .append('rect')
142
- .attr('rx', radius)
143
- .attr('ry', radius)
144
- }
145
- )
146
- .attr('fill', d => d.backgroundColor)
147
- .attr('stroke', d => d.strokeColor)
148
- .attr('opacity', d => d.backgroundOpacity)
149
-
150
- // text <g><g><g>
151
- const contentG = tooltipBox
152
- .selectAll<SVGGElement, string>('g')
153
- .data(contentData)
154
- .join(
155
- enter => {
156
- return enter
157
- .append('g')
158
- .classed(getClassName(pluginName, 'content'), true)
159
- .attr('transform', () => `translate(${tooltipStyle.padding}, ${tooltipStyle.padding})`)
160
- }
161
- )
162
- // 使用字串加入svg
163
- if (contentData.length) {
164
- appendSvg(contentG, contentData[0])
165
- }
166
- const contentSize = (contentG?.node()) ? getSvgGElementSize(contentG!) : { width: 0, height: 0 }
167
-
168
- // rect size
169
- rect
170
- .attr('width', contentSize.width + tooltipStyle.padding * 2)
171
- .attr('height', contentSize.height + tooltipStyle.padding * 2)
172
-
173
- // -- tooltipG --
174
- // 取得tooltip <g>的尺寸
175
- const tooltipSize = (tooltipBox?.node()) ? getSvgGElementSize(tooltipBox!) : { width: 0, height: 0 }
176
- // const minX = 0
177
- const maxX = rootWidth - tooltipSize.width
178
- // const minY = 0
179
- const maxY = rootHeight - tooltipSize.height
180
-
181
- // -- 相對游標位置的offset --
182
- const offsetX = (event.offsetX + tooltipStyle.offset[0]) > maxX ? maxX - event.offsetX : tooltipStyle.offset[0]
183
- const offsetY = (event.offsetY + tooltipStyle.offset[1]) > maxY ? maxY - event.offsetY : tooltipStyle.offset[1]
184
- tooltipBox.attr('transform', d => `translate(${offsetX}, ${offsetY})`)
185
- tooltipBox.attr('transform', d => `translate(${offsetX}, ${offsetY})`)
186
-
187
- // const minX = containerSize.x
188
- // const maxX = containerSize.x + containerSize.width - tooltipSize.width
189
- // const minY = containerSize.y
190
- // const maxY = containerSize.y + containerSize.height - tooltipSize.height
191
-
192
- // .style('position', 'absolute')
193
- // .style('z-index', 10000)
194
- // .style('left', (d) => {
195
- // const x = d.x + this.fullParams.offsetX! - containerSize.x
196
- // if (x < minX) {
197
- // return `${minX}px`
198
- // } else if (x > maxX) {
199
- // return `${maxX}px`
200
- // }
201
- // return `${x}px`
202
- // })
203
- // .style('top', (d) => {
204
- // const y = d.y + this.fullParams.offsetY! - containerSize.y
205
- // if (y < minY) {
206
- // return `${minY}px`
207
- // } else if (y > maxY) {
208
- // return `${maxY}px`
209
- // }
210
- // return `${y}px`
211
- // })
212
- // .html((d) => d.contentHtml)
213
-
214
- }
215
-
216
- export const createBaseTooltip: BasePluginFn<BaseTooltipContext> = (pluginName: string, {
217
- rootSelection,
218
- fullParams$,
219
- fullChartParams$,
220
- layout$,
221
- event$
222
- }) => {
223
-
224
- const destroy$ = new Subject()
225
-
226
- const gClassName = getClassName(pluginName, 'g')
227
- const boxClassName = getClassName(pluginName, 'box')
228
-
229
- // 事件觸發
230
- const eventMouseover$: Observable<EventTypeMap<any>> = event$.pipe(
231
- takeUntil(destroy$),
232
- filter(d => d.eventName === 'mouseover' || d.eventName === 'mousemove'),
233
- // distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
234
- // map(d => d as EventTypeMap<typeof chartType>)
235
- )
236
- const eventMouseout$: Observable<EventTypeMap<any>> = event$.pipe(
237
- takeUntil(destroy$),
238
- filter(d => d.eventName === 'mouseout'),
239
- // distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
240
- // map(d => d as EventTypeMap<typeof chartType>)
241
- )
242
-
243
- const textSizePx$ = textSizePxObservable(fullChartParams$)
244
-
245
- const tooltipStyle$: Observable<BaseTooltipStyle> = combineLatest({
246
- fullChartParams: fullChartParams$,
247
- fullParams: fullParams$,
248
- textSizePx: textSizePx$
249
- }).pipe(
250
- takeUntil(destroy$),
251
- switchMap(async d => d),
252
- map(data => {
253
- return {
254
- backgroundColor: getColor(data.fullParams.backgroundColorType, data.fullChartParams),
255
- backgroundOpacity: data.fullParams.backgroundOpacity,
256
- strokeColor: getColor(data.fullParams.strokeColorType, data.fullChartParams),
257
- offset: data.fullParams.offset,
258
- padding: data.fullParams.padding,
259
- textSize: data.fullChartParams.styles.textSize,
260
- textSizePx: data.textSizePx,
261
- textColor: getColor(data.fullParams.textColorType, data.fullChartParams),
262
- seriesColors: data.fullChartParams.colors[data.fullChartParams.colorScheme].series
263
- }
264
- })
265
- )
266
-
267
- const contentRenderFn$: Observable<((eventData: EventTypeMap<any>) => string)> = combineLatest({
268
- fullParams: fullParams$,
269
- tooltipStyle: tooltipStyle$
270
- }).pipe(
271
- takeUntil(destroy$),
272
- switchMap(async d => d),
273
- map(data => {
274
- // if (data.fullParams.svgRenderFn) {
275
- // return data.fullParams.svgRenderFn
276
- // }
277
- // // 將textRenderFn回傳的資料使用<text>包裝起來
278
- // return (eventData: EventTypeMap<any>) => {
279
- // const textArr: string | string[] | null = data.fullParams.textRenderFn
280
- // ? data.fullParams.textRenderFn(eventData as any)
281
- // : null
282
- // return textToSvg(textArr, data.tooltipStyle)
283
- // }
284
- return (eventData: EventTypeMap<any>) => {
285
- const renderText: string | string[] = data.fullParams.renderFn(
286
- // mouseover事件的資料
287
- eventData,
288
- // context
289
- {
290
- styles: data.tooltipStyle
291
- }
292
- )
293
- // string
294
- if (typeof renderText === 'string') {
295
- const trimText = renderText.trim()
296
- const isSvgText = trimText.slice(0, 1) === '<' && trimText.slice(trimText.length - 1, trimText.length) === '>'
297
-
298
- if (isSvgText) {
299
- return renderText // svg字串
300
- } else {
301
- const textArr = renderText.split('\n')
302
- return textToSvg(textArr, data.tooltipStyle) // 多行文字轉svg字串
303
- }
304
- }
305
- // string[]
306
- else if (Array.isArray(renderText)) {
307
- return textToSvg(renderText, data.tooltipStyle) // 多行文字轉svg字串
308
- }
309
- return ''
310
- }
311
- })
312
- )
313
-
314
- const mouseoverTooltipSvg$ = combineLatest({
315
- event: eventMouseover$,
316
- contentRenderFn: contentRenderFn$
317
- }).pipe(
318
- takeUntil(destroy$),
319
- switchMap(async d => d),
320
- map(d => d.contentRenderFn(d.event))
321
- )
322
-
323
- const mouseoutTooltipSvg$ = eventMouseout$.pipe(
324
- takeUntil(destroy$),
325
- map(d => '')
326
- )
327
-
328
- const svgString$ = merge(mouseoverTooltipSvg$, mouseoutTooltipSvg$)
329
- .pipe(
330
- takeUntil(destroy$),
331
- distinctUntilChanged((a, b) => a === b)
332
- )
333
-
334
- const eventTooltip$ = merge(eventMouseover$, eventMouseout$)
335
- .pipe(
336
- takeUntil(destroy$),
337
- // filter(d => {
338
- // return (d.eventName === 'mouseover' || d.eventName === 'mousemove' || d.eventName === 'mouseout')
339
- // && d.event != undefined
340
- // }),
341
- map(d => d.event!),
342
- )
343
-
344
- combineLatest({
345
- svgString: svgString$,
346
- eventTooltip: eventTooltip$,
347
- layout: layout$,
348
- tooltipStyle: tooltipStyle$,
349
- }).pipe(
350
- takeUntil(destroy$),
351
- switchMap(async d => d),
352
- ).subscribe(data => {
353
- renderTooltip({
354
- rootSelection,
355
- pluginName,
356
- gClassName,
357
- boxClassName,
358
- rootWidth: data.layout.rootWidth,
359
- rootHeight: data.layout.rootHeight,
360
- svgString: data.svgString,
361
- tooltipStyle: data.tooltipStyle,
362
- event: data.eventTooltip
363
- })
364
- })
365
-
366
-
367
-
368
- // const chartType$ = eventMouseover$.pipe(
369
- // takeUntil(destroy$),
370
- // map(d => d.type),
371
- // distinctUntilChanged()
372
- // )
373
-
374
-
375
- // eventMouseover$.subscribe(event => {
376
-
377
- // })
378
-
379
-
380
- return () => {
381
- destroy$.next(undefined)
382
- }
1
+ import * as d3 from 'd3'
2
+ import {
3
+ combineLatest,
4
+ map,
5
+ merge,
6
+ filter,
7
+ switchMap,
8
+ first,
9
+ iif,
10
+ takeUntil,
11
+ Subject,
12
+ Observable,
13
+ distinctUntilChanged } from 'rxjs'
14
+ import type {
15
+ EventTypeMap,
16
+ PluginConstructor,
17
+ ChartType,
18
+ ChartParams,
19
+ Layout
20
+ } from '../../lib/core-types'
21
+ import type { BaseTooltipParams, BaseTooltipStyle } from '../../lib/plugins-basic-types'
22
+ import type { BasePluginFn } from './types'
23
+ import { defineNoneDataPlugin, textSizePxObservable } from '../../lib/core'
24
+ import { getSvgGElementSize, appendSvg } from '../utils/d3Utils'
25
+ import { getColor, getClassName } from '../utils/orbchartsUtils'
26
+ import { measureTextWidth } from '../utils/commonUtils'
27
+
28
+ interface BaseTooltipContext {
29
+ rootSelection: d3.Selection<any, unknown, any, unknown>
30
+ fullParams$: Observable<BaseTooltipParams>
31
+ fullChartParams$: Observable<ChartParams>
32
+ layout$: Observable<Layout>
33
+ event$: Subject<EventTypeMap<any>>
34
+ }
35
+
36
+ // export interface BaseTooltipStyle {
37
+ // backgroundColor: string
38
+ // backgroundOpacity: number
39
+ // strokeColor: string
40
+ // offset: [number, number]
41
+ // padding: number
42
+ // textColor: string
43
+ // textSize: number | string // chartParams上的設定
44
+ // textSizePx: number
45
+ // }
46
+
47
+ function textToSvg (_textArr: string[] | string | null | undefined, textStyle: BaseTooltipStyle) {
48
+ const lineHeight = textStyle.textSizePx * 1.5
49
+
50
+ const textArr = _textArr == null
51
+ ? []
52
+ : Array.isArray(_textArr)
53
+ ? _textArr
54
+ : typeof _textArr === 'string'
55
+ ? _textArr.split('\n')
56
+ : [_textArr]
57
+
58
+ const tspan = textArr
59
+ .filter(d => d != '')
60
+ .map((text, i) => {
61
+ const top = i * lineHeight
62
+ return `<tspan x="0" y="${top}">${text}</tspan>`
63
+ })
64
+ .join('')
65
+
66
+ if (tspan) {
67
+ return `<text font-size="${textStyle.textSize}" fill="${textStyle.textColor}" x="0" y="0" style="dominant-baseline:text-before-edge">
68
+ ${tspan}
69
+ </text>`
70
+ } else {
71
+ return ''
72
+ }
73
+ }
74
+
75
+ function renderTooltip ({ rootSelection, pluginName, gClassName, boxClassName, rootWidth, rootHeight, svgString, tooltipStyle, event }: {
76
+ rootSelection: d3.Selection<any, unknown, any, unknown>
77
+ pluginName: string
78
+ gClassName: string
79
+ boxClassName: string
80
+ rootWidth: number
81
+ rootHeight: number
82
+ svgString: string
83
+ tooltipStyle: BaseTooltipStyle
84
+ event: MouseEvent
85
+ }) {
86
+ // if (!svgString) {
87
+ // return
88
+ // }
89
+ // const rootSelection = d3.select('svg.bpcharts__root')
90
+ // console.log('tooltip', { selection, rootWidth, rootHeight, svgString, event })
91
+ rootSelection.interrupt('fadeout')
92
+ const radius = 5
93
+
94
+ // data(svg string無值則為空陣列)
95
+ const contentData = svgString ? [svgString] : []
96
+ const styleData = svgString ? [tooltipStyle] : []
97
+ // tooltipG <g>
98
+ const tooltipG = rootSelection
99
+ .selectAll<SVGGElement, string>(`g.${gClassName}`)
100
+ .data(contentData)
101
+ .join(
102
+ enter => {
103
+ return enter
104
+ .append('g')
105
+ .classed(gClassName, true)
106
+ .attr('pointer-events', 'none')
107
+ },
108
+ update => {
109
+ return update
110
+ },
111
+ exit => {
112
+ return exit
113
+ // .transition('fadeout')
114
+ // .duration(0)
115
+ // .delay(500)
116
+ .style('opacity', 0)
117
+ .remove()
118
+ }
119
+ )
120
+ .attr('transform', () => `translate(${event.offsetX}, ${event.offsetY})`)
121
+
122
+ // tooltipBox <g><g>
123
+ const tooltipBox = tooltipG
124
+ .selectAll<SVGGElement, string>(`g.${boxClassName}`)
125
+ .data(styleData)
126
+ .join(
127
+ enter => {
128
+ return enter
129
+ .append('g')
130
+ .classed(getClassName(pluginName, 'box'), true)
131
+ },
132
+ )
133
+
134
+ // rect <g><g><rect>
135
+ const rect = tooltipBox
136
+ .selectAll<SVGRectElement, string>('rect')
137
+ .data(styleData)
138
+ .join(
139
+ enter => {
140
+ return enter
141
+ .append('rect')
142
+ .attr('rx', radius)
143
+ .attr('ry', radius)
144
+ }
145
+ )
146
+ .attr('fill', d => d.backgroundColor)
147
+ .attr('stroke', d => d.strokeColor)
148
+ .attr('opacity', d => d.backgroundOpacity)
149
+
150
+ // text <g><g><g>
151
+ const contentG = tooltipBox
152
+ .selectAll<SVGGElement, string>('g')
153
+ .data(contentData)
154
+ .join(
155
+ enter => {
156
+ return enter
157
+ .append('g')
158
+ .classed(getClassName(pluginName, 'content'), true)
159
+ .attr('transform', () => `translate(${tooltipStyle.padding}, ${tooltipStyle.padding})`)
160
+ }
161
+ )
162
+ // 使用字串加入svg
163
+ if (contentData.length) {
164
+ appendSvg(contentG, contentData[0])
165
+ }
166
+ const contentSize = (contentG?.node()) ? getSvgGElementSize(contentG!) : { width: 0, height: 0 }
167
+
168
+ // rect size
169
+ rect
170
+ .attr('width', contentSize.width + tooltipStyle.padding * 2)
171
+ .attr('height', contentSize.height + tooltipStyle.padding * 2)
172
+
173
+ // -- tooltipG --
174
+ // 取得tooltip <g>的尺寸
175
+ const tooltipSize = (tooltipBox?.node()) ? getSvgGElementSize(tooltipBox!) : { width: 0, height: 0 }
176
+ // const minX = 0
177
+ const maxX = rootWidth - tooltipSize.width
178
+ // const minY = 0
179
+ const maxY = rootHeight - tooltipSize.height
180
+
181
+ // -- 相對游標位置的offset --
182
+ const offsetX = (event.offsetX + tooltipStyle.offset[0]) > maxX ? maxX - event.offsetX : tooltipStyle.offset[0]
183
+ const offsetY = (event.offsetY + tooltipStyle.offset[1]) > maxY ? maxY - event.offsetY : tooltipStyle.offset[1]
184
+ tooltipBox.attr('transform', d => `translate(${offsetX}, ${offsetY})`)
185
+ tooltipBox.attr('transform', d => `translate(${offsetX}, ${offsetY})`)
186
+
187
+ // const minX = containerSize.x
188
+ // const maxX = containerSize.x + containerSize.width - tooltipSize.width
189
+ // const minY = containerSize.y
190
+ // const maxY = containerSize.y + containerSize.height - tooltipSize.height
191
+
192
+ // .style('position', 'absolute')
193
+ // .style('z-index', 10000)
194
+ // .style('left', (d) => {
195
+ // const x = d.x + this.fullParams.offsetX! - containerSize.x
196
+ // if (x < minX) {
197
+ // return `${minX}px`
198
+ // } else if (x > maxX) {
199
+ // return `${maxX}px`
200
+ // }
201
+ // return `${x}px`
202
+ // })
203
+ // .style('top', (d) => {
204
+ // const y = d.y + this.fullParams.offsetY! - containerSize.y
205
+ // if (y < minY) {
206
+ // return `${minY}px`
207
+ // } else if (y > maxY) {
208
+ // return `${maxY}px`
209
+ // }
210
+ // return `${y}px`
211
+ // })
212
+ // .html((d) => d.contentHtml)
213
+
214
+ }
215
+
216
+ export const createBaseTooltip: BasePluginFn<BaseTooltipContext> = (pluginName: string, {
217
+ rootSelection,
218
+ fullParams$,
219
+ fullChartParams$,
220
+ layout$,
221
+ event$
222
+ }) => {
223
+
224
+ const destroy$ = new Subject()
225
+
226
+ const gClassName = getClassName(pluginName, 'g')
227
+ const boxClassName = getClassName(pluginName, 'box')
228
+
229
+ // 事件觸發
230
+ const eventMouseover$: Observable<EventTypeMap<any>> = event$.pipe(
231
+ takeUntil(destroy$),
232
+ filter(d => d.eventName === 'mouseover' || d.eventName === 'mousemove'),
233
+ // distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
234
+ // map(d => d as EventTypeMap<typeof chartType>)
235
+ )
236
+ const eventMouseout$: Observable<EventTypeMap<any>> = event$.pipe(
237
+ takeUntil(destroy$),
238
+ filter(d => d.eventName === 'mouseout'),
239
+ // distinctUntilChanged((prev, current) => prev.eventName === current.eventName)
240
+ // map(d => d as EventTypeMap<typeof chartType>)
241
+ )
242
+
243
+ const textSizePx$ = textSizePxObservable(fullChartParams$)
244
+
245
+ const tooltipStyle$: Observable<BaseTooltipStyle> = combineLatest({
246
+ fullChartParams: fullChartParams$,
247
+ fullParams: fullParams$,
248
+ textSizePx: textSizePx$
249
+ }).pipe(
250
+ takeUntil(destroy$),
251
+ switchMap(async d => d),
252
+ map(data => {
253
+ return {
254
+ backgroundColor: getColor(data.fullParams.backgroundColorType, data.fullChartParams),
255
+ backgroundOpacity: data.fullParams.backgroundOpacity,
256
+ strokeColor: getColor(data.fullParams.strokeColorType, data.fullChartParams),
257
+ offset: data.fullParams.offset,
258
+ padding: data.fullParams.padding,
259
+ textSize: data.fullChartParams.styles.textSize,
260
+ textSizePx: data.textSizePx,
261
+ textColor: getColor(data.fullParams.textColorType, data.fullChartParams),
262
+ seriesColors: data.fullChartParams.colors[data.fullChartParams.colorScheme].label
263
+ }
264
+ })
265
+ )
266
+
267
+ const contentRenderFn$: Observable<((eventData: EventTypeMap<any>) => string)> = combineLatest({
268
+ fullParams: fullParams$,
269
+ tooltipStyle: tooltipStyle$
270
+ }).pipe(
271
+ takeUntil(destroy$),
272
+ switchMap(async d => d),
273
+ map(data => {
274
+ // if (data.fullParams.svgRenderFn) {
275
+ // return data.fullParams.svgRenderFn
276
+ // }
277
+ // // 將textRenderFn回傳的資料使用<text>包裝起來
278
+ // return (eventData: EventTypeMap<any>) => {
279
+ // const textArr: string | string[] | null = data.fullParams.textRenderFn
280
+ // ? data.fullParams.textRenderFn(eventData as any)
281
+ // : null
282
+ // return textToSvg(textArr, data.tooltipStyle)
283
+ // }
284
+ return (eventData: EventTypeMap<any>) => {
285
+ const renderText: string | string[] = data.fullParams.renderFn(
286
+ // mouseover事件的資料
287
+ eventData,
288
+ // context
289
+ {
290
+ utils: {
291
+ measureTextWidth
292
+ },
293
+ styles: data.tooltipStyle
294
+ }
295
+ )
296
+ // string
297
+ if (typeof renderText === 'string') {
298
+ const trimText = renderText.trim()
299
+ const isSvgText = trimText.slice(0, 1) === '<' && trimText.slice(trimText.length - 1, trimText.length) === '>'
300
+
301
+ if (isSvgText) {
302
+ return renderText // svg字串
303
+ } else {
304
+ const textArr = renderText.split('\n')
305
+ return textToSvg(textArr, data.tooltipStyle) // 多行文字轉svg字串
306
+ }
307
+ }
308
+ // string[]
309
+ else if (Array.isArray(renderText)) {
310
+ return textToSvg(renderText, data.tooltipStyle) // 多行文字轉svg字串
311
+ }
312
+ return ''
313
+ }
314
+ })
315
+ )
316
+
317
+ const mouseoverTooltipSvg$ = combineLatest({
318
+ event: eventMouseover$,
319
+ contentRenderFn: contentRenderFn$
320
+ }).pipe(
321
+ takeUntil(destroy$),
322
+ switchMap(async d => d),
323
+ map(d => d.contentRenderFn(d.event))
324
+ )
325
+
326
+ const mouseoutTooltipSvg$ = eventMouseout$.pipe(
327
+ takeUntil(destroy$),
328
+ map(d => '')
329
+ )
330
+
331
+ const svgString$ = merge(mouseoverTooltipSvg$, mouseoutTooltipSvg$)
332
+ .pipe(
333
+ takeUntil(destroy$),
334
+ distinctUntilChanged((a, b) => a === b)
335
+ )
336
+
337
+ const eventTooltip$ = merge(eventMouseover$, eventMouseout$)
338
+ .pipe(
339
+ takeUntil(destroy$),
340
+ // filter(d => {
341
+ // return (d.eventName === 'mouseover' || d.eventName === 'mousemove' || d.eventName === 'mouseout')
342
+ // && d.event != undefined
343
+ // }),
344
+ map(d => d.event!),
345
+ )
346
+
347
+ combineLatest({
348
+ svgString: svgString$,
349
+ eventTooltip: eventTooltip$,
350
+ layout: layout$,
351
+ tooltipStyle: tooltipStyle$,
352
+ }).pipe(
353
+ takeUntil(destroy$),
354
+ switchMap(async d => d),
355
+ ).subscribe(data => {
356
+ renderTooltip({
357
+ rootSelection,
358
+ pluginName,
359
+ gClassName,
360
+ boxClassName,
361
+ rootWidth: data.layout.rootWidth,
362
+ rootHeight: data.layout.rootHeight,
363
+ svgString: data.svgString,
364
+ tooltipStyle: data.tooltipStyle,
365
+ event: data.eventTooltip
366
+ })
367
+ })
368
+
369
+
370
+
371
+ // const chartType$ = eventMouseover$.pipe(
372
+ // takeUntil(destroy$),
373
+ // map(d => d.type),
374
+ // distinctUntilChanged()
375
+ // )
376
+
377
+
378
+ // eventMouseover$.subscribe(event => {
379
+
380
+ // })
381
+
382
+
383
+ return () => {
384
+ destroy$.next(undefined)
385
+ }
383
386
  }