@easyv/charts 1.3.26 → 1.3.28

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 (51) hide show
  1. package/.babelrc +8 -8
  2. package/.husky/commit-msg +3 -3
  3. package/CHANGELOG.md +18 -18
  4. package/lib/components/Axis.js +3 -4
  5. package/lib/components/Background.js +2 -2
  6. package/lib/components/ConicalGradient.js +21 -21
  7. package/lib/components/Indicator.js +2 -2
  8. package/lib/components/Lighter.js +179 -179
  9. package/lib/components/LinearGradient.js +2 -2
  10. package/lib/components/PieChart.js +3 -40
  11. package/lib/css/index.module.css +41 -41
  12. package/lib/css/piechart.module.css +26 -26
  13. package/lib/element/ConicGradient.js +72 -72
  14. package/lib/hooks/useAnimateData.js +5 -5
  15. package/lib/hooks/useFilterData.js +5 -5
  16. package/lib/hooks/useStackData.js +5 -5
  17. package/lib/hooks/useTooltip.js +10 -10
  18. package/package.json +1 -1
  19. package/src/components/Axis.tsx +2 -3
  20. package/src/components/Background.tsx +62 -62
  21. package/src/components/Band.tsx +192 -192
  22. package/src/components/Brush.js +159 -159
  23. package/src/components/Chart.js +99 -99
  24. package/src/components/ChartContainer.tsx +63 -63
  25. package/src/components/ConicalGradient.js +258 -258
  26. package/src/components/ExtentData.js +17 -17
  27. package/src/components/Indicator.js +13 -13
  28. package/src/components/Label.js +225 -225
  29. package/src/components/Lighter.jsx +173 -173
  30. package/src/components/Line.js +150 -150
  31. package/src/components/LinearGradient.js +29 -29
  32. package/src/components/PieChart.js +6 -51
  33. package/src/components/StereoBar.tsx +307 -307
  34. package/src/components/index.js +55 -55
  35. package/src/context/index.js +2 -2
  36. package/src/css/index.module.css +41 -41
  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 +90 -90
  43. package/src/hooks/index.js +17 -17
  44. package/src/hooks/useAnimateData.ts +67 -67
  45. package/src/hooks/useFilterData.js +72 -72
  46. package/src/hooks/useStackData.js +101 -101
  47. package/src/hooks/useTooltip.ts +96 -96
  48. package/src/index.js +6 -6
  49. package/src/types/index.d.ts +67 -67
  50. package/src/utils/index.js +757 -757
  51. package/tsconfig.json +23 -23
@@ -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
+ };
@@ -1,17 +1,17 @@
1
- /**
2
- * 计算X/Y/Z轴的domain,具体的逻辑在useExtentData(HOC)
3
- */
4
- import { memo } from 'react';
5
- import { useExtentData } from '../hooks';
6
- export default (Component) =>
7
- memo(({ config: { axes, series, ...config }, data, ...props }) => (
8
- <Component
9
- {...props}
10
- config={{
11
- ...config,
12
- axes: useExtentData({ series, axes, data }),
13
- series,
14
- }}
15
- data={data}
16
- />
17
- ));
1
+ /**
2
+ * 计算X/Y/Z轴的domain,具体的逻辑在useExtentData(HOC)
3
+ */
4
+ import { memo } from 'react';
5
+ import { useExtentData } from '../hooks';
6
+ export default (Component) =>
7
+ memo(({ config: { axes, series, ...config }, data, ...props }) => (
8
+ <Component
9
+ {...props}
10
+ config={{
11
+ ...config,
12
+ axes: useExtentData({ series, axes, data }),
13
+ series,
14
+ }}
15
+ data={data}
16
+ />
17
+ ));
@@ -1,13 +1,13 @@
1
- /**
2
- * 轴类图表移上去的指示框背景
3
- */
4
- export default ({ color, height, width, x = 0, y = 0 }) => (
5
- <rect
6
- width={width}
7
- height={height}
8
- x={x}
9
- y={y}
10
- fill={color}
11
- stroke='none'
12
- />
13
- );
1
+ /**
2
+ * 轴类图表移上去的指示框背景
3
+ */
4
+ export default ({ color, height, width, x = 0, y = 0 }) => (
5
+ <rect
6
+ width={width}
7
+ height={height}
8
+ x={x}
9
+ y={y}
10
+ fill={color}
11
+ stroke='none'
12
+ />
13
+ );