@easyv/charts 1.4.29 → 1.4.31
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.
- package/.babelrc +8 -8
- package/.husky/commit-msg +3 -3
- package/CHANGELOG.md +18 -18
- package/commitlint.config.js +1 -1
- package/lib/components/AnimateData.js +16 -8
- package/lib/components/Axis.js +134 -87
- package/lib/components/Background.js +26 -18
- package/lib/components/Band.js +98 -72
- package/lib/components/BaseLine.js +46 -33
- package/lib/components/Brush.js +46 -29
- package/lib/components/Carousel.js +40 -13
- package/lib/components/CartesianChart.js +146 -97
- package/lib/components/Chart.js +39 -26
- package/lib/components/ChartContainer.js +27 -18
- package/lib/components/ConicalGradient.js +89 -56
- package/lib/components/Control.js +28 -12
- package/lib/components/ExtentData.js +17 -9
- package/lib/components/FilterData.js +27 -16
- package/lib/components/Indicator.js +30 -23
- package/lib/components/Label.js +126 -96
- package/lib/components/Legend.js +66 -41
- package/lib/components/Lighter.js +50 -21
- package/lib/components/Line.js +59 -39
- package/lib/components/LinearGradient.js +22 -16
- package/lib/components/Mapping.js +34 -9
- package/lib/components/Marquee.js +30 -14
- package/lib/components/PieChart.js +420 -318
- package/lib/components/StackData.js +18 -8
- package/lib/components/StereoBar.js +105 -65
- package/lib/components/TextOverflow.js +21 -8
- package/lib/components/Tooltip.js +55 -41
- package/lib/components/index.js +29 -0
- package/lib/components/pieTooltip.js +67 -40
- package/lib/context/index.js +2 -0
- package/lib/css/index.module.css +42 -42
- package/lib/css/piechart.module.css +26 -26
- package/lib/element/ConicGradient.js +35 -29
- package/lib/element/Line.js +13 -9
- package/lib/element/index.js +2 -0
- package/lib/formatter/index.js +2 -0
- package/lib/formatter/legend.js +41 -30
- package/lib/hooks/index.js +9 -0
- package/lib/hooks/useAiData.js +20 -12
- package/lib/hooks/useAnimateData.js +21 -8
- package/lib/hooks/useAxes.js +117 -67
- package/lib/hooks/useCarouselAxisX.js +59 -26
- package/lib/hooks/useExtentData.js +47 -15
- package/lib/hooks/useFilterData.js +34 -13
- package/lib/hooks/useStackData.js +35 -12
- package/lib/hooks/useTooltip.js +53 -36
- package/lib/index.js +15 -0
- package/lib/utils/index.js +247 -95
- package/package.json +55 -55
- package/src/components/Axis.tsx +1 -1
- package/src/components/Background.tsx +61 -61
- package/src/components/Band.tsx +274 -274
- package/src/components/Brush.js +159 -159
- package/src/components/CartesianChart.js +1 -0
- package/src/components/Chart.js +100 -101
- package/src/components/ChartContainer.tsx +71 -71
- package/src/components/ConicalGradient.js +258 -258
- package/src/components/Control.jsx +51 -51
- package/src/components/ExtentData.js +17 -17
- package/src/components/Indicator.js +61 -61
- package/src/components/Label.js +275 -275
- package/src/components/Legend.js +165 -165
- package/src/components/Lighter.jsx +173 -173
- package/src/components/Line.js +150 -150
- package/src/components/LinearGradient.js +29 -29
- package/src/components/PieTooltip.jsx +160 -160
- package/src/components/StereoBar.tsx +307 -307
- package/src/components/index.js +59 -59
- package/src/context/index.js +2 -2
- package/src/css/index.module.css +42 -42
- package/src/css/piechart.module.css +26 -26
- package/src/element/ConicGradient.jsx +55 -55
- package/src/element/Line.tsx +33 -33
- package/src/element/index.ts +3 -3
- package/src/formatter/index.js +1 -1
- package/src/formatter/legend.js +92 -92
- package/src/hooks/index.js +20 -20
- package/src/hooks/useAnimateData.ts +67 -67
- package/src/hooks/useExtentData.js +1 -1
- package/src/hooks/useFilterData.js +72 -72
- package/src/hooks/useStackData.js +101 -101
- package/src/hooks/useTooltip.ts +100 -100
- package/src/index.js +6 -6
- package/src/types/index.d.ts +67 -67
- package/src/utils/index.js +757 -757
- package/tsconfig.json +23 -23
package/lib/hooks/useTooltip.js
CHANGED
|
@@ -1,69 +1,83 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
7
8
|
exports["default"] = void 0;
|
|
9
|
+
|
|
8
10
|
var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
|
|
11
|
+
|
|
9
12
|
var _react = require("react");
|
|
13
|
+
|
|
10
14
|
var _utils = require("../utils");
|
|
11
|
-
var callback = function callback() {};
|
|
12
15
|
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
*
|
|
16
|
-
* @param {
|
|
17
|
-
* @param {Number}
|
|
18
|
-
* @param {Number}
|
|
19
|
-
* @param {Number}
|
|
20
|
-
* @param {Number}
|
|
21
|
-
* @param {
|
|
22
|
-
* @
|
|
16
|
+
var callback = function callback() {};
|
|
17
|
+
/**
|
|
18
|
+
* 主要用于轴类图表,返回当前选中的是哪一个x
|
|
19
|
+
* @param {Array} svg svg的dom实例
|
|
20
|
+
* @param {Number} marginLeft 左间距
|
|
21
|
+
* @param {Number} marginTop 上间距
|
|
22
|
+
* @param {Number} width 宽
|
|
23
|
+
* @param {Number} height 高
|
|
24
|
+
* @param {Number} axisX 类目轴
|
|
25
|
+
* @param {Object} config 轮播动画参数
|
|
26
|
+
* @returns {Object} 返回被选中的名称,坐标,选中方法
|
|
23
27
|
*/
|
|
28
|
+
|
|
29
|
+
|
|
24
30
|
var _default = function _default(_ref) {
|
|
25
31
|
var svg = _ref.svg,
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
marginLeft = _ref.marginLeft,
|
|
33
|
+
marginTop = _ref.marginTop,
|
|
34
|
+
width = _ref.width,
|
|
35
|
+
height = _ref.height,
|
|
36
|
+
axisX = _ref.axisX,
|
|
37
|
+
isHover = _ref.isHover,
|
|
38
|
+
_ref$config = _ref.config;
|
|
39
|
+
_ref$config = _ref$config === void 0 ? {} : _ref$config;
|
|
40
|
+
var auto = _ref$config.auto,
|
|
41
|
+
_ref$config$interval = _ref$config.interval,
|
|
42
|
+
interval = _ref$config$interval === void 0 ? 0 : _ref$config$interval,
|
|
43
|
+
manual = _ref$config.manual;
|
|
44
|
+
|
|
38
45
|
var _useState = (0, _react.useState)(null),
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
46
|
+
_useState2 = (0, _slicedToArray2["default"])(_useState, 2),
|
|
47
|
+
currentIndex = _useState2[0],
|
|
48
|
+
setCurrentIndex = _useState2[1];
|
|
49
|
+
|
|
42
50
|
var tickLength = axisX.allTicks.length;
|
|
43
51
|
var setIndex = (0, _react.useCallback)(function (e) {
|
|
44
52
|
if (svg) {
|
|
45
53
|
var _getMousePos = (0, _utils.getMousePos)(e, svg.current),
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
54
|
+
mouseX = _getMousePos.x,
|
|
55
|
+
mouseY = _getMousePos.y,
|
|
56
|
+
boundWidth = _getMousePos.w,
|
|
57
|
+
boundHeight = _getMousePos.h;
|
|
58
|
+
|
|
50
59
|
var carousel = axisX.carousel,
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
60
|
+
allTicks = axisX.allTicks,
|
|
61
|
+
ticks = axisX.ticks,
|
|
62
|
+
scaler = axisX.scaler,
|
|
63
|
+
direction = axisX.direction;
|
|
64
|
+
|
|
55
65
|
var _ticks = carousel ? ticks : allTicks;
|
|
66
|
+
|
|
56
67
|
var ratioX = parseInt(svg.current.style.width) / boundWidth;
|
|
57
68
|
var ratioY = parseInt(svg.current.style.height) / boundHeight;
|
|
58
69
|
var resetX = mouseX * ratioX;
|
|
59
70
|
var resetY = mouseY * ratioY;
|
|
60
71
|
var x = resetX - marginLeft;
|
|
61
72
|
var y = resetY - marginTop;
|
|
73
|
+
|
|
62
74
|
if (x > 0 && x < width && y > 0 && y < height && _ticks.length) {
|
|
63
75
|
var position = direction === "vertical" ? y : x;
|
|
76
|
+
|
|
64
77
|
var _name = _ticks.reduce(function (prev, current) {
|
|
65
78
|
return Math.abs(scaler(prev) - position) > Math.abs(scaler(current) - position) ? current : prev;
|
|
66
79
|
});
|
|
80
|
+
|
|
67
81
|
setCurrentIndex(allTicks.findIndex(function (tick) {
|
|
68
82
|
return tick == _name;
|
|
69
83
|
}));
|
|
@@ -76,15 +90,17 @@ var _default = function _default(_ref) {
|
|
|
76
90
|
}
|
|
77
91
|
}, [svg, marginLeft, axisX, auto]);
|
|
78
92
|
(0, _react.useEffect)(function () {
|
|
79
|
-
var on = auto && tickLength && !isHover;
|
|
80
|
-
|
|
93
|
+
var on = auto && tickLength && !isHover; // if (!!on) setCurrentIndex(0);
|
|
94
|
+
|
|
81
95
|
var intervalHandler = on ? setInterval(function () {
|
|
82
96
|
setCurrentIndex(function (index) {
|
|
83
97
|
var tmp = index == null ? 0 : index;
|
|
84
98
|
var currentIndex = tmp + 1;
|
|
99
|
+
|
|
85
100
|
if (currentIndex >= tickLength) {
|
|
86
101
|
return 0;
|
|
87
102
|
}
|
|
103
|
+
|
|
88
104
|
return currentIndex;
|
|
89
105
|
});
|
|
90
106
|
}, interval * 1000) : null;
|
|
@@ -99,4 +115,5 @@ var _default = function _default(_ref) {
|
|
|
99
115
|
setIndex: manual ? setIndex : callback
|
|
100
116
|
};
|
|
101
117
|
};
|
|
118
|
+
|
|
102
119
|
exports["default"] = _default;
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
3
|
var _typeof = require("@babel/runtime/helpers/typeof");
|
|
4
|
+
|
|
4
5
|
Object.defineProperty(exports, "__esModule", {
|
|
5
6
|
value: true
|
|
6
7
|
});
|
|
@@ -8,7 +9,9 @@ var _exportNames = {
|
|
|
8
9
|
utils: true
|
|
9
10
|
};
|
|
10
11
|
exports.utils = void 0;
|
|
12
|
+
|
|
11
13
|
var _components = require("./components");
|
|
14
|
+
|
|
12
15
|
Object.keys(_components).forEach(function (key) {
|
|
13
16
|
if (key === "default" || key === "__esModule") return;
|
|
14
17
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -20,7 +23,9 @@ Object.keys(_components).forEach(function (key) {
|
|
|
20
23
|
}
|
|
21
24
|
});
|
|
22
25
|
});
|
|
26
|
+
|
|
23
27
|
var _hooks = require("./hooks");
|
|
28
|
+
|
|
24
29
|
Object.keys(_hooks).forEach(function (key) {
|
|
25
30
|
if (key === "default" || key === "__esModule") return;
|
|
26
31
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -32,7 +37,9 @@ Object.keys(_hooks).forEach(function (key) {
|
|
|
32
37
|
}
|
|
33
38
|
});
|
|
34
39
|
});
|
|
40
|
+
|
|
35
41
|
var _context = require("./context");
|
|
42
|
+
|
|
36
43
|
Object.keys(_context).forEach(function (key) {
|
|
37
44
|
if (key === "default" || key === "__esModule") return;
|
|
38
45
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -44,7 +51,9 @@ Object.keys(_context).forEach(function (key) {
|
|
|
44
51
|
}
|
|
45
52
|
});
|
|
46
53
|
});
|
|
54
|
+
|
|
47
55
|
var _formatter = require("./formatter");
|
|
56
|
+
|
|
48
57
|
Object.keys(_formatter).forEach(function (key) {
|
|
49
58
|
if (key === "default" || key === "__esModule") return;
|
|
50
59
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -56,9 +65,13 @@ Object.keys(_formatter).forEach(function (key) {
|
|
|
56
65
|
}
|
|
57
66
|
});
|
|
58
67
|
});
|
|
68
|
+
|
|
59
69
|
var _utils = _interopRequireWildcard(require("./utils"));
|
|
70
|
+
|
|
60
71
|
exports.utils = _utils;
|
|
72
|
+
|
|
61
73
|
var _utils3 = require("@easyv/utils");
|
|
74
|
+
|
|
62
75
|
Object.keys(_utils3).forEach(function (key) {
|
|
63
76
|
if (key === "default" || key === "__esModule") return;
|
|
64
77
|
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
@@ -70,5 +83,7 @@ Object.keys(_utils3).forEach(function (key) {
|
|
|
70
83
|
}
|
|
71
84
|
});
|
|
72
85
|
});
|
|
86
|
+
|
|
73
87
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
88
|
+
|
|
74
89
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || _typeof(obj) !== "object" && typeof obj !== "function") { return { "default": obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj["default"] = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|