@byteluck-fe/model-driven-engine 2.7.0-alpha.15a → 2.7.0-alpha.15c
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/dist/esm/common/ActionManager.js +173 -56
- package/dist/esm/common/DataManager.js +134 -25
- package/dist/esm/common/Engine.js +407 -273
- package/dist/esm/common/OkWorker.js +31 -17
- package/dist/esm/common/Plugin.js +2 -2
- package/dist/esm/common/Runtime.js +54 -39
- package/dist/esm/common/Store.js +61 -59
- package/dist/esm/common/checkerValue.js +112 -110
- package/dist/esm/common/index.js +2 -2
- package/dist/esm/common/proxyState.js +61 -60
- package/dist/esm/index.js +3 -3
- package/dist/esm/plugins/CalcPlugin.js +86 -77
- package/dist/esm/plugins/ControlsEventPlugin.js +196 -73
- package/dist/esm/plugins/ES6ModulePlugin.js +37 -21
- package/dist/esm/plugins/LifecycleEventPlugin.js +198 -79
- package/dist/esm/plugins/StylePlugin.js +26 -11
- package/dist/esm/plugins/index.js +5 -5
- package/dist/esm/utils/index.js +1 -1
- package/dist/esm/utils/runtimeUtils.js +7 -7
- package/dist/index.umd.js +9 -9
- package/dist/types/common/Engine.d.ts +6 -6
- package/dist/types/common/Runtime.d.ts +1 -1
- package/dist/types/common/Store.d.ts +5 -5
- package/dist/types/common/proxyState.d.ts +3 -3
- package/dist/types/plugins/ControlsEventPlugin.d.ts +1 -1
- package/dist/types/plugins/ES6ModulePlugin.d.ts +4 -4
- package/dist/types/plugins/LifecycleEventPlugin.d.ts +1 -1
- package/dist/types/plugins/StylePlugin.d.ts +1 -1
- package/package.json +2 -2
|
@@ -12,7 +12,7 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
12
12
|
Promise.resolve(value).then(_next, _throw);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
function
|
|
15
|
+
function _async_to_generator(fn) {
|
|
16
16
|
return function() {
|
|
17
17
|
var self = this, args = arguments;
|
|
18
18
|
return new Promise(function(resolve, reject) {
|
|
@@ -27,7 +27,7 @@ function _asyncToGenerator(fn) {
|
|
|
27
27
|
});
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
function
|
|
30
|
+
function _class_call_check(instance, Constructor) {
|
|
31
31
|
if (!(instance instanceof Constructor)) {
|
|
32
32
|
throw new TypeError("Cannot call a class as a function");
|
|
33
33
|
}
|
|
@@ -41,23 +41,132 @@ function _defineProperties(target, props) {
|
|
|
41
41
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
45
45
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
46
46
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
47
47
|
return Constructor;
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
|
|
49
|
+
function _define_property(obj, key, value) {
|
|
50
|
+
if (key in obj) {
|
|
51
|
+
Object.defineProperty(obj, key, {
|
|
52
|
+
value: value,
|
|
53
|
+
enumerable: true,
|
|
54
|
+
configurable: true,
|
|
55
|
+
writable: true
|
|
56
|
+
});
|
|
57
|
+
} else {
|
|
58
|
+
obj[key] = value;
|
|
59
|
+
}
|
|
60
|
+
return obj;
|
|
61
|
+
}
|
|
62
|
+
function _ts_generator(thisArg, body) {
|
|
63
|
+
var f, y, t, g, _ = {
|
|
64
|
+
label: 0,
|
|
65
|
+
sent: function() {
|
|
66
|
+
if (t[0] & 1) throw t[1];
|
|
67
|
+
return t[1];
|
|
68
|
+
},
|
|
69
|
+
trys: [],
|
|
70
|
+
ops: []
|
|
71
|
+
};
|
|
72
|
+
return(g = {
|
|
73
|
+
next: verb(0),
|
|
74
|
+
"throw": verb(1),
|
|
75
|
+
"return": verb(2)
|
|
76
|
+
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
77
|
+
return this;
|
|
78
|
+
}), g);
|
|
79
|
+
function verb(n) {
|
|
80
|
+
return function(v) {
|
|
81
|
+
return step([
|
|
82
|
+
n,
|
|
83
|
+
v
|
|
84
|
+
]);
|
|
85
|
+
};
|
|
86
|
+
}
|
|
87
|
+
function step(op) {
|
|
88
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
89
|
+
while(_)try {
|
|
90
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
91
|
+
if (y = 0, t) op = [
|
|
92
|
+
op[0] & 2,
|
|
93
|
+
t.value
|
|
94
|
+
];
|
|
95
|
+
switch(op[0]){
|
|
96
|
+
case 0:
|
|
97
|
+
case 1:
|
|
98
|
+
t = op;
|
|
99
|
+
break;
|
|
100
|
+
case 4:
|
|
101
|
+
_.label++;
|
|
102
|
+
return {
|
|
103
|
+
value: op[1],
|
|
104
|
+
done: false
|
|
105
|
+
};
|
|
106
|
+
case 5:
|
|
107
|
+
_.label++;
|
|
108
|
+
y = op[1];
|
|
109
|
+
op = [
|
|
110
|
+
0
|
|
111
|
+
];
|
|
112
|
+
continue;
|
|
113
|
+
case 7:
|
|
114
|
+
op = _.ops.pop();
|
|
115
|
+
_.trys.pop();
|
|
116
|
+
continue;
|
|
117
|
+
default:
|
|
118
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
119
|
+
_ = 0;
|
|
120
|
+
continue;
|
|
121
|
+
}
|
|
122
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
123
|
+
_.label = op[1];
|
|
124
|
+
break;
|
|
125
|
+
}
|
|
126
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
127
|
+
_.label = t[1];
|
|
128
|
+
t = op;
|
|
129
|
+
break;
|
|
130
|
+
}
|
|
131
|
+
if (t && _.label < t[2]) {
|
|
132
|
+
_.label = t[2];
|
|
133
|
+
_.ops.push(op);
|
|
134
|
+
break;
|
|
135
|
+
}
|
|
136
|
+
if (t[2]) _.ops.pop();
|
|
137
|
+
_.trys.pop();
|
|
138
|
+
continue;
|
|
139
|
+
}
|
|
140
|
+
op = body.call(thisArg, _);
|
|
141
|
+
} catch (e) {
|
|
142
|
+
op = [
|
|
143
|
+
6,
|
|
144
|
+
e
|
|
145
|
+
];
|
|
146
|
+
y = 0;
|
|
147
|
+
} finally{
|
|
148
|
+
f = t = 0;
|
|
149
|
+
}
|
|
150
|
+
if (op[0] & 5) throw op[1];
|
|
151
|
+
return {
|
|
152
|
+
value: op[0] ? op[1] : void 0,
|
|
153
|
+
done: true
|
|
154
|
+
};
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
import { EventLogic } from "@byteluck-fe/model-driven-shared";
|
|
51
158
|
// type EventKeyMap = {
|
|
52
159
|
// [eventKey in EventKeys]?: string
|
|
53
160
|
// }
|
|
54
161
|
export var ControlsEventPlugin = /*#__PURE__*/ function() {
|
|
55
162
|
"use strict";
|
|
56
163
|
function ControlsEventPlugin(config) {
|
|
57
|
-
|
|
164
|
+
_class_call_check(this, ControlsEventPlugin);
|
|
165
|
+
_define_property(this, "config", void 0);
|
|
166
|
+
_define_property(this, "engine", void 0);
|
|
58
167
|
this.config = config;
|
|
59
168
|
}
|
|
60
|
-
|
|
169
|
+
_create_class(ControlsEventPlugin, [
|
|
61
170
|
{
|
|
62
171
|
key: "apply",
|
|
63
172
|
value: function apply(engine) {
|
|
@@ -99,30 +208,36 @@ export var ControlsEventPlugin = /*#__PURE__*/ function() {
|
|
|
99
208
|
value: function engineAddEventListener(eventKey, controlEventKey) {
|
|
100
209
|
var _this = this;
|
|
101
210
|
this.engine.on(eventKey, function() {
|
|
102
|
-
var _ref =
|
|
103
|
-
return
|
|
104
|
-
|
|
211
|
+
var _ref = _async_to_generator(function(payload) {
|
|
212
|
+
return _ts_generator(this, function(_state) {
|
|
213
|
+
switch(_state.label){
|
|
105
214
|
case 0:
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
215
|
+
// 初始化state的时候不触发change事件,必须在engine mounted以后才触发
|
|
216
|
+
if (eventKey === "change" && !_this.engine.isMounted) {
|
|
217
|
+
return [
|
|
218
|
+
2
|
|
219
|
+
];
|
|
109
220
|
}
|
|
110
|
-
|
|
221
|
+
if (!(payload.instance !== undefined)) return [
|
|
222
|
+
3,
|
|
223
|
+
2
|
|
224
|
+
];
|
|
225
|
+
return [
|
|
226
|
+
4,
|
|
227
|
+
_this.callControlEvent(controlEventKey, payload)
|
|
228
|
+
];
|
|
229
|
+
case 1:
|
|
230
|
+
return [
|
|
231
|
+
2,
|
|
232
|
+
_state.sent()
|
|
233
|
+
];
|
|
111
234
|
case 2:
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
}
|
|
116
|
-
_ctx.next = 5;
|
|
117
|
-
return _this.callControlEvent(controlEventKey, payload);
|
|
118
|
-
case 5:
|
|
119
|
-
return _ctx.abrupt("return", _ctx.sent);
|
|
120
|
-
case 6:
|
|
121
|
-
case "end":
|
|
122
|
-
return _ctx.stop();
|
|
235
|
+
return [
|
|
236
|
+
2
|
|
237
|
+
];
|
|
123
238
|
}
|
|
124
|
-
}
|
|
125
|
-
})
|
|
239
|
+
});
|
|
240
|
+
});
|
|
126
241
|
return function(payload) {
|
|
127
242
|
return _ref.apply(this, arguments);
|
|
128
243
|
};
|
|
@@ -133,58 +248,66 @@ export var ControlsEventPlugin = /*#__PURE__*/ function() {
|
|
|
133
248
|
key: "callControlEvent",
|
|
134
249
|
value: function callControlEvent(name, payload) {
|
|
135
250
|
var _this = this;
|
|
136
|
-
return
|
|
251
|
+
return _async_to_generator(function() {
|
|
137
252
|
var events, result;
|
|
138
|
-
return
|
|
139
|
-
|
|
253
|
+
return _ts_generator(this, function(_state) {
|
|
254
|
+
switch(_state.label){
|
|
140
255
|
case 0:
|
|
141
256
|
events = _this.config[payload.instance.id];
|
|
142
|
-
if (!
|
|
143
|
-
|
|
144
|
-
|
|
257
|
+
if (!events || !Array.isArray(events[name])) {
|
|
258
|
+
return [
|
|
259
|
+
2,
|
|
260
|
+
[]
|
|
261
|
+
];
|
|
145
262
|
}
|
|
146
|
-
return
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
return
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
263
|
+
return [
|
|
264
|
+
4,
|
|
265
|
+
Promise.all(events[name].map(function() {
|
|
266
|
+
var _ref = _async_to_generator(function(eventName) {
|
|
267
|
+
var execResult;
|
|
268
|
+
return _ts_generator(this, function(_state) {
|
|
269
|
+
switch(_state.label){
|
|
270
|
+
case 0:
|
|
271
|
+
return [
|
|
272
|
+
4,
|
|
273
|
+
_this.engine.getAction().execAction(eventName, //qiyu 注释掉的两个参数变为全局参数
|
|
274
|
+
// this.engine,
|
|
275
|
+
// this.engine.getAction().actionUtils, //以前是params,空的
|
|
276
|
+
payload)
|
|
277
|
+
];
|
|
278
|
+
case 1:
|
|
279
|
+
execResult = _state.sent();
|
|
280
|
+
return [
|
|
281
|
+
2,
|
|
282
|
+
execResult
|
|
283
|
+
];
|
|
284
|
+
}
|
|
285
|
+
});
|
|
286
|
+
});
|
|
287
|
+
return function(eventName) {
|
|
288
|
+
return _ref.apply(this, arguments);
|
|
289
|
+
};
|
|
290
|
+
}()))
|
|
291
|
+
];
|
|
292
|
+
case 1:
|
|
293
|
+
result = _state.sent();
|
|
294
|
+
if (result.includes(false)) {
|
|
295
|
+
return [
|
|
296
|
+
2,
|
|
297
|
+
false
|
|
298
|
+
];
|
|
299
|
+
} else {
|
|
300
|
+
return [
|
|
301
|
+
2,
|
|
302
|
+
result
|
|
303
|
+
];
|
|
178
304
|
}
|
|
179
|
-
return
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
case 11:
|
|
183
|
-
case "end":
|
|
184
|
-
return _ctx1.stop();
|
|
305
|
+
return [
|
|
306
|
+
2
|
|
307
|
+
];
|
|
185
308
|
}
|
|
186
|
-
}
|
|
187
|
-
})
|
|
309
|
+
});
|
|
310
|
+
})();
|
|
188
311
|
}
|
|
189
312
|
}
|
|
190
313
|
]);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _array_like_to_array(arr, len) {
|
|
2
2
|
if (len == null || len > arr.length) len = arr.length;
|
|
3
3
|
for(var i = 0, arr2 = new Array(len); i < len; i++)arr2[i] = arr[i];
|
|
4
4
|
return arr2;
|
|
5
5
|
}
|
|
6
|
-
function
|
|
6
|
+
function _array_with_holes(arr) {
|
|
7
7
|
if (Array.isArray(arr)) return arr;
|
|
8
8
|
}
|
|
9
|
-
function
|
|
9
|
+
function _class_call_check(instance, Constructor) {
|
|
10
10
|
if (!(instance instanceof Constructor)) {
|
|
11
11
|
throw new TypeError("Cannot call a class as a function");
|
|
12
12
|
}
|
|
@@ -20,12 +20,25 @@ function _defineProperties(target, props) {
|
|
|
20
20
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
function
|
|
23
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
24
24
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
25
25
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
26
26
|
return Constructor;
|
|
27
27
|
}
|
|
28
|
-
function
|
|
28
|
+
function _define_property(obj, key, value) {
|
|
29
|
+
if (key in obj) {
|
|
30
|
+
Object.defineProperty(obj, key, {
|
|
31
|
+
value: value,
|
|
32
|
+
enumerable: true,
|
|
33
|
+
configurable: true,
|
|
34
|
+
writable: true
|
|
35
|
+
});
|
|
36
|
+
} else {
|
|
37
|
+
obj[key] = value;
|
|
38
|
+
}
|
|
39
|
+
return obj;
|
|
40
|
+
}
|
|
41
|
+
function _iterable_to_array_limit(arr, i) {
|
|
29
42
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
30
43
|
if (_i == null) return;
|
|
31
44
|
var _arr = [];
|
|
@@ -49,29 +62,32 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
49
62
|
}
|
|
50
63
|
return _arr;
|
|
51
64
|
}
|
|
52
|
-
function
|
|
65
|
+
function _non_iterable_rest() {
|
|
53
66
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
54
67
|
}
|
|
55
|
-
function
|
|
56
|
-
return
|
|
68
|
+
function _sliced_to_array(arr, i) {
|
|
69
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
57
70
|
}
|
|
58
|
-
function
|
|
71
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
59
72
|
if (!o) return;
|
|
60
|
-
if (typeof o === "string") return
|
|
73
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
61
74
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
62
75
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
63
76
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
64
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
77
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
65
78
|
}
|
|
66
|
-
import { error } from
|
|
79
|
+
import { error } from "@byteluck-fe/model-driven-shared";
|
|
67
80
|
export var ES6ModulePlugin = /*#__PURE__*/ function() {
|
|
68
81
|
"use strict";
|
|
69
82
|
function ES6ModulePlugin(config, env) {
|
|
70
|
-
|
|
83
|
+
_class_call_check(this, ES6ModulePlugin);
|
|
84
|
+
_define_property(this, "config", void 0);
|
|
85
|
+
_define_property(this, "engine", void 0);
|
|
86
|
+
_define_property(this, "env", void 0);
|
|
71
87
|
this.config = config;
|
|
72
88
|
this.env = env;
|
|
73
89
|
}
|
|
74
|
-
|
|
90
|
+
_create_class(ES6ModulePlugin, [
|
|
75
91
|
{
|
|
76
92
|
key: "apply",
|
|
77
93
|
value: function apply(engine) {
|
|
@@ -88,7 +104,7 @@ export var ES6ModulePlugin = /*#__PURE__*/ function() {
|
|
|
88
104
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
89
105
|
try {
|
|
90
106
|
for(var _iterator = Object.entries(res.funcMap)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
91
|
-
var
|
|
107
|
+
var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
92
108
|
actionManager.addAction(key, value);
|
|
93
109
|
}
|
|
94
110
|
} catch (err) {
|
|
@@ -125,11 +141,11 @@ export function parseModule(action, engine, env) {
|
|
|
125
141
|
}
|
|
126
142
|
};
|
|
127
143
|
try {
|
|
128
|
-
new Function(
|
|
144
|
+
new Function("module", "exports", compiled).call(module, module, module.exports);
|
|
129
145
|
} catch (e) {
|
|
130
|
-
error(e.message +
|
|
131
|
-
if (process.env.NODE_ENV !==
|
|
132
|
-
error(
|
|
146
|
+
error(e.message + ". fail to parse the module");
|
|
147
|
+
if (process.env.NODE_ENV !== "production") {
|
|
148
|
+
error("fail to parse the module");
|
|
133
149
|
}
|
|
134
150
|
}
|
|
135
151
|
var funcMap = {};
|
|
@@ -137,8 +153,8 @@ export function parseModule(action, engine, env) {
|
|
|
137
153
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
138
154
|
try {
|
|
139
155
|
for(var _iterator = Object.entries(module.exports)[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
140
|
-
var
|
|
141
|
-
if (typeof value ===
|
|
156
|
+
var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
157
|
+
if (typeof value === "function") {
|
|
142
158
|
funcMap[key] = value;
|
|
143
159
|
} else {
|
|
144
160
|
variables[key] = value;
|