@easyv/charts 1.4.29 → 1.4.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 (90) 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/AnimateData.js +16 -8
  6. package/lib/components/Axis.js +134 -87
  7. package/lib/components/Background.js +26 -18
  8. package/lib/components/Band.js +98 -72
  9. package/lib/components/BaseLine.js +46 -33
  10. package/lib/components/Brush.js +46 -29
  11. package/lib/components/Carousel.js +40 -13
  12. package/lib/components/CartesianChart.js +146 -97
  13. package/lib/components/Chart.js +38 -24
  14. package/lib/components/ChartContainer.js +27 -18
  15. package/lib/components/ConicalGradient.js +89 -56
  16. package/lib/components/Control.js +28 -12
  17. package/lib/components/ExtentData.js +17 -9
  18. package/lib/components/FilterData.js +27 -16
  19. package/lib/components/Indicator.js +30 -23
  20. package/lib/components/Label.js +126 -96
  21. package/lib/components/Legend.js +66 -41
  22. package/lib/components/Lighter.js +50 -21
  23. package/lib/components/Line.js +59 -39
  24. package/lib/components/LinearGradient.js +22 -16
  25. package/lib/components/Mapping.js +34 -9
  26. package/lib/components/Marquee.js +30 -14
  27. package/lib/components/PieChart.js +420 -318
  28. package/lib/components/StackData.js +18 -8
  29. package/lib/components/StereoBar.js +105 -65
  30. package/lib/components/TextOverflow.js +21 -8
  31. package/lib/components/Tooltip.js +55 -41
  32. package/lib/components/index.js +29 -0
  33. package/lib/components/pieTooltip.js +67 -40
  34. package/lib/context/index.js +2 -0
  35. package/lib/css/index.module.css +42 -42
  36. package/lib/css/piechart.module.css +26 -26
  37. package/lib/element/ConicGradient.js +35 -29
  38. package/lib/element/Line.js +13 -9
  39. package/lib/element/index.js +2 -0
  40. package/lib/formatter/index.js +2 -0
  41. package/lib/formatter/legend.js +41 -30
  42. package/lib/hooks/index.js +9 -0
  43. package/lib/hooks/useAiData.js +20 -12
  44. package/lib/hooks/useAnimateData.js +21 -8
  45. package/lib/hooks/useAxes.js +117 -67
  46. package/lib/hooks/useCarouselAxisX.js +59 -26
  47. package/lib/hooks/useExtentData.js +47 -15
  48. package/lib/hooks/useFilterData.js +34 -13
  49. package/lib/hooks/useStackData.js +35 -12
  50. package/lib/hooks/useTooltip.js +53 -36
  51. package/lib/index.js +15 -0
  52. package/lib/utils/index.js +247 -95
  53. package/package.json +55 -55
  54. package/src/components/Axis.tsx +1 -1
  55. package/src/components/Background.tsx +61 -61
  56. package/src/components/Band.tsx +274 -274
  57. package/src/components/Brush.js +159 -159
  58. package/src/components/CartesianChart.js +1 -0
  59. package/src/components/Chart.js +101 -101
  60. package/src/components/ChartContainer.tsx +71 -71
  61. package/src/components/ConicalGradient.js +258 -258
  62. package/src/components/Control.jsx +51 -51
  63. package/src/components/ExtentData.js +17 -17
  64. package/src/components/Indicator.js +61 -61
  65. package/src/components/Label.js +275 -275
  66. package/src/components/Legend.js +165 -165
  67. package/src/components/Lighter.jsx +173 -173
  68. package/src/components/Line.js +150 -150
  69. package/src/components/LinearGradient.js +29 -29
  70. package/src/components/PieTooltip.jsx +160 -160
  71. package/src/components/StereoBar.tsx +307 -307
  72. package/src/components/index.js +59 -59
  73. package/src/context/index.js +2 -2
  74. package/src/css/index.module.css +42 -42
  75. package/src/css/piechart.module.css +26 -26
  76. package/src/element/ConicGradient.jsx +55 -55
  77. package/src/element/Line.tsx +33 -33
  78. package/src/element/index.ts +3 -3
  79. package/src/formatter/index.js +1 -1
  80. package/src/formatter/legend.js +92 -92
  81. package/src/hooks/index.js +20 -20
  82. package/src/hooks/useAnimateData.ts +67 -67
  83. package/src/hooks/useExtentData.js +1 -1
  84. package/src/hooks/useFilterData.js +72 -72
  85. package/src/hooks/useStackData.js +101 -101
  86. package/src/hooks/useTooltip.ts +100 -100
  87. package/src/index.js +6 -6
  88. package/src/types/index.d.ts +67 -67
  89. package/src/utils/index.js +757 -757
  90. package/tsconfig.json +23 -23
@@ -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
- * 主要用于轴类图表,返回当前选中的是哪一个x
15
- * @param {Array} svg svg的dom实例
16
- * @param {Number} marginLeft 左间距
17
- * @param {Number} marginTop 上间距
18
- * @param {Number} width
19
- * @param {Number} height
20
- * @param {Number} axisX 类目轴
21
- * @param {Object} config 轮播动画参数
22
- * @returns {Object} 返回被选中的名称,坐标,选中方法
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
- marginLeft = _ref.marginLeft,
27
- marginTop = _ref.marginTop,
28
- width = _ref.width,
29
- height = _ref.height,
30
- axisX = _ref.axisX,
31
- isHover = _ref.isHover,
32
- _ref$config = _ref.config,
33
- _ref$config2 = _ref$config === void 0 ? {} : _ref$config,
34
- auto = _ref$config2.auto,
35
- _ref$config2$interval = _ref$config2.interval,
36
- interval = _ref$config2$interval === void 0 ? 0 : _ref$config2$interval,
37
- manual = _ref$config2.manual;
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
- _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
40
- currentIndex = _useState2[0],
41
- setCurrentIndex = _useState2[1];
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
- mouseX = _getMousePos.x,
47
- mouseY = _getMousePos.y,
48
- boundWidth = _getMousePos.w,
49
- boundHeight = _getMousePos.h;
54
+ mouseX = _getMousePos.x,
55
+ mouseY = _getMousePos.y,
56
+ boundWidth = _getMousePos.w,
57
+ boundHeight = _getMousePos.h;
58
+
50
59
  var carousel = axisX.carousel,
51
- allTicks = axisX.allTicks,
52
- ticks = axisX.ticks,
53
- scaler = axisX.scaler,
54
- direction = axisX.direction;
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
- // if (!!on) setCurrentIndex(0);
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; }