@easyv/charts 1.0.71 → 1.0.72

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 (62) hide show
  1. package/.babelrc +8 -8
  2. package/lib/components/AnimateData.js +2 -2
  3. package/lib/components/Axis.js +15 -12
  4. package/lib/components/Background.js +2 -2
  5. package/lib/components/Carousel.js +2 -2
  6. package/lib/components/Chart.js +2 -2
  7. package/lib/components/ConicalGradient.js +21 -21
  8. package/lib/components/Indicator.js +2 -2
  9. package/lib/components/LinearGradient.js +2 -2
  10. package/lib/css/index.module.css +41 -41
  11. package/lib/css/piechart.module.css +26 -26
  12. package/lib/hooks/useAnimateData.js +5 -5
  13. package/lib/hooks/useAxes.js +5 -5
  14. package/lib/hooks/useCarouselAxisX.js +5 -5
  15. package/lib/hooks/useExtentData.js +6 -6
  16. package/lib/hooks/useFilterData.js +5 -5
  17. package/lib/hooks/useStackData.js +5 -5
  18. package/lib/hooks/useTooltip.js +10 -10
  19. package/package.json +34 -34
  20. package/src/components/AnimateData.tsx +24 -24
  21. package/src/components/Axis.tsx +336 -333
  22. package/src/components/Background.tsx +45 -45
  23. package/src/components/Band.tsx +160 -160
  24. package/src/components/Brush.js +159 -159
  25. package/src/components/Carousel.tsx +144 -144
  26. package/src/components/Chart.js +99 -99
  27. package/src/components/ChartContainer.tsx +63 -63
  28. package/src/components/ConicalGradient.js +258 -258
  29. package/src/components/ExtentData.js +17 -17
  30. package/src/components/FilterData.js +23 -23
  31. package/src/components/Indicator.js +13 -13
  32. package/src/components/Label.js +206 -206
  33. package/src/components/Legend.js +158 -158
  34. package/src/components/Lighter.jsx +162 -162
  35. package/src/components/Line.js +128 -128
  36. package/src/components/LinearGradient.js +29 -29
  37. package/src/components/Mapping.js +71 -71
  38. package/src/components/PieChart.js +1093 -1093
  39. package/src/components/StackData.js +20 -20
  40. package/src/components/StereoBar.tsx +298 -298
  41. package/src/components/Tooltip.js +133 -133
  42. package/src/components/index.js +49 -49
  43. package/src/context/index.js +2 -2
  44. package/src/css/index.module.css +41 -41
  45. package/src/css/piechart.module.css +26 -26
  46. package/src/element/ConicGradient.jsx +55 -55
  47. package/src/element/Line.tsx +33 -33
  48. package/src/element/index.ts +3 -3
  49. package/src/formatter/index.js +1 -1
  50. package/src/formatter/legend.js +90 -90
  51. package/src/hooks/index.js +17 -17
  52. package/src/hooks/useAnimateData.ts +62 -62
  53. package/src/hooks/useAxes.js +143 -143
  54. package/src/hooks/useCarouselAxisX.js +163 -163
  55. package/src/hooks/useExtentData.js +88 -88
  56. package/src/hooks/useFilterData.js +72 -72
  57. package/src/hooks/useStackData.js +100 -100
  58. package/src/hooks/useTooltip.ts +96 -96
  59. package/src/index.js +6 -6
  60. package/src/types/index.d.ts +59 -59
  61. package/src/utils/index.js +671 -671
  62. package/tsconfig.json +22 -22
