@easyv/charts 1.6.12 → 1.6.14

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 (68) 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/Axis.js +1 -1
  6. package/lib/components/Background.js +2 -2
  7. package/lib/components/Band.js +3 -3
  8. package/lib/components/Brush.js +2 -2
  9. package/lib/components/Chart.js +2 -2
  10. package/lib/components/ChartContainer.js +3 -3
  11. package/lib/components/ConicalGradient.js +21 -21
  12. package/lib/components/Control.js +1 -1
  13. package/lib/components/ExtentData.js +2 -2
  14. package/lib/components/Indicator.js +2 -2
  15. package/lib/components/Label.js +32 -21
  16. package/lib/components/Legend.js +2 -2
  17. package/lib/components/Lighter.js +2 -2
  18. package/lib/components/Line.js +2 -2
  19. package/lib/components/LinearGradient.js +2 -2
  20. package/lib/components/Marquee.js +1 -1
  21. package/lib/components/StereoBar.js +2 -2
  22. package/lib/components/TextOverflow.js +1 -1
  23. package/lib/components/Tooltip.js +4 -4
  24. package/lib/css/index.module.css +42 -42
  25. package/lib/css/piechart.module.css +26 -26
  26. package/lib/hooks/useAnimateData.js +6 -6
  27. package/lib/hooks/useAxes.js +1 -2
  28. package/lib/hooks/useFilterData.js +5 -5
  29. package/lib/hooks/useStackData.js +5 -5
  30. package/lib/hooks/useTooltip.js +11 -11
  31. package/lib/utils/index.js +3 -3
  32. package/package.json +55 -55
  33. package/src/components/Background.tsx +61 -61
  34. package/src/components/Band.tsx +271 -271
  35. package/src/components/Brush.js +159 -159
  36. package/src/components/Chart.js +154 -154
  37. package/src/components/ChartContainer.tsx +71 -71
  38. package/src/components/ConicalGradient.js +258 -258
  39. package/src/components/Control.jsx +241 -241
  40. package/src/components/ExtentData.js +18 -18
  41. package/src/components/Indicator.js +58 -58
  42. package/src/components/Label.js +247 -242
  43. package/src/components/Legend.js +166 -166
  44. package/src/components/Lighter.jsx +173 -173
  45. package/src/components/Line.js +153 -153
  46. package/src/components/LinearGradient.js +29 -29
  47. package/src/components/PieTooltip.jsx +160 -160
  48. package/src/components/StereoBar.tsx +307 -307
  49. package/src/components/Tooltip.js +4 -4
  50. package/src/components/index.js +59 -59
  51. package/src/context/index.js +2 -2
  52. package/src/css/index.module.css +42 -42
  53. package/src/css/piechart.module.css +26 -26
  54. package/src/element/ConicGradient.jsx +55 -55
  55. package/src/element/Line.tsx +33 -33
  56. package/src/element/index.ts +3 -3
  57. package/src/formatter/index.js +1 -1
  58. package/src/formatter/legend.js +112 -112
  59. package/src/hooks/index.js +20 -20
  60. package/src/hooks/useAnimateData.ts +68 -68
  61. package/src/hooks/useAxes.js +1 -2
  62. package/src/hooks/useFilterData.js +78 -78
  63. package/src/hooks/useStackData.js +102 -102
  64. package/src/hooks/useTooltip.ts +104 -104
  65. package/src/index.js +6 -6
  66. package/src/types/index.d.ts +68 -68
  67. package/src/utils/index.js +782 -782
  68. 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
+ };