@easyv/charts 1.5.29 → 1.5.30

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 (53) hide show
  1. package/.babelrc +8 -8
  2. package/.husky/commit-msg +3 -3
  3. package/CHANGELOG.md +18 -18
  4. package/commitlint.config.js +1 -1
  5. package/lib/components/Background.js +2 -2
  6. package/lib/components/ConicalGradient.js +21 -21
  7. package/lib/components/Lighter.js +2 -2
  8. package/lib/components/LinearGradient.js +2 -2
  9. package/lib/css/index.module.css +42 -42
  10. package/lib/css/piechart.module.css +26 -26
  11. package/lib/hooks/useAnimateData.js +6 -6
  12. package/lib/hooks/useAxes.js +29 -6
  13. package/lib/hooks/useExtentData.js +19 -4
  14. package/lib/hooks/useFilterData.js +5 -5
  15. package/lib/hooks/useStackData.js +5 -5
  16. package/lib/hooks/useTooltip.js +11 -11
  17. package/package.json +55 -55
  18. package/src/components/Background.tsx +61 -61
  19. package/src/components/Band.tsx +271 -271
  20. package/src/components/Brush.js +159 -159
  21. package/src/components/Chart.js +135 -135
  22. package/src/components/ChartContainer.tsx +71 -71
  23. package/src/components/ConicalGradient.js +258 -258
  24. package/src/components/Control.jsx +236 -236
  25. package/src/components/ExtentData.js +18 -18
  26. package/src/components/Indicator.js +58 -58
  27. package/src/components/Label.js +242 -242
  28. package/src/components/Legend.js +166 -166
  29. package/src/components/Lighter.jsx +173 -173
  30. package/src/components/Line.js +153 -153
  31. package/src/components/LinearGradient.js +29 -29
  32. package/src/components/PieTooltip.jsx +160 -160
  33. package/src/components/StereoBar.tsx +307 -307
  34. package/src/components/index.js +59 -59
  35. package/src/context/index.js +2 -2
  36. package/src/css/index.module.css +42 -42
  37. package/src/css/piechart.module.css +26 -26
  38. package/src/element/ConicGradient.jsx +55 -55
  39. package/src/element/Line.tsx +33 -33
  40. package/src/element/index.ts +3 -3
  41. package/src/formatter/index.js +1 -1
  42. package/src/formatter/legend.js +92 -92
  43. package/src/hooks/index.js +20 -20
  44. package/src/hooks/useAnimateData.ts +68 -68
  45. package/src/hooks/useAxes.js +86 -32
  46. package/src/hooks/useExtentData.js +52 -16
  47. package/src/hooks/useFilterData.js +78 -78
  48. package/src/hooks/useStackData.js +102 -102
  49. package/src/hooks/useTooltip.ts +104 -104
  50. package/src/index.js +6 -6
  51. package/src/types/index.d.ts +68 -68
  52. package/src/utils/index.js +762 -762
  53. package/tsconfig.json +23 -23