@@ -1,143 +1,143 @@
1
- import { useMemo } from 'react';
2
- import { scaleLinear, scaleLog, scaleTime, scaleUtc } from 'd3-scale';
3
- import { band } from '../utils';
4
- import {
5
- getYTicksByStep,
6
- getYTicks,
7
- getTicksOfAxis,
8
- } from '@easyv/utils/lib/common/utils';
9
-
10
- const scales = {
11
- linear: scaleLinear,
12
- log: scaleLog,
13
- time: scaleTime,
14
- utc: scaleUtc,
15
- ordinal: band,
16
- };
17
-
18
- /**
19
- * x/y/z轴
20
- * @param {Array} axes 轴列表数组
21
- * @param {Object} context 其中需要包括
22
- * @returns {Map} 返回所有轴
23
- */
24
-
25
- export default ({ axes, context: { width, height } }) => {
26
- const _axes = useMemo(() => {
27
- const tmp = new Map();
28
- const xAxisPositions = [];
29
- axes.forEach((item) => {
30
- const {
31
- type,
32
- orientation,
33
- ticks,
34
- tickCount = 1,
35
- step = 1,
36
- domain,
37
- axisType,
38
- paddingOuter = 0,
39
- auto,
40
- mode,
41
- carousel,
42
- config,
43
- } = item;
44
- const direction =
45
- orientation === 'top' || orientation === 'bottom'
46
- ? 'horizontal'
47
- : orientation === 'left' || orientation === 'right'
48
- ? 'vertical'
49
- : '';
50
-
51
- const length =
52
- direction === 'horizontal'
53
- ? width
54
- : direction === 'vertical'
55
- ? height
56
- : 0;
57
-
58
- const _paddingOuter = paddingOuter * length;
59
- const start = _paddingOuter / 2;
60
- const end = length - start;
61
-
62
- const range =
63
- direction === 'horizontal'
64
- ? [start, end]
65
- : direction === 'vertical'
66
- ? [end, start]
67
- : [0, 0];
68
-
69
- const scaler = scales[type]().domain(domain).range(range);
70
- scaler.type = type;
71
-
72
- if (type !== 'ordinal') scaler.nice().clamp(true);
73
-
74
- const allTicks = ticks
75
- ? ticks
76
- : scaler.ticks
77
- ? scaler.ticks(tickCount)
78
- : scaler.domain();
79
-
80
- let _ticks = allTicks;
81
- if (type === 'ordinal') {
82
- if (carousel === false) {
83
- _ticks = getTicksOfAxis(_ticks, +tickCount);
84
- }
85
- } else {
86
- if (auto === false) {
87
- switch (mode) {
88
- case 'count':
89
- _ticks = getYTicks(
90
- _ticks[_ticks.length - 1],
91
- _ticks[0],
92
- +tickCount
93
- );
94
- break;
95
- case 'step':
96
- _ticks = getYTicksByStep(
97
- _ticks[_ticks.length - 1],
98
- _ticks[0],
99
- +step
100
- );
101
- break;
102
- }
103
- }
104
- }
105
-
106
- const lengthWithoutPaddingOuter = length - _paddingOuter;
107
-
108
- if (type == 'linear' && config.on) {
109
- const zeroPosition = scaler(0);
110
- if (zeroPosition !== range[0]) {
111
- if (direction === 'horizontal') {
112
- xAxisPositions.push({
113
- x: zeroPosition,
114
- y: 0,
115
- });
116
- } else if (direction === 'vertical') {
117
- xAxisPositions.push({
118
- x: 0,
119
- y: zeroPosition,
120
- });
121
- }
122
- }
123
- }
124
-
125
- tmp.set(axisType, {
126
- ...item,
127
- scaler,
128
- length,
129
- direction,
130
- start,
131
- end,
132
- lengthWithoutPaddingOuter,
133
- step: lengthWithoutPaddingOuter / allTicks.length,
134
- allTicks,
135
- ticks: _ticks,
136
- });
137
- });
138
-
139
- tmp.get('x') && (tmp.get('x').positions = xAxisPositions);
140
- return tmp;
141
- }, [axes]);
142
- return _axes;
143
- };
1
+ import { useMemo } from 'react';
2
+ import { scaleLinear, scaleLog, scaleTime, scaleUtc } from 'd3-scale';
3
+ import { band } from '../utils';
4
+ import {
5
+ getYTicksByStep,
6
+ getYTicks,
7
+ getTicksOfAxis,
8
+ } from '@easyv/utils/lib/common/utils';
9
+
10
+ const scales = {
11
+ linear: scaleLinear,
12
+ log: scaleLog,
13
+ time: scaleTime,
14
+ utc: scaleUtc,
15
+ ordinal: band,
16
+ };
17
+
18
+ /**
19
+ * x/y/z轴
20
+ * @param {Array} axes 轴列表数组
21
+ * @param {Object} context 其中需要包括
22
+ * @returns {Map} 返回所有轴
23
+ */
24
+
25
+ export default ({ axes, context: { width, height } }) => {
26
+ const _axes = useMemo(() => {
27
+ const tmp = new Map();
28
+ const xAxisPositions = [];
29
+ axes.forEach((item) => {
30
+ const {
31
+ type,
32
+ orientation,
33
+ ticks,
34
+ tickCount = 1,
35
+ step = 1,
36
+ domain,
37
+ axisType,
38
+ paddingOuter = 0,
39
+ auto,
40
+ mode,
41
+ carousel,
42
+ config,
43
+ } = item;
44
+ const direction =
45
+ orientation === 'top' || orientation === 'bottom'
46
+ ? 'horizontal'
47
+ : orientation === 'left' || orientation === 'right'
48
+ ? 'vertical'
49
+ : '';
50
+
51
+ const length =
52
+ direction === 'horizontal'
53
+ ? width
54
+ : direction === 'vertical'
55
+ ? height
56
+ : 0;
57
+
58
+ const _paddingOuter = paddingOuter * length;
59
+ const start = _paddingOuter / 2;
60
+ const end = length - start;
61
+
62
+ const range =
63
+ direction === 'horizontal'
64
+ ? [start, end]
65
+ : direction === 'vertical'
66
+ ? [end, start]
67
+ : [0, 0];
68
+
69
+ const scaler = scales[type]().domain(domain).range(range);
70
+ scaler.type = type;
71
+
72
+ if (type !== 'ordinal') scaler.nice().clamp(true);
73
+
74
+ const allTicks = ticks
75
+ ? ticks
76
+ : scaler.ticks
77
+ ? scaler.ticks(tickCount)
78
+ : scaler.domain();
79
+
80
+ let _ticks = allTicks;
81
+ if (type === 'ordinal') {
82
+ if (carousel === false) {
83
+ _ticks = getTicksOfAxis(_ticks, +tickCount);
84
+ }
85
+ } else {
86
+ if (auto === false) {
87
+ switch (mode) {
88
+ case 'count':
89
+ _ticks = getYTicks(
90
+ _ticks[_ticks.length - 1],
91
+ _ticks[0],
92
+ +tickCount
93
+ );
94
+ break;
95
+ case 'step':
96
+ _ticks = getYTicksByStep(
97
+ _ticks[_ticks.length - 1],
98
+ _ticks[0],
99
+ +step
100
+ );
101
+ break;
102
+ }
103
+ }
104
+ }
105
+
106
+ const lengthWithoutPaddingOuter = length - _paddingOuter;
107
+
108
+ if (type == 'linear' && config.on) {
109
+ const zeroPosition = scaler(0);
110
+ if (zeroPosition !== range[0]) {
111
+ if (direction === 'horizontal') {
112
+ xAxisPositions.push({
113
+ x: zeroPosition,
114
+ y: 0,
115
+ });
116
+ } else if (direction === 'vertical') {
117
+ xAxisPositions.push({
118
+ x: 0,
119
+ y: zeroPosition,
120
+ });
121
+ }
122
+ }
123
+ }
124
+
125
+ tmp.set(axisType, {
126
+ ...item,
127
+ scaler,
128
+ length,
129
+ direction,
130
+ start,
131
+ end,
132
+ lengthWithoutPaddingOuter,
133
+ step: lengthWithoutPaddingOuter / allTicks.length,
134
+ allTicks,
135
+ ticks: _ticks,
136
+ });
137
+ });
138
+
139
+ tmp.get('x') && (tmp.get('x').positions = xAxisPositions);
140
+ return tmp;
141
+ }, [axes]);
142
+ return _axes;
143
+ };
@@ -1,163 +1,163 @@
1
- import { useEffect, useState } from 'react';
2
- import { animate, linear } from 'popmotion';
3
-
4
- const initialState = {
5
- currentIndex: null,
6
- flag: false,
7
- };
8
-
9
- /**
10
- * x轴滚动逻辑
11
- * @param {Object} axis x轴配置项
12
- * @param {Object} config x轴轮播动画的配置项
13
- * @returns {Map} 返回经过改变后的x轴,主要是ticks和scaler的range发生了改变
14
- */
15
-
16
- export default (axis, config) => {
17
- const { show, interval, duration } = config;
18
- const time = duration + interval;
19
-
20
- const {
21
- tickCount,
22
- allTicks,
23
- scaler,
24
- start,
25
- end,
26
- step,
27
- ticks,
28
- lengthWithoutPaddingOuter,
29
- } = axis;
30
- const tickLength = ticks.length;
31
-
32
- const [state, setState] = useState({
33
- scaler,
34
- step,
35
- ticks,
36
- });
37
- const [status, setStatus] = useState(initialState);
38
-
39
- useEffect(() => {
40
- let handler;
41
- if (show && time && tickLength > tickCount) {
42
- setStatus({
43
- currentIndex: 0,
44
- flag: true,
45
- });
46
- handler = setInterval(() => {
47
- setStatus(({ currentIndex }) => {
48
- const tmp = +currentIndex + 1;
49
- return {
50
- currentIndex: tmp >= tickLength ? 0 : tmp,
51
- flag: false,
52
- };
53
- });
54
- }, time * 1000);
55
- } else {
56
- setStatus(initialState);
57
- }
58
- return () => {
59
- handler && clearInterval(handler);
60
- };
61
- }, [show, time, tickCount, tickLength]);
62
-
63
- useEffect(() => {
64
- let animation;
65
- const { currentIndex, flag } = status;
66
- if (currentIndex !== null) {
67
- const step = lengthWithoutPaddingOuter / tickCount;
68
- if (flag) {
69
- const _ticks = allTicks.slice(currentIndex, tickCount);
70
- setState({
71
- step,
72
- ticks: _ticks,
73
- scaler: scaler.copy().domain(_ticks).range([start, end]),
74
- });
75
- } else {
76
- animation = animate({
77
- from: 0,
78
- to: -1,
79
- duration: duration * 1000,
80
- ease: linear,
81
- onPlay: () => {
82
- setState((axis) => {
83
- const { ticks, scaler } = axis;
84
- const [tick] = ticks;
85
- const _ticks = [
86
- tick,
87
- ...getTicks(allTicks, currentIndex, tickCount),
88
- ];
89
- return {
90
- ...axis,
91
- ticks: _ticks,
92
- scaler: scaler
93
- .copy()
94
- .range([start, end + step])
95
- .domain(_ticks),
96
- };
97
- });
98
- },
99
- onUpdate: (v) => {
100
- setState((axis) => {
101
- const { scaler, step } = axis;
102
- return {
103
- ...axis,
104
- scaler: scaler
105
- .copy()
106
- .range([start + step * v, end + step + step * v]),
107
- };
108
- });
109
- },
110
- onComplete: () => {
111
- setState((axis) => {
112
- const { scaler, ticks } = axis;
113
- const _ticks = ticks.slice(1, ticks.length);
114
- return {
115
- ...axis,
116
- ticks: _ticks,
117
- scaler: scaler.copy().range([start, end]).domain(_ticks),
118
- };
119
- });
120
- },
121
- });
122
- }
123
- } else {
124
- const _ticks = scaler.type == 'linear' ? scaler.domain() : allTicks;
125
- setState({
126
- step,
127
- scaler: scaler.copy().domain(_ticks).range([start, end]),
128
- ticks,
129
- });
130
- }
131
- return () => {
132
- animation && animation.stop();
133
- };
134
- }, [
135
- tickCount,
136
- allTicks,
137
- scaler,
138
- start,
139
- end,
140
- step,
141
- ticks,
142
- lengthWithoutPaddingOuter,
143
- status,
144
- duration,
145
- ]);
146
- return {
147
- ...axis,
148
- ...state,
149
- };
150
- };
151
-
152
- const getTicks = (ticks, currentIndex, length) => {
153
- const _currentIndex = +currentIndex;
154
- const ticksLength = ticks.length;
155
- if (ticksLength <= length) return ticks;
156
- const end = _currentIndex + length;
157
- if (ticksLength < end) {
158
- const prev = ticks.slice(_currentIndex, ticksLength);
159
- const next = ticks.slice(0, end - ticksLength);
160
- return [...prev, ...next];
161
- }
162
- return ticks.slice(_currentIndex, end);
163
- };
1
+ import { useEffect, useState } from 'react';
2
+ import { animate, linear } from 'popmotion';
3
+
4
+ const initialState = {
5
+ currentIndex: null,
6
+ flag: false,
7
+ };
8
+
9
+ /**
10
+ * x轴滚动逻辑
11
+ * @param {Object} axis x轴配置项
12
+ * @param {Object} config x轴轮播动画的配置项
13
+ * @returns {Map} 返回经过改变后的x轴,主要是ticks和scaler的range发生了改变
14
+ */
15
+
16
+ export default (axis, config) => {
17
+ const { show, interval, duration } = config;
18
+ const time = duration + interval;
19
+
20
+ const {
21
+ tickCount,
22
+ allTicks,
23
+ scaler,
24
+ start,
25
+ end,
26
+ step,
27
+ ticks,
28
+ lengthWithoutPaddingOuter,
29
+ } = axis;
30
+ const tickLength = ticks.length;
31
+
32
+ const [state, setState] = useState({
33
+ scaler,
34
+ step,
35
+ ticks,
36
+ });
37
+ const [status, setStatus] = useState(initialState);
38
+
39
+ useEffect(() => {
40
+ let handler;
41
+ if (show && time && tickLength > tickCount) {
42
+ setStatus({
43
+ currentIndex: 0,
44
+ flag: true,
45
+ });
46
+ handler = setInterval(() => {
47
+ setStatus(({ currentIndex }) => {
48
+ const tmp = +currentIndex + 1;
49
+ return {
50
+ currentIndex: tmp >= tickLength ? 0 : tmp,
51
+ flag: false,
52
+ };
53
+ });
54
+ }, time * 1000);
55
+ } else {
56
+ setStatus(initialState);
57
+ }
58
+ return () => {
59
+ handler && clearInterval(handler);
60
+ };
61
+ }, [show, time, tickCount, tickLength]);
62
+
63
+ useEffect(() => {
64
+ let animation;
65
+ const { currentIndex, flag } = status;
66
+ if (currentIndex !== null) {
67
+ const step = lengthWithoutPaddingOuter / tickCount;
68
+ if (flag) {
69
+ const _ticks = allTicks.slice(currentIndex, tickCount);
70
+ setState({
71
+ step,
72
+ ticks: _ticks,
73
+ scaler: scaler.copy().domain(_ticks).range([start, end]),
74
+ });
75
+ } else {
76
+ animation = animate({
77
+ from: 0,
78
+ to: -1,
79
+ duration: duration * 1000,
80
+ ease: linear,
81
+ onPlay: () => {
82
+ setState((axis) => {
83
+ const { ticks, scaler } = axis;
84
+ const [tick] = ticks;
85
+ const _ticks = [
86
+ tick,
87
+ ...getTicks(allTicks, currentIndex, tickCount),
88
+ ];
89
+ return {
90
+ ...axis,
91
+ ticks: _ticks,
92
+ scaler: scaler
93
+ .copy()
94
+ .range([start, end + step])
95
+ .domain(_ticks),
96
+ };
97
+ });
98
+ },
99
+ onUpdate: (v) => {
100
+ setState((axis) => {
101
+ const { scaler, step } = axis;
102
+ return {
103
+ ...axis,
104
+ scaler: scaler
105
+ .copy()
106
+ .range([start + step * v, end + step + step * v]),
107
+ };
108
+ });
109
+ },
110
+ onComplete: () => {
111
+ setState((axis) => {
112
+ const { scaler, ticks } = axis;
113
+ const _ticks = ticks.slice(1, ticks.length);
114
+ return {
115
+ ...axis,
116
+ ticks: _ticks,
117
+ scaler: scaler.copy().range([start, end]).domain(_ticks),
118
+ };
119
+ });
120
+ },
121
+ });
122
+ }
123
+ } else {
124
+ const _ticks = scaler.type == 'linear' ? scaler.domain() : allTicks;
125
+ setState({
126
+ step,
127
+ scaler: scaler.copy().domain(_ticks).range([start, end]),
128
+ ticks,
129
+ });
130
+ }
131
+ return () => {
132
+ animation && animation.stop();
133
+ };
134
+ }, [
135
+ tickCount,
136
+ allTicks,
137
+ scaler,
138
+ start,
139
+ end,
140
+ step,
141
+ ticks,
142
+ lengthWithoutPaddingOuter,
143
+ status,
144
+ duration,
145
+ ]);
146
+ return {
147
+ ...axis,
148
+ ...state,
149
+ };
150
+ };
151
+
152
+ const getTicks = (ticks, currentIndex, length) => {
153
+ const _currentIndex = +currentIndex;
154
+ const ticksLength = ticks.length;
155
+ if (ticksLength <= length) return ticks;
156
+ const end = _currentIndex + length;
157
+ if (ticksLength < end) {
158
+ const prev = ticks.slice(_currentIndex, ticksLength);
159
+ const next = ticks.slice(0, end - ticksLength);
160
+ return [...prev, ...next];
161
+ }
162
+ return ticks.slice(_currentIndex, end);
163
+ };