@byteluck-fe/model-driven-engine 2.3.11 → 2.5.0-alpha.10
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 +25 -25
- package/dist/esm/common/DataManager.js +9 -9
- package/dist/esm/common/Engine.js +124 -136
- package/dist/esm/common/OkWorker.js +6 -6
- package/dist/esm/common/Plugin.js +2 -2
- package/dist/esm/common/Runtime.js +29 -29
- package/dist/esm/common/Store.js +10 -10
- package/dist/esm/common/checkerValue.js +69 -69
- package/dist/esm/common/proxyState.js +11 -11
- package/dist/esm/plugins/CalcPlugin.js +25 -25
- package/dist/esm/plugins/ControlsEventPlugin.js +11 -11
- package/dist/esm/plugins/ES6ModulePlugin.js +19 -19
- package/dist/esm/plugins/LifecycleEventPlugin.js +21 -21
- package/dist/esm/plugins/StylePlugin.js +7 -7
- package/dist/index.umd.js +8 -8
- package/package.json +4 -4
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _arrayLikeToArray(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 _arrayWithHoles(arr) {
|
|
7
7
|
if (Array.isArray(arr)) return arr;
|
|
8
8
|
}
|
|
9
|
-
function
|
|
10
|
-
if (Array.isArray(arr)) return
|
|
9
|
+
function _arrayWithoutHoles(arr) {
|
|
10
|
+
if (Array.isArray(arr)) return _arrayLikeToArray(arr);
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function _assertThisInitialized(self) {
|
|
13
13
|
if (self === void 0) {
|
|
14
14
|
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
|
|
15
15
|
}
|
|
@@ -29,7 +29,7 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
29
29
|
Promise.resolve(value).then(_next, _throw);
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
function
|
|
32
|
+
function _asyncToGenerator(fn) {
|
|
33
33
|
return function() {
|
|
34
34
|
var self = this, args = arguments;
|
|
35
35
|
return new Promise(function(resolve, reject) {
|
|
@@ -44,7 +44,7 @@ function _async_to_generator(fn) {
|
|
|
44
44
|
});
|
|
45
45
|
};
|
|
46
46
|
}
|
|
47
|
-
function
|
|
47
|
+
function _classCallCheck(instance, Constructor) {
|
|
48
48
|
if (!(instance instanceof Constructor)) {
|
|
49
49
|
throw new TypeError("Cannot call a class as a function");
|
|
50
50
|
}
|
|
@@ -58,12 +58,12 @@ function _defineProperties(target, props) {
|
|
|
58
58
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
|
-
function
|
|
61
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
62
62
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
63
63
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
64
64
|
return Constructor;
|
|
65
65
|
}
|
|
66
|
-
function
|
|
66
|
+
function _defineProperty(obj, key, value) {
|
|
67
67
|
if (key in obj) {
|
|
68
68
|
Object.defineProperty(obj, key, {
|
|
69
69
|
value: value,
|
|
@@ -80,23 +80,23 @@ function _get(target, property, receiver) {
|
|
|
80
80
|
if (typeof Reflect !== "undefined" && Reflect.get) {
|
|
81
81
|
_get = Reflect.get;
|
|
82
82
|
} else {
|
|
83
|
-
_get = function
|
|
84
|
-
var base =
|
|
83
|
+
_get = function _get(target, property, receiver) {
|
|
84
|
+
var base = _superPropBase(target, property);
|
|
85
85
|
if (!base) return;
|
|
86
86
|
var desc = Object.getOwnPropertyDescriptor(base, property);
|
|
87
87
|
if (desc.get) {
|
|
88
|
-
return desc.get.call(receiver
|
|
88
|
+
return desc.get.call(receiver);
|
|
89
89
|
}
|
|
90
90
|
return desc.value;
|
|
91
91
|
};
|
|
92
92
|
}
|
|
93
93
|
return _get(target, property, receiver || target);
|
|
94
94
|
}
|
|
95
|
-
function
|
|
96
|
-
|
|
95
|
+
function _getPrototypeOf(o) {
|
|
96
|
+
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
97
97
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
98
98
|
};
|
|
99
|
-
return
|
|
99
|
+
return _getPrototypeOf(o);
|
|
100
100
|
}
|
|
101
101
|
function _inherits(subClass, superClass) {
|
|
102
102
|
if (typeof superClass !== "function" && superClass !== null) {
|
|
@@ -109,7 +109,7 @@ function _inherits(subClass, superClass) {
|
|
|
109
109
|
configurable: true
|
|
110
110
|
}
|
|
111
111
|
});
|
|
112
|
-
if (superClass)
|
|
112
|
+
if (superClass) _setPrototypeOf(subClass, superClass);
|
|
113
113
|
}
|
|
114
114
|
function _instanceof(left, right) {
|
|
115
115
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
@@ -118,10 +118,10 @@ function _instanceof(left, right) {
|
|
|
118
118
|
return left instanceof right;
|
|
119
119
|
}
|
|
120
120
|
}
|
|
121
|
-
function
|
|
121
|
+
function _iterableToArray(iter) {
|
|
122
122
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
123
123
|
}
|
|
124
|
-
function
|
|
124
|
+
function _iterableToArrayLimit(arr, i) {
|
|
125
125
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
126
126
|
if (_i == null) return;
|
|
127
127
|
var _arr = [];
|
|
@@ -145,13 +145,13 @@ function _iterable_to_array_limit(arr, i) {
|
|
|
145
145
|
}
|
|
146
146
|
return _arr;
|
|
147
147
|
}
|
|
148
|
-
function
|
|
148
|
+
function _nonIterableRest() {
|
|
149
149
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
150
150
|
}
|
|
151
|
-
function
|
|
151
|
+
function _nonIterableSpread() {
|
|
152
152
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
153
153
|
}
|
|
154
|
-
function
|
|
154
|
+
function _objectSpread(target) {
|
|
155
155
|
for(var i = 1; i < arguments.length; i++){
|
|
156
156
|
var source = arguments[i] != null ? arguments[i] : {};
|
|
157
157
|
var ownKeys = Object.keys(source);
|
|
@@ -161,7 +161,7 @@ function _object_spread(target) {
|
|
|
161
161
|
}));
|
|
162
162
|
}
|
|
163
163
|
ownKeys.forEach(function(key) {
|
|
164
|
-
|
|
164
|
+
_defineProperty(target, key, source[key]);
|
|
165
165
|
});
|
|
166
166
|
}
|
|
167
167
|
return target;
|
|
@@ -179,7 +179,7 @@ function ownKeys(object, enumerableOnly) {
|
|
|
179
179
|
}
|
|
180
180
|
return keys;
|
|
181
181
|
}
|
|
182
|
-
function
|
|
182
|
+
function _objectSpreadProps(target, source) {
|
|
183
183
|
source = source != null ? source : {};
|
|
184
184
|
if (Object.getOwnPropertyDescriptors) {
|
|
185
185
|
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
|
|
@@ -190,45 +190,45 @@ function _object_spread_props(target, source) {
|
|
|
190
190
|
}
|
|
191
191
|
return target;
|
|
192
192
|
}
|
|
193
|
-
function
|
|
194
|
-
if (call && (
|
|
193
|
+
function _possibleConstructorReturn(self, call) {
|
|
194
|
+
if (call && (_typeof(call) === "object" || typeof call === "function")) {
|
|
195
195
|
return call;
|
|
196
196
|
}
|
|
197
|
-
return
|
|
197
|
+
return _assertThisInitialized(self);
|
|
198
198
|
}
|
|
199
|
-
function
|
|
200
|
-
|
|
199
|
+
function _setPrototypeOf(o, p) {
|
|
200
|
+
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
|
|
201
201
|
o.__proto__ = p;
|
|
202
202
|
return o;
|
|
203
203
|
};
|
|
204
|
-
return
|
|
204
|
+
return _setPrototypeOf(o, p);
|
|
205
205
|
}
|
|
206
|
-
function
|
|
207
|
-
return
|
|
206
|
+
function _slicedToArray(arr, i) {
|
|
207
|
+
return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
|
|
208
208
|
}
|
|
209
|
-
function
|
|
209
|
+
function _superPropBase(object, property) {
|
|
210
210
|
while(!Object.prototype.hasOwnProperty.call(object, property)){
|
|
211
|
-
object =
|
|
211
|
+
object = _getPrototypeOf(object);
|
|
212
212
|
if (object === null) break;
|
|
213
213
|
}
|
|
214
214
|
return object;
|
|
215
215
|
}
|
|
216
|
-
function
|
|
217
|
-
return
|
|
216
|
+
function _toConsumableArray(arr) {
|
|
217
|
+
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
|
|
218
218
|
}
|
|
219
|
-
function
|
|
219
|
+
var _typeof = function(obj) {
|
|
220
220
|
"@swc/helpers - typeof";
|
|
221
221
|
return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
|
|
222
|
-
}
|
|
223
|
-
function
|
|
222
|
+
};
|
|
223
|
+
function _unsupportedIterableToArray(o, minLen) {
|
|
224
224
|
if (!o) return;
|
|
225
|
-
if (typeof o === "string") return
|
|
225
|
+
if (typeof o === "string") return _arrayLikeToArray(o, minLen);
|
|
226
226
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
227
227
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
228
228
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
229
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
229
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
230
230
|
}
|
|
231
|
-
function
|
|
231
|
+
function _isNativeReflectConstruct() {
|
|
232
232
|
if (typeof Reflect === "undefined" || !Reflect.construct) return false;
|
|
233
233
|
if (Reflect.construct.sham) return false;
|
|
234
234
|
if (typeof Proxy === "function") return true;
|
|
@@ -239,17 +239,17 @@ function _is_native_reflect_construct() {
|
|
|
239
239
|
return false;
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
function
|
|
243
|
-
var hasNativeReflectConstruct =
|
|
242
|
+
function _createSuper(Derived) {
|
|
243
|
+
var hasNativeReflectConstruct = _isNativeReflectConstruct();
|
|
244
244
|
return function _createSuperInternal() {
|
|
245
|
-
var Super =
|
|
245
|
+
var Super = _getPrototypeOf(Derived), result;
|
|
246
246
|
if (hasNativeReflectConstruct) {
|
|
247
|
-
var NewTarget =
|
|
247
|
+
var NewTarget = _getPrototypeOf(this).constructor;
|
|
248
248
|
result = Reflect.construct(Super, arguments, NewTarget);
|
|
249
249
|
} else {
|
|
250
250
|
result = Super.apply(this, arguments);
|
|
251
251
|
}
|
|
252
|
-
return
|
|
252
|
+
return _possibleConstructorReturn(this, result);
|
|
253
253
|
};
|
|
254
254
|
}
|
|
255
255
|
var __generator = this && this.__generator || function(thisArg, body) {
|
|
@@ -367,29 +367,29 @@ var applyingPluginName = "";
|
|
|
367
367
|
var Engine = /*#__PURE__*/ function(Watcher) {
|
|
368
368
|
"use strict";
|
|
369
369
|
_inherits(Engine, Watcher);
|
|
370
|
-
var _super =
|
|
370
|
+
var _super = _createSuper(Engine);
|
|
371
371
|
function Engine(props) {
|
|
372
|
-
|
|
372
|
+
_classCallCheck(this, Engine);
|
|
373
373
|
var _this;
|
|
374
374
|
_this = _super.call(this);
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
375
|
+
_defineProperty(_assertThisInitialized(_this), "store", void 0);
|
|
376
|
+
_defineProperty(_assertThisInitialized(_this), "rawStore", {});
|
|
377
|
+
_defineProperty(_assertThisInitialized(_this), "parent", void 0);
|
|
378
378
|
// 提供注册运行态控件以及实例化控件的能力
|
|
379
|
-
|
|
379
|
+
_defineProperty(_assertThisInitialized(_this), "runtime", void 0);
|
|
380
380
|
// 提供子线程处理脚本以及修改数据的能力
|
|
381
381
|
// public worker: OkWorker
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
382
|
+
_defineProperty(_assertThisInitialized(_this), "isMounted", false);
|
|
383
|
+
_defineProperty(_assertThisInitialized(_this), "id", genNonDuplicateId(8));
|
|
384
|
+
_defineProperty(_assertThisInitialized(_this), "externalParams", void 0);
|
|
385
385
|
// 提供外部注册插件,在不同的hooks触发时执行固定函数的能力
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
386
|
+
_defineProperty(_assertThisInitialized(_this), "__plugins", void 0);
|
|
387
|
+
_defineProperty(_assertThisInitialized(_this), "__pluginsApplied", false);
|
|
388
|
+
_defineProperty(_assertThisInitialized(_this), "$options", void 0);
|
|
389
|
+
_defineProperty(_assertThisInitialized(_this), "actionManager", new ActionManager());
|
|
390
|
+
_defineProperty(_assertThisInitialized(_this), "dataManager", void 0);
|
|
391
|
+
_defineProperty(_assertThisInitialized(_this), "_jobTasks", []);
|
|
392
|
+
_defineProperty(_assertThisInitialized(_this), "createControlInstance", _this.createInstance);
|
|
393
393
|
_this.$options = Object.freeze(props);
|
|
394
394
|
var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? true : _this_$options_autoMount, schema = _this_$options.schema, beforeCreateInstance = _this_$options.beforeCreateInstance, externalParams = _this_$options.externalParams, _this_$options_language = _this_$options.// fieldModel,
|
|
395
395
|
language, language = _this_$options_language === void 0 ? DEFAULT_LOCALE : _this_$options_language, _this_$options_debug = _this_$options.debug, debug = _this_$options_debug === void 0 ? false : _this_$options_debug;
|
|
@@ -408,14 +408,14 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
408
408
|
autoMount && _this.mount();
|
|
409
409
|
return _this;
|
|
410
410
|
}
|
|
411
|
-
|
|
411
|
+
_createClass(Engine, [
|
|
412
412
|
{
|
|
413
413
|
key: "debugLog",
|
|
414
414
|
value: function debugLog() {
|
|
415
415
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
416
416
|
args[_key] = arguments[_key];
|
|
417
417
|
}
|
|
418
|
-
this.debug && log.apply(void 0,
|
|
418
|
+
this.debug && log.apply(void 0, _toConsumableArray(args));
|
|
419
419
|
}
|
|
420
420
|
},
|
|
421
421
|
{
|
|
@@ -435,7 +435,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
435
435
|
arg[_key] = arguments[_key];
|
|
436
436
|
}
|
|
437
437
|
var _this_runtime;
|
|
438
|
-
(_this_runtime = this.runtime).register.apply(_this_runtime,
|
|
438
|
+
(_this_runtime = this.runtime).register.apply(_this_runtime, _toConsumableArray(arg));
|
|
439
439
|
return this;
|
|
440
440
|
}
|
|
441
441
|
},
|
|
@@ -495,7 +495,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
495
495
|
}, {});
|
|
496
496
|
// @ts-ignore
|
|
497
497
|
var emptyState = this.getEmptyState(instance.id);
|
|
498
|
-
return newValue
|
|
498
|
+
return newValue.map(function(row) {
|
|
499
499
|
return(// @ts-ignore
|
|
500
500
|
checkerSubtableValue(fieldTypeMap, row, emptyState));
|
|
501
501
|
});
|
|
@@ -552,7 +552,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
552
552
|
var newRowLengths = args.length;
|
|
553
553
|
createdNewRows = createRows(newRowLengths);
|
|
554
554
|
createdNewRowsData = args;
|
|
555
|
-
(_subtable_children = subtable.children)[type].apply(_subtable_children,
|
|
555
|
+
(_subtable_children = subtable.children)[type].apply(_subtable_children, _toConsumableArray(createdNewRows));
|
|
556
556
|
this.runtime.getFlatInstances();
|
|
557
557
|
break;
|
|
558
558
|
case "splice":
|
|
@@ -570,7 +570,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
570
570
|
(_subtable_children1 = subtable.children)[type].apply(_subtable_children1, [
|
|
571
571
|
start,
|
|
572
572
|
replace
|
|
573
|
-
].concat(
|
|
573
|
+
].concat(_toConsumableArray(createdNewRows)));
|
|
574
574
|
this.runtime.getFlatInstances();
|
|
575
575
|
// newValues.forEach((item: any, index) => {
|
|
576
576
|
// let newIndex = start + index
|
|
@@ -579,14 +579,14 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
579
579
|
} else {
|
|
580
580
|
var // @ts-ignore
|
|
581
581
|
_subtable_children2;
|
|
582
|
-
(_subtable_children2 = subtable.children)[type].apply(_subtable_children2,
|
|
582
|
+
(_subtable_children2 = subtable.children)[type].apply(_subtable_children2, _toConsumableArray(args));
|
|
583
583
|
this.runtime.getFlatInstances();
|
|
584
584
|
}
|
|
585
585
|
break;
|
|
586
586
|
default:
|
|
587
587
|
var // @ts-ignore
|
|
588
588
|
_subtable_children3;
|
|
589
|
-
(_subtable_children3 = subtable.children)[type].apply(_subtable_children3,
|
|
589
|
+
(_subtable_children3 = subtable.children)[type].apply(_subtable_children3, _toConsumableArray(args));
|
|
590
590
|
this.runtime.getFlatInstances();
|
|
591
591
|
break;
|
|
592
592
|
}
|
|
@@ -637,7 +637,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
637
637
|
var row = this.listControlCreateRow(instance, "subtable-row");
|
|
638
638
|
row && newRows.push(row);
|
|
639
639
|
}
|
|
640
|
-
(_instance_children = instance.children).push.apply(_instance_children,
|
|
640
|
+
(_instance_children = instance.children).push.apply(_instance_children, _toConsumableArray(newRows));
|
|
641
641
|
this.runtime.getFlatInstances();
|
|
642
642
|
// 这里已经能拿到控件实例,所以在这里触发setStates,触发每一行每一个控件的change事件
|
|
643
643
|
// for (let i = 0; i < newValue.length; i++) {
|
|
@@ -646,7 +646,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
646
646
|
this.emit("list-change", {
|
|
647
647
|
instance: instance,
|
|
648
648
|
value: value,
|
|
649
|
-
options:
|
|
649
|
+
options: _objectSpreadProps(_objectSpread({}, options), {
|
|
650
650
|
// @ts-ignore
|
|
651
651
|
changed: newRows,
|
|
652
652
|
data: newValue,
|
|
@@ -658,7 +658,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
658
658
|
instance: instance,
|
|
659
659
|
value: this.getState(instance.id, index),
|
|
660
660
|
rowIndex: index,
|
|
661
|
-
options:
|
|
661
|
+
options: _objectSpreadProps(_objectSpread({}, options), {
|
|
662
662
|
oldValue: oldValue
|
|
663
663
|
})
|
|
664
664
|
});
|
|
@@ -697,7 +697,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
697
697
|
var template = JSONCopy(instance.props.headers);
|
|
698
698
|
// @ts-ignore
|
|
699
699
|
var columns = this.createControl(template);
|
|
700
|
-
(_inst_children = inst.children).push.apply(_inst_children,
|
|
700
|
+
(_inst_children = inst.children).push.apply(_inst_children, _toConsumableArray(columns));
|
|
701
701
|
}
|
|
702
702
|
return row;
|
|
703
703
|
}
|
|
@@ -718,9 +718,9 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
718
718
|
function emit(eventKey, payload) {
|
|
719
719
|
var _this = this;
|
|
720
720
|
var _this1 = this, _superprop_get_emit = function() {
|
|
721
|
-
return _get(
|
|
721
|
+
return _get(_getPrototypeOf(Engine.prototype), "emit", _this);
|
|
722
722
|
};
|
|
723
|
-
return
|
|
723
|
+
return _asyncToGenerator(function() {
|
|
724
724
|
var needWait, promiseResolver, promise, results;
|
|
725
725
|
return __generator(this, function(_state) {
|
|
726
726
|
switch(_state.label){
|
|
@@ -741,7 +741,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
741
741
|
2
|
|
742
742
|
];
|
|
743
743
|
console.time("engine-mounted need wait");
|
|
744
|
-
needWait =
|
|
744
|
+
needWait = _toConsumableArray(_this1._jobTasks);
|
|
745
745
|
return [
|
|
746
746
|
4,
|
|
747
747
|
Promise.all(needWait)
|
|
@@ -787,7 +787,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
787
787
|
if (applyingPluginName) {
|
|
788
788
|
callback.applyingPluginName = applyingPluginName;
|
|
789
789
|
}
|
|
790
|
-
return _get(
|
|
790
|
+
return _get(_getPrototypeOf(Engine.prototype), "on", this).call(this, key, callback);
|
|
791
791
|
}
|
|
792
792
|
},
|
|
793
793
|
{
|
|
@@ -797,7 +797,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
797
797
|
args[_key] = arguments[_key];
|
|
798
798
|
}
|
|
799
799
|
var _this_runtime;
|
|
800
|
-
return (_this_runtime = this.runtime).createControl.apply(_this_runtime,
|
|
800
|
+
return (_this_runtime = this.runtime).createControl.apply(_this_runtime, _toConsumableArray(args));
|
|
801
801
|
}
|
|
802
802
|
},
|
|
803
803
|
{
|
|
@@ -901,10 +901,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
901
901
|
*/ key: "setStates",
|
|
902
902
|
value: function setStates(states, rowIndex, options) {
|
|
903
903
|
var _this = this;
|
|
904
|
-
var newStates = states
|
|
904
|
+
var newStates = states;
|
|
905
905
|
Object.keys(newStates).forEach(function(stateId) {
|
|
906
906
|
Object.entries(_this.store.controlIdMapping).forEach(function(param) {
|
|
907
|
-
var _param =
|
|
907
|
+
var _param = _slicedToArray(param, 2), controlId = _param[0], controlIdMapping = _param[1];
|
|
908
908
|
if (controlIdMapping.dataView === stateId) {
|
|
909
909
|
// state对象是dataView包裹的
|
|
910
910
|
var value = newStates[stateId][controlId];
|
|
@@ -947,7 +947,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
947
947
|
var state = this.getState(controlId1, rowIndex);
|
|
948
948
|
if (_instanceof(dataBind, ObjectDataBind)) {
|
|
949
949
|
return Object.entries(dataBind).reduce(function(result, param) {
|
|
950
|
-
var _param =
|
|
950
|
+
var _param = _slicedToArray(param, 2), key = _param[0], dataBind = _param[1];
|
|
951
951
|
// objectDataBind的元素,跳过下一次赋值
|
|
952
952
|
if (dataBind.fieldCode === fieldCode) {
|
|
953
953
|
return result[key];
|
|
@@ -1051,7 +1051,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1051
1051
|
var oldState = (_JSONCopy = JSONCopy(this.getState(controlId, rowIndex))) !== null && _JSONCopy !== void 0 ? _JSONCopy : this.getEmptyState(controlId);
|
|
1052
1052
|
// fieldCode不代表是key,所以需要找到对应的key
|
|
1053
1053
|
var newState = Object.entries(dataBind).reduce(function(result, param) {
|
|
1054
|
-
var _param =
|
|
1054
|
+
var _param = _slicedToArray(param, 2), key = _param[0], dataBind = _param[1];
|
|
1055
1055
|
// objectDataBind的元素,跳过下一次赋值
|
|
1056
1056
|
if (dataBind.fieldCode === fieldCode) {
|
|
1057
1057
|
result[key] = value;
|
|
@@ -1093,7 +1093,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1093
1093
|
var oldState = (_JSONCopy = JSONCopy(_this.getState(controlId, rowIndex))) !== null && _JSONCopy !== void 0 ? _JSONCopy : _this.getEmptyState(controlId);
|
|
1094
1094
|
// fieldCode不代表是key,所以需要找到对应的key
|
|
1095
1095
|
var newState = Object.entries(dataBind).reduce(function(result, param) {
|
|
1096
|
-
var _param =
|
|
1096
|
+
var _param = _slicedToArray(param, 2), key = _param[0], dataBind = _param[1];
|
|
1097
1097
|
// objectDataBind的元素,跳过下一次赋值
|
|
1098
1098
|
skipKeys.push(dataBind.fieldCode);
|
|
1099
1099
|
var value = state[dataBind.fieldCode];
|
|
@@ -1136,7 +1136,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1136
1136
|
var oldState = _this.getEmptyState(controlId);
|
|
1137
1137
|
// fieldCode不代表是key,所以需要找到对应的key
|
|
1138
1138
|
result[item.controlId] = Object.entries(dataBind).reduce(function(result, param) {
|
|
1139
|
-
var _param =
|
|
1139
|
+
var _param = _slicedToArray(param, 2), key = _param[0], dataBind = _param[1];
|
|
1140
1140
|
// objectDataBind的元素,跳过下一次赋值
|
|
1141
1141
|
skipKeys.push(dataBind.fieldCode);
|
|
1142
1142
|
var value = state[dataBind.fieldCode];
|
|
@@ -1161,6 +1161,12 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1161
1161
|
value: function setData(dataSet, options) {
|
|
1162
1162
|
var _this = this;
|
|
1163
1163
|
this.debugLog("engine setData方法执行,参数为%o,%o。", dataSet, options);
|
|
1164
|
+
var isEmpty = function(value) {
|
|
1165
|
+
if (isString(value) || Array.isArray(value)) {
|
|
1166
|
+
return value.length === 0;
|
|
1167
|
+
}
|
|
1168
|
+
return false;
|
|
1169
|
+
};
|
|
1164
1170
|
var newState = {};
|
|
1165
1171
|
Object.keys(dataSet).map(function(dataCode) {
|
|
1166
1172
|
var entity = dataSet[dataCode];
|
|
@@ -1207,50 +1213,34 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1207
1213
|
newState[mapping.dataViewId][mapping.controlId].push(newRow);
|
|
1208
1214
|
});
|
|
1209
1215
|
} else if (entity) {
|
|
1210
|
-
var _Object_keys;
|
|
1211
1216
|
var skipKey = [] //qiyu ObjectDataBind中会提前将相关key拿出来赋值,为了避免重复赋值,设置了此变量
|
|
1212
1217
|
;
|
|
1213
1218
|
var emptyState = JSONCopy(_this.store.emptyState);
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
var
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
Object.keys(state).map(function(key) {
|
|
1223
|
-
if (_this.getControlIdMapping()[key].children !== undefined) {
|
|
1224
|
-
newState[dataViewControlId][key] = undefined;
|
|
1225
|
-
}
|
|
1226
|
-
});
|
|
1227
|
-
} else {
|
|
1228
|
-
Object.keys(entity).map(function(fieldCode) {
|
|
1229
|
-
if (skipKey.includes(fieldCode)) {
|
|
1230
|
-
return;
|
|
1219
|
+
Object.keys(entity).map(function(fieldCode) {
|
|
1220
|
+
if (skipKey.includes(fieldCode)) {
|
|
1221
|
+
return;
|
|
1222
|
+
}
|
|
1223
|
+
var mapping = _this.getDataBindMapping(dataCode, fieldCode);
|
|
1224
|
+
if (mapping) {
|
|
1225
|
+
if (!newState[mapping.dataViewId[0]]) {
|
|
1226
|
+
newState[mapping.dataViewId[0]] = {};
|
|
1231
1227
|
}
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
}
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
objValue[key] = entity[dataBind.fieldCode];
|
|
1246
|
-
}
|
|
1247
|
-
skipKey.push(dataBind.fieldCode);
|
|
1248
|
-
});
|
|
1249
|
-
newState[mapping.dataViewId[0]][mapping.controlId] = objValue;
|
|
1250
|
-
}
|
|
1228
|
+
if (_instanceof(mapping.dataBind, DataBind) && entity[fieldCode] !== undefined) {
|
|
1229
|
+
newState[mapping.dataViewId[0]][mapping.controlId] = entity[fieldCode] !== undefined ? entity[fieldCode] : emptyState[mapping.dataViewId[0]][mapping.controlId];
|
|
1230
|
+
} else if (_instanceof(mapping.dataBind, ObjectDataBind)) {
|
|
1231
|
+
var _this_getEmptyState;
|
|
1232
|
+
var objValue = (_this_getEmptyState = _this.getEmptyState(mapping.controlId)) !== null && _this_getEmptyState !== void 0 ? _this_getEmptyState : {};
|
|
1233
|
+
Object.keys(mapping.dataBind).map(function(key) {
|
|
1234
|
+
var dataBind = mapping.dataBind[key];
|
|
1235
|
+
if (entity[dataBind.fieldCode] !== undefined) {
|
|
1236
|
+
objValue[key] = entity[dataBind.fieldCode];
|
|
1237
|
+
}
|
|
1238
|
+
skipKey.push(dataBind.fieldCode);
|
|
1239
|
+
});
|
|
1240
|
+
newState[mapping.dataViewId[0]][mapping.controlId] = objValue;
|
|
1251
1241
|
}
|
|
1252
|
-
}
|
|
1253
|
-
}
|
|
1242
|
+
}
|
|
1243
|
+
});
|
|
1254
1244
|
var newMapping = _this.getDataBindMapping(dataCode);
|
|
1255
1245
|
if (newMapping) {
|
|
1256
1246
|
var _newMapping_fields;
|
|
@@ -1261,11 +1251,11 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1261
1251
|
var _newState_newMapping_controlId;
|
|
1262
1252
|
var mainStateKeys = Object.keys((_newState_newMapping_controlId = newState === null || newState === void 0 ? void 0 : newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId]) !== null && _newState_newMapping_controlId !== void 0 ? _newState_newMapping_controlId : {});
|
|
1263
1253
|
mappingKeys === null || mappingKeys === void 0 ? void 0 : mappingKeys.forEach(function(key) {
|
|
1264
|
-
if (!mainStateKeys.includes(key) && key !== "uid"
|
|
1265
|
-
if (Object.keys(newState).length) {
|
|
1266
|
-
Object.assign(newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId],
|
|
1254
|
+
if (!mainStateKeys.includes(key) && key !== "uid") {
|
|
1255
|
+
if (Object.keys(newState).length && newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId]) {
|
|
1256
|
+
Object.assign(newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId], _defineProperty({}, key, mappingValue[key]));
|
|
1267
1257
|
} else {
|
|
1268
|
-
Object.assign(newState,
|
|
1258
|
+
Object.assign(newState, _defineProperty({}, newMapping.controlId, _defineProperty({}, key, mappingValue[key])));
|
|
1269
1259
|
}
|
|
1270
1260
|
}
|
|
1271
1261
|
});
|
|
@@ -1336,11 +1326,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1336
1326
|
}
|
|
1337
1327
|
}
|
|
1338
1328
|
} else {
|
|
1339
|
-
var
|
|
1340
|
-
var controlIdMapping = (_this_getControlIdMapping = this.getControlIdMapping()) !== null && _this_getControlIdMapping !== void 0 ? _this_getControlIdMapping : {};
|
|
1329
|
+
var controlIdMapping = this.getControlIdMapping();
|
|
1341
1330
|
var _Object_entries_find;
|
|
1342
|
-
var _ref =
|
|
1343
|
-
var _param =
|
|
1331
|
+
var _ref = _slicedToArray((_Object_entries_find = Object.entries(controlIdMapping).find(function(param) {
|
|
1332
|
+
var _param = _slicedToArray(param, 2), _ = _param[0], mapping = _param[1];
|
|
1344
1333
|
return mapping.children && controlId in mapping.children;
|
|
1345
1334
|
})) !== null && _Object_entries_find !== void 0 ? _Object_entries_find : [], 1), subtableId = _ref[0];
|
|
1346
1335
|
if (subtableId) {
|
|
@@ -1550,7 +1539,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1550
1539
|
args[_key] = arguments[_key];
|
|
1551
1540
|
}
|
|
1552
1541
|
var _this_runtime;
|
|
1553
|
-
return (_this_runtime = this.runtime).registerControlConfig.apply(_this_runtime,
|
|
1542
|
+
return (_this_runtime = this.runtime).registerControlConfig.apply(_this_runtime, _toConsumableArray(args));
|
|
1554
1543
|
}
|
|
1555
1544
|
},
|
|
1556
1545
|
{
|
|
@@ -1562,8 +1551,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1562
1551
|
{
|
|
1563
1552
|
key: "inList",
|
|
1564
1553
|
value: function inList(controlId) {
|
|
1565
|
-
var
|
|
1566
|
-
var mapping = (_this_store_controlIdMapping = this.store.controlIdMapping) !== null && _this_store_controlIdMapping !== void 0 ? _this_store_controlIdMapping : {};
|
|
1554
|
+
var mapping = this.store.controlIdMapping;
|
|
1567
1555
|
var result = Object.keys(mapping).some(function(key) {
|
|
1568
1556
|
var _mapping_key, _mapping_key_children;
|
|
1569
1557
|
return (_mapping_key = mapping[key]) === null || _mapping_key === void 0 ? void 0 : (_mapping_key_children = _mapping_key.children) === null || _mapping_key_children === void 0 ? void 0 : _mapping_key_children.hasOwnProperty(controlId);
|
|
@@ -1580,7 +1568,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
|
|
|
1580
1568
|
arg[_key] = arguments[_key];
|
|
1581
1569
|
}
|
|
1582
1570
|
var _Runtime;
|
|
1583
|
-
return (_Runtime = Runtime).register.apply(_Runtime,
|
|
1571
|
+
return (_Runtime = Runtime).register.apply(_Runtime, _toConsumableArray(arg));
|
|
1584
1572
|
}
|
|
1585
1573
|
},
|
|
1586
1574
|
{
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _classCallCheck(instance, Constructor) {
|
|
2
2
|
if (!(instance instanceof Constructor)) {
|
|
3
3
|
throw new TypeError("Cannot call a class as a function");
|
|
4
4
|
}
|
|
@@ -12,12 +12,12 @@ function _defineProperties(target, props) {
|
|
|
12
12
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
|
-
function
|
|
15
|
+
function _createClass(Constructor, protoProps, staticProps) {
|
|
16
16
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
17
17
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
18
|
return Constructor;
|
|
19
19
|
}
|
|
20
|
-
function
|
|
20
|
+
function _defineProperty(obj, key, value) {
|
|
21
21
|
if (key in obj) {
|
|
22
22
|
Object.defineProperty(obj, key, {
|
|
23
23
|
value: value,
|
|
@@ -34,10 +34,10 @@ import { log } from "@byteluck-fe/model-driven-shared";
|
|
|
34
34
|
var OkWorker = /*#__PURE__*/ function() {
|
|
35
35
|
"use strict";
|
|
36
36
|
function OkWorker() {
|
|
37
|
-
|
|
38
|
-
|
|
37
|
+
_classCallCheck(this, OkWorker);
|
|
38
|
+
_defineProperty(this, "worker", void 0);
|
|
39
39
|
}
|
|
40
|
-
|
|
40
|
+
_createClass(OkWorker, [
|
|
41
41
|
{
|
|
42
42
|
key: "run",
|
|
43
43
|
value: function run(initState) {
|