@@ -1,71 +1,71 @@
1
- /**
2
- * svg外框
3
- */
4
- import React, {
5
- memo,
6
- forwardRef,
7
- ReactChild,
8
- ReactEventHandler,
9
- LegacyRef,
10
- } from "react";
11
- const event = () => {};
12
-
13
- type Props = {
14
- width: number;
15
- height: number;
16
- marginLeft: number;
17
- marginTop: number;
18
- style: Object;
19
- children: ReactChild;
20
- onMouseEnter: ReactEventHandler;
21
- onMouseLeave: ReactEventHandler;
22
- onClick: ReactEventHandler;
23
- onMouseMove: ReactEventHandler;
24
- onMouseOut: ReactEventHandler;
25
- };
26
-
27
- export default memo(
28
- forwardRef(
29
- (
30
- {
31
- width,
32
- height,
33
- marginLeft,
34
- marginTop,
35
- style,
36
- children,
37
- onMouseEnter = event,
38
- onMouseLeave = event,
39
- onClick = event,
40
- onMouseMove = event,
41
- onMouseOut = event,
42
- }: Props,
43
- ref: LegacyRef<SVGSVGElement>
44
- ) => {
45
- return (
46
- <svg
47
- className="__easyv-svg"
48
- width={width}
49
- height={height}
50
- onMouseEnter={onMouseEnter}
51
- onMouseLeave={onMouseLeave}
52
- onMouseOut={onMouseOut}
53
- onClick={onClick}
54
- onMouseMove={onMouseMove}
55
- ref={ref}
56
- style={{
57
- overflow: "visible",
58
- position: "absolute",
59
- width,
60
- height,
61
- ...style,
62
- }}
63
- >
64
- <g transform={"translate(" + marginLeft + ", " + marginTop + ")"}>
65
- {children}
66
- </g>
67
- </svg>
68
- );
69
- }
70
- )
71
- );
1
+ /**
2
+ * svg外框
3
+ */
4
+ import React, {
5
+ memo,
6
+ forwardRef,
7
+ ReactChild,
8
+ ReactEventHandler,
9
+ LegacyRef,
10
+ } from "react";
11
+ const event = () => {};
12
+
13
+ type Props = {
14
+ width: number;
15
+ height: number;
16
+ marginLeft: number;
17
+ marginTop: number;
18
+ style: Object;
19
+ children: ReactChild;
20
+ onMouseEnter: ReactEventHandler;
21
+ onMouseLeave: ReactEventHandler;
22
+ onClick: ReactEventHandler;
23
+ onMouseMove: ReactEventHandler;
24
+ onMouseOut: ReactEventHandler;
25
+ };
26
+
27
+ export default memo(
28
+ forwardRef(
29
+ (
30
+ {
31
+ width,
32
+ height,
33
+ marginLeft,
34
+ marginTop,
35
+ style,
36
+ children,
37
+ onMouseEnter = event,
38
+ onMouseLeave = event,
39
+ onClick = event,
40
+ onMouseMove = event,
41
+ onMouseOut = event,
42
+ }: Props,
43
+ ref: LegacyRef<SVGSVGElement>
44
+ ) => {
45
+ return (
46
+ <svg
47
+ className="__easyv-svg"
48
+ width={width}
49
+ height={height}
50
+ onMouseEnter={onMouseEnter}
51
+ onMouseLeave={onMouseLeave}
52
+ onMouseOut={onMouseOut}
53
+ onClick={onClick}
54
+ onMouseMove={onMouseMove}
55
+ ref={ref}
56
+ style={{
57
+ overflow: "visible",
58
+ position: "absolute",
59
+ width,
60
+ height,
61
+ ...style,
62
+ }}
63
+ >
64
+ <g transform={"translate(" + marginLeft + ", " + marginTop + ")"}>
65
+ {children}
66
+ </g>
67
+ </svg>
68
+ );
69
+ }
70
+ )
71
+ );
@@ -1,258 +1,258 @@
1
- /**
2
- * 饼图装饰内圈
3
- */
4
- import React, { useEffect, useState } from 'react';
5
- import { arc } from 'd3v7';
6
- import { converColor } from '@easyv/utils/lib/common/utils';
7
- import css from '../css/index.module.css';
8
-
9
- export default ({
10
- width,
11
- height,
12
- centerX,
13
- centerY,
14
- radius,
15
- config: { show, innerRadius, outerRadius, opacity, speed, direction },
16
- arcs,
17
- }) => {
18
- if (!show) return null;
19
- const [canvas, setCanvas] = useState(null);
20
-
21
- useEffect(() => {
22
- if (arcs && arcs.length > 0 && canvas && canvas.getContext('2d')) {
23
- const _radius = radius * devicePixelRatio;
24
- const context = canvas.getContext('2d');
25
- context.clearRect(
26
- 0,
27
- 0,
28
- width * devicePixelRatio,
29
- height * devicePixelRatio
30
- );
31
-
32
- context.save();
33
- context.translate(centerX * devicePixelRatio, centerY * devicePixelRatio);
34
- context.beginPath();
35
-
36
- const _arc = arc()
37
- .innerRadius(innerRadius * _radius)
38
- .outerRadius(outerRadius * _radius)
39
- // .padAngle(axis.pole.padAngle)
40
- // .cornerRadius(axis.pole.cornerRadius)
41
- .context(context);
42
-
43
- arcs.forEach((element) => {
44
- const startAngle = element.arc.startAngle()();
45
- const endAngle = element.arc.endAngle()();
46
- _arc.startAngle(startAngle).endAngle(endAngle)();
47
- context.fillStyle = 'rgba(255, 255, 255, 0)';
48
- context.fill();
49
- });
50
-
51
- context.clip();
52
- context.rotate(-Math.PI / 2);
53
-
54
- const conic = new ConicalGradient();
55
- arcs.reduce(
56
- (
57
- reduced,
58
- {
59
- percent,
60
- series: {
61
- color: {
62
- type,
63
- pure,
64
- linear: { stops },
65
- },
66
- },
67
- }
68
- ) => {
69
- const result = reduced + percent / 100;
70
- const color = type == 'pure' ? pure : stops[0].color;
71
- if (!!color) {
72
- var { r, g, b, a } = converColor(color, 1);
73
- conic.addColorStop(reduced, { r, g, b, a: 0 });
74
- conic.addColorStop(result, { r, g, b, a });
75
- }
76
- return result;
77
- },
78
- 0
79
- );
80
-
81
- conic.fill(context, 0, 0, _radius, 0, 2 * Math.PI, false);
82
- context.restore();
83
- }
84
- }, [canvas, radius, arcs, innerRadius, outerRadius]);
85
-
86
- return (
87
- <canvas
88
- className={
89
- direction == 'clockwise'
90
- ? css.rotateClockwise
91
- : css.rotateCounterClockwise
92
- }
93
- ref={setCanvas}
94
- width={width * devicePixelRatio}
95
- height={height * devicePixelRatio}
96
- style={{
97
- opacity: opacity / 100,
98
- width,
99
- height,
100
- pointerEvents: 'none',
101
- position: 'absolute',
102
- animationTimingFunction: 'linear',
103
- animationDuration: speed + 's',
104
- animationIterationCount: 'infinite',
105
- transformOrigin: centerX + 'px ' + centerY + 'px',
106
- }}
107
- />
108
- );
109
- };
110
-
111
- /**
112
- * ConicalGradient
113
- */
114
- function ConicalGradient() {
115
- this._offsets = [];
116
- this._colors = [];
117
- }
118
-
119
- ConicalGradient.prototype = {
120
- /**
121
- * addColorStop
122
- *
123
- * @param {Number} offset
124
- * @param {Array} color RGBA值
125
- */
126
- addColorStop: function (offset, color) {
127
- this._offsets.push(offset);
128
- this._colors.push(color);
129
- return this;
130
- },
131
-
132
- /**
133
- * _offsetsReverse (array.forEach callback)
134
- */
135
- _offsetsReverse: function (offset, index, array) {
136
- array[index] = 1 - offset;
137
- },
138
- /**
139
- * fill
140
- *
141
- * @param {Number} context
142
- * @param {Number} x
143
- * @param {Number} y
144
- * @param {Number} radius
145
- * @param {Number} startAngle
146
- * @param {Number} endAngle
147
- * @param {Boolean} anticlockwise
148
- */
149
- fill: function (context, x, y, radius, startAngle, endAngle, anticlockwise) {
150
- var offsets = this._offsets;
151
- var colors = this._colors;
152
-
153
- var PI = Math.PI;
154
- var TWO_PI = PI * 2;
155
-
156
- if (startAngle < 0) startAngle = (startAngle % TWO_PI) + TWO_PI;
157
- startAngle %= TWO_PI;
158
- if (endAngle < 0) endAngle = (endAngle % TWO_PI) + TWO_PI;
159
- endAngle %= TWO_PI;
160
-
161
- if (anticlockwise) {
162
- // 逆时针
163
- var swap = startAngle;
164
- startAngle = endAngle;
165
- endAngle = swap;
166
-
167
- colors.reverse();
168
- offsets.reverse();
169
- offsets.forEach(this._offsetsReverse);
170
- }
171
-
172
- if (startAngle > endAngle || Math.abs(endAngle - startAngle) < 0.0001) {
173
- endAngle += TWO_PI;
174
- }
175
-
176
- var colorsLength = colors.length;
177
-
178
- var currentColorIndex = 0;
179
- var currentColor = colors[currentColorIndex];
180
- var nextColor = colors[currentColorIndex];
181
-
182
- var prevOffset = 0;
183
- var currentOffset = offsets[currentColorIndex];
184
- var offsetDist = currentOffset - prevOffset;
185
-
186
- var totalAngleDeg = ((endAngle - startAngle) * 180) / PI;
187
- var stepAngleRad = (endAngle - startAngle) / totalAngleDeg;
188
-
189
- var arcStartAngle = startAngle;
190
- var arcEndAngle;
191
-
192
- var r1 = currentColor.r,
193
- g1 = currentColor.g,
194
- b1 = currentColor.b,
195
- a1 = currentColor.a,
196
- r2 = nextColor.r,
197
- g2 = nextColor.g,
198
- b2 = nextColor.b,
199
- a2 = nextColor.a;
200
- if (!a1 && a1 !== 0) a1 = 1;
201
- if (!a2 && a2 !== 0) a2 = 1;
202
- var rd = r2 - r1,
203
- gd = g2 - g1,
204
- bd = b2 - b1,
205
- ad = a2 - a1;
206
- var t, r, g, b, a;
207
-
208
- context.save();
209
- for (var i = 0, n = 1 / totalAngleDeg; i < 1; i += n) {
210
- if (i >= currentOffset) {
211
- currentColorIndex++;
212
-
213
- currentColor = nextColor;
214
- r1 = currentColor.r;
215
- g1 = currentColor.g;
216
- b1 = currentColor.b;
217
- a1 = currentColor.a;
218
- if (!a1 && a1 !== 0) a1 = 1;
219
-
220
- nextColor = colors[currentColorIndex] || {r:0,g:0,b:0,a:1};
221
- r2 = nextColor.r;
222
- g2 = nextColor.g;
223
- b2 = nextColor.b;
224
- a2 = nextColor.a;
225
- if (!a2 && a2 !== 0) a2 = 1;
226
-
227
- rd = r2 - r1;
228
- gd = g2 - g1;
229
- bd = b2 - b1;
230
- ad = a2 - a1;
231
-
232
- prevOffset = currentOffset;
233
- currentOffset = offsets[currentColorIndex];
234
- offsetDist = currentOffset - prevOffset;
235
- }
236
-
237
- t = (i - prevOffset) / offsetDist;
238
- r = (rd * t + r1) & 255;
239
- g = (gd * t + g1) & 255;
240
- b = (bd * t + b1) & 255;
241
- a = ad * t + a1;
242
-
243
- arcEndAngle = arcStartAngle + stepAngleRad;
244
-
245
- context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';
246
- context.beginPath();
247
- context.moveTo(x, y);
248
- context.arc(x, y, radius, arcStartAngle - 0.02, arcEndAngle, false);
249
- context.closePath();
250
- context.fill();
251
-
252
- arcStartAngle += stepAngleRad;
253
- }
254
- context.restore();
255
-
256
- return this;
257
- },
258
- };
1
+ /**
2
+ * 饼图装饰内圈
3
+ */
4
+ import React, { useEffect, useState } from 'react';
5
+ import { arc } from 'd3v7';
6
+ import { converColor } from '@easyv/utils/lib/common/utils';
7
+ import css from '../css/index.module.css';
8
+
9
+ export default ({
10
+ width,
11
+ height,
12
+ centerX,
13
+ centerY,
14
+ radius,
15
+ config: { show, innerRadius, outerRadius, opacity, speed, direction },
16
+ arcs,
17
+ }) => {
18
+ if (!show) return null;
19
+ const [canvas, setCanvas] = useState(null);
20
+
21
+ useEffect(() => {
22
+ if (arcs && arcs.length > 0 && canvas && canvas.getContext('2d')) {
23
+ const _radius = radius * devicePixelRatio;
24
+ const context = canvas.getContext('2d');
25
+ context.clearRect(
26
+ 0,
27
+ 0,
28
+ width * devicePixelRatio,
29
+ height * devicePixelRatio
30
+ );
31
+
32
+ context.save();
33
+ context.translate(centerX * devicePixelRatio, centerY * devicePixelRatio);
34
+ context.beginPath();
35
+
36
+ const _arc = arc()
37
+ .innerRadius(innerRadius * _radius)
38
+ .outerRadius(outerRadius * _radius)
39
+ // .padAngle(axis.pole.padAngle)
40
+ // .cornerRadius(axis.pole.cornerRadius)
41
+ .context(context);
42
+
43
+ arcs.forEach((element) => {
44
+ const startAngle = element.arc.startAngle()();
45
+ const endAngle = element.arc.endAngle()();
46
+ _arc.startAngle(startAngle).endAngle(endAngle)();
47
+ context.fillStyle = 'rgba(255, 255, 255, 0)';
48
+ context.fill();
49
+ });
50
+
51
+ context.clip();
52
+ context.rotate(-Math.PI / 2);
53
+
54
+ const conic = new ConicalGradient();
55
+ arcs.reduce(
56
+ (
57
+ reduced,
58
+ {
59
+ percent,
60
+ series: {
61
+ color: {
62
+ type,
63
+ pure,
64
+ linear: { stops },
65
+ },
66
+ },
67
+ }
68
+ ) => {
69
+ const result = reduced + percent / 100;
70
+ const color = type == 'pure' ? pure : stops[0].color;
71
+ if (!!color) {
72
+ var { r, g, b, a } = converColor(color, 1);
73
+ conic.addColorStop(reduced, { r, g, b, a: 0 });
74
+ conic.addColorStop(result, { r, g, b, a });
75
+ }
76
+ return result;
77
+ },
78
+ 0
79
+ );
80
+
81
+ conic.fill(context, 0, 0, _radius, 0, 2 * Math.PI, false);
82
+ context.restore();
83
+ }
84
+ }, [canvas, radius, arcs, innerRadius, outerRadius]);
85
+
86
+ return (
87
+ <canvas
88
+ className={
89
+ direction == 'clockwise'
90
+ ? css.rotateClockwise
91
+ : css.rotateCounterClockwise
92
+ }
93
+ ref={setCanvas}
94
+ width={width * devicePixelRatio}
95
+ height={height * devicePixelRatio}
96
+ style={{
97
+ opacity: opacity / 100,
98
+ width,
99
+ height,
100
+ pointerEvents: 'none',
101
+ position: 'absolute',
102
+ animationTimingFunction: 'linear',
103
+ animationDuration: speed + 's',
104
+ animationIterationCount: 'infinite',
105
+ transformOrigin: centerX + 'px ' + centerY + 'px',
106
+ }}
107
+ />
108
+ );
109
+ };
110
+
111
+ /**
112
+ * ConicalGradient
113
+ */
114
+ function ConicalGradient() {
115
+ this._offsets = [];
116
+ this._colors = [];
117
+ }
118
+
119
+ ConicalGradient.prototype = {
120
+ /**
121
+ * addColorStop
122
+ *
123
+ * @param {Number} offset
124
+ * @param {Array} color RGBA值
125
+ */
126
+ addColorStop: function (offset, color) {
127
+ this._offsets.push(offset);
128
+ this._colors.push(color);
129
+ return this;
130
+ },
131
+
132
+ /**
133
+ * _offsetsReverse (array.forEach callback)
134
+ */
135
+ _offsetsReverse: function (offset, index, array) {
136
+ array[index] = 1 - offset;
137
+ },
138
+ /**
139
+ * fill
140
+ *
141
+ * @param {Number} context
142
+ * @param {Number} x
143
+ * @param {Number} y
144
+ * @param {Number} radius
145
+ * @param {Number} startAngle
146
+ * @param {Number} endAngle
147
+ * @param {Boolean} anticlockwise
148
+ */
149
+ fill: function (context, x, y, radius, startAngle, endAngle, anticlockwise) {
150
+ var offsets = this._offsets;
151
+ var colors = this._colors;
152
+
153
+ var PI = Math.PI;
154
+ var TWO_PI = PI * 2;
155
+
156
+ if (startAngle < 0) startAngle = (startAngle % TWO_PI) + TWO_PI;
157
+ startAngle %= TWO_PI;
158
+ if (endAngle < 0) endAngle = (endAngle % TWO_PI) + TWO_PI;
159
+ endAngle %= TWO_PI;
160
+
161
+ if (anticlockwise) {
162
+ // 逆时针
163
+ var swap = startAngle;
164
+ startAngle = endAngle;
165
+ endAngle = swap;
166
+
167
+ colors.reverse();
168
+ offsets.reverse();
169
+ offsets.forEach(this._offsetsReverse);
170
+ }
171
+
172
+ if (startAngle > endAngle || Math.abs(endAngle - startAngle) < 0.0001) {
173
+ endAngle += TWO_PI;
174
+ }
175
+
176
+ var colorsLength = colors.length;
177
+
178
+ var currentColorIndex = 0;
179
+ var currentColor = colors[currentColorIndex];
180
+ var nextColor = colors[currentColorIndex];
181
+
182
+ var prevOffset = 0;
183
+ var currentOffset = offsets[currentColorIndex];
184
+ var offsetDist = currentOffset - prevOffset;
185
+
186
+ var totalAngleDeg = ((endAngle - startAngle) * 180) / PI;
187
+ var stepAngleRad = (endAngle - startAngle) / totalAngleDeg;
188
+
189
+ var arcStartAngle = startAngle;
190
+ var arcEndAngle;
191
+
192
+ var r1 = currentColor.r,
193
+ g1 = currentColor.g,
194
+ b1 = currentColor.b,
195
+ a1 = currentColor.a,
196
+ r2 = nextColor.r,
197
+ g2 = nextColor.g,
198
+ b2 = nextColor.b,
199
+ a2 = nextColor.a;
200
+ if (!a1 && a1 !== 0) a1 = 1;
201
+ if (!a2 && a2 !== 0) a2 = 1;
202
+ var rd = r2 - r1,
203
+ gd = g2 - g1,
204
+ bd = b2 - b1,
205
+ ad = a2 - a1;
206
+ var t, r, g, b, a;
207
+
208
+ context.save();
209
+ for (var i = 0, n = 1 / totalAngleDeg; i < 1; i += n) {
210
+ if (i >= currentOffset) {
211
+ currentColorIndex++;
212
+
213
+ currentColor = nextColor;
214
+ r1 = currentColor.r;
215
+ g1 = currentColor.g;
216
+ b1 = currentColor.b;
217
+ a1 = currentColor.a;
218
+ if (!a1 && a1 !== 0) a1 = 1;
219
+
220
+ nextColor = colors[currentColorIndex] || {r:0,g:0,b:0,a:1};
221
+ r2 = nextColor.r;
222
+ g2 = nextColor.g;
223
+ b2 = nextColor.b;
224
+ a2 = nextColor.a;
225
+ if (!a2 && a2 !== 0) a2 = 1;
226
+
227
+ rd = r2 - r1;
228
+ gd = g2 - g1;
229
+ bd = b2 - b1;
230
+ ad = a2 - a1;
231
+
232
+ prevOffset = currentOffset;
233
+ currentOffset = offsets[currentColorIndex];
234
+ offsetDist = currentOffset - prevOffset;
235
+ }
236
+
237
+ t = (i - prevOffset) / offsetDist;
238
+ r = (rd * t + r1) & 255;
239
+ g = (gd * t + g1) & 255;
240
+ b = (bd * t + b1) & 255;
241
+ a = ad * t + a1;
242
+
243
+ arcEndAngle = arcStartAngle + stepAngleRad;
244
+
245
+ context.fillStyle = 'rgba(' + r + ',' + g + ',' + b + ',' + a + ')';
246
+ context.beginPath();
247
+ context.moveTo(x, y);
248
+ context.arc(x, y, radius, arcStartAngle - 0.02, arcEndAngle, false);
249
+ context.closePath();
250
+ context.fill();
251
+
252
+ arcStartAngle += stepAngleRad;
253
+ }
254
+ context.restore();
255
+
256
+ return this;
257
+ },
258
+ };