-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
39 lines (32 loc) · 966 Bytes
/
Copy pathindex.js
File metadata and controls
39 lines (32 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
'use strict';
var toConsumableArray = function (arr) {
if (Array.isArray(arr)) {
for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) arr2[i] = arr[i];
return arr2;
} else {
return Array.from(arr);
}
};
var updateState = function updateState() {
for (var _len = arguments.length, args = Array(_len), _key = 0; _key < _len; _key++) {
args[_key] = arguments[_key];
}
return function (_this) {
if (args.length === 0) return;
var next = args[0],
rest = args.slice(1);
if (typeof next === "function") {
var promise = next(_this.state);
if (typeof promise.then === "function") {
promise.then(function () {
return updateState.apply(undefined, toConsumableArray(rest))(_this);
});
return;
}
}
_this.setState(next, function () {
return updateState.apply(undefined, toConsumableArray(rest))(_this);
});
};
};
module.exports = updateState;