@byteluck-fe/model-driven-engine 2.22.2-beta.1 → 2.22.2-beta.3

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 (40) hide show
  1. package/README.md +30 -30
  2. package/dist/esm/common/ActionManager.js +7 -7
  3. package/dist/esm/common/DataManager.js +2 -2
  4. package/dist/esm/common/Engine.js +130 -124
  5. package/dist/esm/common/OkWorker.js +8 -8
  6. package/dist/esm/common/Runtime.js +17 -17
  7. package/dist/esm/common/Store.js +13 -13
  8. package/dist/esm/common/checkerValue.js +22 -22
  9. package/dist/esm/common/index.js +2 -2
  10. package/dist/esm/common/proxyState.js +52 -56
  11. package/dist/esm/index.js +3 -3
  12. package/dist/esm/plugins/CalcPlugin.js +57 -61
  13. package/dist/esm/plugins/ControlsEventPlugin.js +4 -4
  14. package/dist/esm/plugins/ES6ModulePlugin.js +6 -6
  15. package/dist/esm/plugins/LifecycleEventPlugin.js +5 -5
  16. package/dist/esm/plugins/StylePlugin.js +10 -10
  17. package/dist/esm/plugins/index.js +5 -5
  18. package/dist/esm/utils/index.js +1 -1
  19. package/dist/esm/utils/runtimeUtils.js +3 -3
  20. package/dist/index.umd.js +25 -25
  21. package/dist/types/common/ActionManager.d.ts +14 -14
  22. package/dist/types/common/DataManager.d.ts +10 -10
  23. package/dist/types/common/Engine.d.ts +201 -195
  24. package/dist/types/common/OkWorker.d.ts +13 -13
  25. package/dist/types/common/Plugin.d.ts +6 -6
  26. package/dist/types/common/Runtime.d.ts +31 -31
  27. package/dist/types/common/Store.d.ts +54 -54
  28. package/dist/types/common/checkerValue.d.ts +3 -3
  29. package/dist/types/common/index.d.ts +2 -2
  30. package/dist/types/common/proxyState.d.ts +30 -30
  31. package/dist/types/index.d.ts +3 -3
  32. package/dist/types/plugins/CalcPlugin.d.ts +121 -121
  33. package/dist/types/plugins/ControlsEventPlugin.d.ts +17 -17
  34. package/dist/types/plugins/ES6ModulePlugin.d.ts +27 -27
  35. package/dist/types/plugins/LifecycleEventPlugin.d.ts +15 -15
  36. package/dist/types/plugins/StylePlugin.d.ts +13 -13
  37. package/dist/types/plugins/index.d.ts +5 -5
  38. package/dist/types/utils/index.d.ts +1 -1
  39. package/dist/types/utils/runtimeUtils.d.ts +5 -5
  40. package/package.json +2 -2
@@ -340,23 +340,23 @@ function _ts_generator(thisArg, body) {
340
340
  };
341
341
  }
342
342
  }
343
- import { isDataBind } from '@byteluck-fe/model-driven-core';
344
- import { CONTROL_BASE_TYPE, CONTROL_TYPE, DEFAULT_LOCALE, error, genNonDuplicateId, isString, JSONCopy, log, RulesMessage, updateValueFromKeys, warn, Watcher, isBuiltInControls } from '@byteluck-fe/model-driven-shared';
345
- import { Runtime } from './Runtime';
346
- import { Store } from './Store';
347
- import { findItem, proxyState } from './proxyState';
348
- import { ActionManager } from './ActionManager';
349
- import { DataManager } from './DataManager';
350
- import { checkerSubtableValue, checkerValue } from './checkerValue';
351
- import { buildUUID } from '../utils/runtimeUtils';
352
- if (typeof window !== 'undefined') {
343
+ import { isDataBind } from "@byteluck-fe/model-driven-core";
344
+ import { CONTROL_BASE_TYPE, CONTROL_TYPE, DEFAULT_LOCALE, error, genNonDuplicateId, isString, JSONCopy, log, RulesMessage, updateValueFromKeys, warn, Watcher, isBuiltInControls } from "@byteluck-fe/model-driven-shared";
345
+ import { Runtime } from "./Runtime";
346
+ import { Store } from "./Store";
347
+ import { findItem, proxyState } from "./proxyState";
348
+ import { ActionManager } from "./ActionManager";
349
+ import { DataManager } from "./DataManager";
350
+ import { checkerSubtableValue, checkerValue } from "./checkerValue";
351
+ import { buildUUID } from "../utils/runtimeUtils";
352
+ if (typeof window !== "undefined") {
353
353
  // @ts-ignore
354
354
  window.engines = {};
355
355
  }
356
356
  // setState的时候,存储options中转变量
357
357
  var eventOptionsTemp = null;
358
358
  // 当前正在注册的插件名称
359
- var applyingPluginName = '';
359
+ var applyingPluginName = "";
360
360
  // 整体渲染引擎 并且 提供发布订阅能力
361
361
  var Engine = /*#__PURE__*/ function(Watcher) {
362
362
  "use strict";
@@ -376,6 +376,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
376
376
  _define_property(_assert_this_initialized(_this), "isMounted", false);
377
377
  _define_property(_assert_this_initialized(_this), "id", genNonDuplicateId(8));
378
378
  _define_property(_assert_this_initialized(_this), "externalParams", void 0);
379
+ _define_property(_assert_this_initialized(_this), "children", void 0);
379
380
  // 提供外部注册插件,在不同的hooks触发时执行固定函数的能力
380
381
  _define_property(_assert_this_initialized(_this), "__plugins", void 0);
381
382
  _define_property(_assert_this_initialized(_this), "__pluginsApplied", false);
@@ -386,7 +387,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
386
387
  _define_property(_assert_this_initialized(_this), "createControlInstance", _this.createInstance);
387
388
  _this.$options = Object.freeze(props);
388
389
  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,
389
- 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, messagesI18n = _this_$options.messagesI18n;
390
+ 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, messagesI18n = _this_$options.messagesI18n, children = _this_$options.children;
390
391
  RulesMessage.setLocale(language, messagesI18n);
391
392
  _this.debug = debug;
392
393
  _this.runtime = new Runtime({
@@ -394,10 +395,11 @@ var Engine = /*#__PURE__*/ function(Watcher) {
394
395
  beforeCreateInstance: beforeCreateInstance
395
396
  });
396
397
  _this.externalParams = externalParams;
398
+ _this.children = children;
397
399
  _this.store = new Store({
398
400
  instance: _this.runtime.instance
399
401
  });
400
- _this.debugLog('engine is Instantiation complete');
402
+ _this.debugLog("engine is Instantiation complete");
401
403
  // 自动执行挂载完成,也可以手动调用mount方法
402
404
  autoMount && _this.mount();
403
405
  return _this;
@@ -444,7 +446,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
444
446
  // 触发所有控件的默认值的change事件
445
447
  this.setStates(this.getState());
446
448
  this.debugLog("engine的mount方法调用结束");
447
- if (this.debug && typeof window !== 'undefined') {
449
+ if (this.debug && typeof window !== "undefined") {
448
450
  // @ts-ignore
449
451
  window.engines[this.id] = this;
450
452
  }
@@ -453,7 +455,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
453
455
  {
454
456
  key: "destroy",
455
457
  value: function destroy() {
456
- if (this.debug && typeof window !== 'undefined') {
458
+ if (this.debug && typeof window !== "undefined") {
457
459
  // @ts-ignore
458
460
  delete window.engines[this.id];
459
461
  }
@@ -494,7 +496,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
494
496
  checkerSubtableValue(fieldTypeMap, row, emptyState));
495
497
  });
496
498
  }
497
- var keys = key.split('.');
499
+ var keys = key.split(".");
498
500
  var lastKey = keys[keys.length - 1];
499
501
  try {
500
502
  return checkerValue(instance.fieldType, lastKey, newValue, oldValue);
@@ -527,7 +529,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
527
529
  var newRows = [];
528
530
  for(var i = 0; i < len; i++){
529
531
  // @ts-ignore
530
- var row = _this.listControlCreateRow(subtable, 'subtable-row');
532
+ var row = _this.listControlCreateRow(subtable, "subtable-row");
531
533
  row && newRows.push(row);
532
534
  }
533
535
  // @ts-ignore
@@ -542,15 +544,15 @@ var Engine = /*#__PURE__*/ function(Watcher) {
542
544
  if (type && args) {
543
545
  // const subtableOldLength = subtable.children.length
544
546
  switch(type){
545
- case 'push':
546
- case 'unshift':
547
+ case "push":
548
+ case "unshift":
547
549
  var _subtable_children;
548
550
  var newRowLengths = args.length;
549
551
  createdNewRows = createRows(newRowLengths);
550
552
  createdNewRowsData = args;
551
553
  (_subtable_children = subtable.children)[type].apply(_subtable_children, _to_consumable_array(createdNewRows));
552
554
  break;
553
- case 'splice':
555
+ case "splice":
554
556
  if (args.length > 2) {
555
557
  var // @ts-ignore
556
558
  _subtable_children1;
@@ -589,11 +591,11 @@ var Engine = /*#__PURE__*/ function(Watcher) {
589
591
  (_subtable_children3 = subtable.children)[type].apply(_subtable_children3, _to_consumable_array(args));
590
592
  break;
591
593
  }
592
- if (type === 'splice') {
594
+ if (type === "splice") {
593
595
  deleted = result;
594
596
  } else if ([
595
- 'pop',
596
- 'shift'
597
+ "pop",
598
+ "shift"
597
599
  ].includes(type)) {
598
600
  deleted = [
599
601
  result
@@ -602,7 +604,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
602
604
  var subtableData = this.getState(subtable.id);
603
605
  this._handlerSubtableUpdateUid(subtableData);
604
606
  this.runtime.getFlatInstances();
605
- this.emit('list-change', {
607
+ this.emit("list-change", {
606
608
  instance: subtable,
607
609
  value: subtableData,
608
610
  options: Object.assign({}, options, {
@@ -626,7 +628,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
626
628
  subtableData.forEach(function(item) {
627
629
  if (!item.uid) {
628
630
  Object.assign(item, {
629
- uid: 'new:' + buildUUID('uid')
631
+ uid: "new:" + buildUUID("uid")
630
632
  });
631
633
  }
632
634
  });
@@ -651,7 +653,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
651
653
  var newRows = [];
652
654
  for(var i = 0; i < newValue.length; i++){
653
655
  // @ts-ignore
654
- var row = this.listControlCreateRow(instance, 'subtable-row');
656
+ var row = this.listControlCreateRow(instance, "subtable-row");
655
657
  row && newRows.push(row);
656
658
  }
657
659
  (_instance_children = instance.children).push.apply(_instance_children, _to_consumable_array(newRows));
@@ -666,7 +668,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
666
668
  this.runtime.getFlatInstances();
667
669
  }
668
670
  this._handlerSubtableUpdateUid(newValue);
669
- this.emit('list-change', {
671
+ this.emit("list-change", {
670
672
  instance: instance,
671
673
  value: value,
672
674
  options: _object_spread_props(_object_spread({}, options), {
@@ -675,12 +677,12 @@ var Engine = /*#__PURE__*/ function(Watcher) {
675
677
  data: newValue,
676
678
  deleted: deleted,
677
679
  // deleted: oldValue ?? [],
678
- type: 'push',
680
+ type: "push",
679
681
  jsonValue: JSON.stringify(newValue)
680
682
  })
681
683
  });
682
684
  } else {
683
- this.emit('change', {
685
+ this.emit("change", {
684
686
  instance: instance,
685
687
  value: this.getState(instance.id, index),
686
688
  rowIndex: index,
@@ -704,7 +706,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
704
706
  } catch (e) {
705
707
  error("".concat(applyingPluginName, " Plugin apply Error \n ").concat(e));
706
708
  } finally{
707
- applyingPluginName = '';
709
+ applyingPluginName = "";
708
710
  }
709
711
  });
710
712
  this.__pluginsApplied = true;
@@ -714,20 +716,20 @@ var Engine = /*#__PURE__*/ function(Watcher) {
714
716
  key: "listControlCreateRow",
715
717
  value: function listControlCreateRow(instance, rowType) {
716
718
  var row;
717
- if (rowType === 'subtable-row') {
719
+ if (rowType === "subtable-row") {
718
720
  row = {
719
721
  children: [],
720
722
  controlType: CONTROL_BASE_TYPE.LAYOUT,
721
723
  id: genNonDuplicateId(),
722
- type: 'subtable-row',
724
+ type: "subtable-row",
723
725
  props: {
724
- caption: '',
726
+ caption: "",
725
727
  isHide: false,
726
728
  style: {
727
- height: '',
728
- heightConfig: 'fill',
729
- width: '',
730
- widthConfig: 'fill'
729
+ height: "",
730
+ heightConfig: "fill",
731
+ width: "",
732
+ widthConfig: "fill"
731
733
  }
732
734
  },
733
735
  fieldType: undefined,
@@ -781,7 +783,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
781
783
  key: "listControlAddRow",
782
784
  value: function listControlAddRow(instance) {
783
785
  var // @ts-ignore
784
- rowType = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 'subtable-row';
786
+ rowType = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "subtable-row";
785
787
  var row = this.listControlCreateRow(instance, rowType);
786
788
  if (!row) return;
787
789
  instance.children.push(row);
@@ -800,12 +802,12 @@ var Engine = /*#__PURE__*/ function(Watcher) {
800
802
  return _ts_generator(this, function(_state) {
801
803
  switch(_state.label){
802
804
  case 0:
803
- if (!(eventKey === 'engine-mounted')) return [
805
+ if (!(eventKey === "engine-mounted")) return [
804
806
  3,
805
807
  3
806
808
  ];
807
809
  if (_this1.isMounted) {
808
- warn('The engine-mounted life cycle can only be triggered once');
810
+ warn("The engine-mounted life cycle can only be triggered once");
809
811
  return [
810
812
  2,
811
813
  Promise.resolve([])
@@ -815,7 +817,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
815
817
  3,
816
818
  2
817
819
  ];
818
- console.time('engine-mounted need wait');
820
+ console.time("engine-mounted need wait");
819
821
  needWait = _to_consumable_array(_this1._jobTasks);
820
822
  return [
821
823
  4,
@@ -823,7 +825,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
823
825
  ];
824
826
  case 1:
825
827
  _state.sent();
826
- console.timeEnd('engine-mounted need wait');
828
+ console.timeEnd("engine-mounted need wait");
827
829
  _state.label = 2;
828
830
  case 2:
829
831
  _this1.isMounted = true;
@@ -976,9 +978,9 @@ var Engine = /*#__PURE__*/ function(Watcher) {
976
978
  }
977
979
  },
978
980
  {
979
- /**
980
- * 设置payload的options,提供在不是使用标准api修改state的时候可以传递options,会在本次任务执行完成之后清空
981
- * @param options 需要携带的options
981
+ /**
982
+ * 设置payload的options,提供在不是使用标准api修改state的时候可以传递options,会在本次任务执行完成之后清空
983
+ * @param options 需要携带的options
982
984
  * */ key: "setPayloadOptions",
983
985
  value: function setPayloadOptions(options) {
984
986
  eventOptionsTemp = options;
@@ -988,16 +990,16 @@ var Engine = /*#__PURE__*/ function(Watcher) {
988
990
  key: "setState",
989
991
  value: function setState(controlId, value, rowIndex, options) {
990
992
  eventOptionsTemp = options;
991
- this.debugLog('[%o]: 触发setState, 修改的值为%o, rowIndex=%o, options=%o', controlId, value, rowIndex, options);
993
+ this.debugLog("[%o]: 触发setState, 修改的值为%o, rowIndex=%o, options=%o", controlId, value, rowIndex, options);
992
994
  this.store.setState(controlId, value, rowIndex);
993
- this.debugLog('[%o]: setState完成, 修改的值为%o, rowIndex=%o', controlId, value, rowIndex);
995
+ this.debugLog("[%o]: setState完成, 修改的值为%o, rowIndex=%o", controlId, value, rowIndex);
994
996
  eventOptionsTemp = null;
995
997
  }
996
998
  },
997
999
  {
998
- /**
999
- * 向Store设置一组值,明细表必须全量赋值,并触发事件(触发事件是根据组件在页面中的顺序逐个触发)
1000
- * @param states
1000
+ /**
1001
+ * 向Store设置一组值,明细表必须全量赋值,并触发事件(触发事件是根据组件在页面中的顺序逐个触发)
1002
+ * @param states
1001
1003
  */ key: "setStates",
1002
1004
  value: function setStates(states, rowIndex, options) {
1003
1005
  var _this = this;
@@ -1024,11 +1026,11 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1024
1026
  }
1025
1027
  },
1026
1028
  {
1027
- /**
1028
- * 通过dataCode和fieldCode来获取控件的值
1029
- * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
1030
- * @param fieldCode 字段编码 - 控件绑定的数据项的编码
1031
- * @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
1029
+ /**
1030
+ * 通过dataCode和fieldCode来获取控件的值
1031
+ * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
1032
+ * @param fieldCode 字段编码 - 控件绑定的数据项的编码
1033
+ * @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
1032
1034
  * */ key: "getField",
1033
1035
  value: function getField(dataCode, fieldCode, rowIndex) {
1034
1036
  if (!fieldCode) {
@@ -1077,7 +1079,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1077
1079
  var _controlIdMapping_controlId_children_key_dataBind, _controlIdMapping_controlId_children_key, _controlIdMapping_controlId;
1078
1080
  var fieldCode = (_controlIdMapping_controlId = controlIdMapping[controlId]) === null || _controlIdMapping_controlId === void 0 ? void 0 : (_controlIdMapping_controlId_children_key = _controlIdMapping_controlId.children[key]) === null || _controlIdMapping_controlId_children_key === void 0 ? void 0 : (_controlIdMapping_controlId_children_key_dataBind = _controlIdMapping_controlId_children_key.dataBind) === null || _controlIdMapping_controlId_children_key_dataBind === void 0 ? void 0 : _controlIdMapping_controlId_children_key_dataBind.fieldCode;
1079
1081
  //未绑定字段的控件,直接抛弃
1080
- if (fieldCode !== '') {
1082
+ if (fieldCode !== "") {
1081
1083
  var _controlIdMapping_controlId1;
1082
1084
  if (fieldCode) {
1083
1085
  obj[fieldCode] = item[key];
@@ -1100,27 +1102,31 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1100
1102
  var _controlIdMapping_key2;
1101
1103
  obj[(_controlIdMapping_key2 = controlIdMapping[key]) === null || _controlIdMapping_key2 === void 0 ? void 0 : _controlIdMapping_key2.dataBind.fieldCode] = getFieldData[key];
1102
1104
  } else if ((_controlIdMapping_key1 = controlIdMapping[key]) === null || _controlIdMapping_key1 === void 0 ? void 0 : (_controlIdMapping_key_dataBind1 = _controlIdMapping_key1.dataBind) === null || _controlIdMapping_key_dataBind1 === void 0 ? void 0 : _controlIdMapping_key_dataBind1.dataCode) {
1103
- var _controlIdMapping_key3;
1104
- // 明细字表只循环一层明细子表未递归
1105
- obj[(_controlIdMapping_key3 = controlIdMapping[key]) === null || _controlIdMapping_key3 === void 0 ? void 0 : _controlIdMapping_key3.dataBind.dataCode] = getFieldData[key].map(function(item) {
1106
- var objChi = {};
1107
- for(var keyChi in item){
1108
- var _controlIdMapping_key_children_keyChi;
1109
- var fieldCode = (_controlIdMapping_key_children_keyChi = controlIdMapping[key].children[keyChi]) === null || _controlIdMapping_key_children_keyChi === void 0 ? void 0 : _controlIdMapping_key_children_keyChi.dataBind.fieldCode;
1110
- //未绑定字段的控件,直接抛弃
1111
- if (fieldCode !== '') {
1112
- if (fieldCode) {
1113
- objChi[fieldCode] = item[keyChi];
1114
- } else {
1115
- for(var keyChi1 in item[keyChi]){
1116
- var _controlIdMapping_key_children_keyChi1;
1117
- objChi[(_controlIdMapping_key_children_keyChi1 = controlIdMapping[key].children[keyChi]) === null || _controlIdMapping_key_children_keyChi1 === void 0 ? void 0 : _controlIdMapping_key_children_keyChi1.dataBind[keyChi1].fieldCode] = item[keyChi][keyChi1];
1105
+ if (!Array.isArray(getFieldData[key])) {
1106
+ // obj[controlIdMapping[key]?.dataBind.dataCode] = ''
1107
+ } else {
1108
+ var _controlIdMapping_key3, _getFieldData_key;
1109
+ // 明细字表只循环一层明细子表未递归
1110
+ obj[(_controlIdMapping_key3 = controlIdMapping[key]) === null || _controlIdMapping_key3 === void 0 ? void 0 : _controlIdMapping_key3.dataBind.dataCode] = (_getFieldData_key = getFieldData[key]) === null || _getFieldData_key === void 0 ? void 0 : _getFieldData_key.map(function(item) {
1111
+ var objChi = {};
1112
+ for(var keyChi in item){
1113
+ var _controlIdMapping_key_children_keyChi;
1114
+ var fieldCode = (_controlIdMapping_key_children_keyChi = controlIdMapping[key].children[keyChi]) === null || _controlIdMapping_key_children_keyChi === void 0 ? void 0 : _controlIdMapping_key_children_keyChi.dataBind.fieldCode;
1115
+ //未绑定字段的控件,直接抛弃
1116
+ if (fieldCode !== "") {
1117
+ if (fieldCode) {
1118
+ objChi[fieldCode] = item[keyChi];
1119
+ } else {
1120
+ for(var keyChi1 in item[keyChi]){
1121
+ var _controlIdMapping_key_children_keyChi1;
1122
+ objChi[(_controlIdMapping_key_children_keyChi1 = controlIdMapping[key].children[keyChi]) === null || _controlIdMapping_key_children_keyChi1 === void 0 ? void 0 : _controlIdMapping_key_children_keyChi1.dataBind[keyChi1].fieldCode] = item[keyChi][keyChi1];
1123
+ }
1118
1124
  }
1119
1125
  }
1120
1126
  }
1121
- }
1122
- return objChi;
1123
- });
1127
+ return objChi;
1128
+ });
1129
+ }
1124
1130
  } else if (controlIdMapping[key]) {
1125
1131
  // 兼容一个控件需要绑定多个字段的情况
1126
1132
  for(var keyChi in getFieldData[key]){
@@ -1139,13 +1145,13 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1139
1145
  }
1140
1146
  },
1141
1147
  {
1142
- /**
1143
- * 通过dataCode和fieldCode来设置控件的值
1144
- * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
1145
- * @param fieldCode 字段编码 - 控件绑定的数据项的编码
1146
- * @param value 修改的值
1147
- * @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
1148
- * @param options 触发事件携带的参数
1148
+ /**
1149
+ * 通过dataCode和fieldCode来设置控件的值
1150
+ * @param dataCode 模型编码 - 如果是主表的话就是主表的模型编码,明细子表的话就是子表的模型编码
1151
+ * @param fieldCode 字段编码 - 控件绑定的数据项的编码
1152
+ * @param value 修改的值
1153
+ * @param rowIndex 行下标 - 如果是明细子表中的控件需要提供
1154
+ * @param options 触发事件携带的参数
1149
1155
  * */ key: "setField",
1150
1156
  value: function setField(dataCode, fieldCode, value, rowIndex, options) {
1151
1157
  var dataBindMapping = this.getDataBindMapping(dataCode, fieldCode);
@@ -1173,12 +1179,12 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1173
1179
  }
1174
1180
  },
1175
1181
  {
1176
- /**
1177
- * 通过dataCode和 state来给一组控件赋值,并触发事件携带options
1178
- * @param dataCode 需要赋值的目标模型
1179
- * @param state 赋值对象,以fieldCode为key组成的对象
1180
- * @param rowIndex 行下标,给明细子表赋值时指定赋值某行
1181
- * @param options 触发事件携带的参数
1182
+ /**
1183
+ * 通过dataCode和 state来给一组控件赋值,并触发事件携带options
1184
+ * @param dataCode 需要赋值的目标模型
1185
+ * @param state 赋值对象,以fieldCode为key组成的对象
1186
+ * @param rowIndex 行下标,给明细子表赋值时指定赋值某行
1187
+ * @param options 触发事件携带的参数
1182
1188
  * */ key: "setFields",
1183
1189
  value: function setFields(dataCode, state, rowIndex, options) {
1184
1190
  var _this = this;
@@ -1219,10 +1225,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1219
1225
  }
1220
1226
  },
1221
1227
  {
1222
- /**
1223
- * 通过dataCode来将state转化为标准的state结构
1224
- * @param dataCode 需要转换的目标模型code
1225
- * @param state 值对象,以fieldCode为key组成的对象
1228
+ /**
1229
+ * 通过dataCode来将state转化为标准的state结构
1230
+ * @param dataCode 需要转换的目标模型code
1231
+ * @param state 值对象,以fieldCode为key组成的对象
1226
1232
  * */ key: "buildFields",
1227
1233
  value: function buildFields(dataCode, state) {
1228
1234
  var _this = this;
@@ -1263,10 +1269,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1263
1269
  }
1264
1270
  },
1265
1271
  {
1266
- /**
1267
- * 向Store设置一组值,并触发事件携带options
1268
- * @param dataSet
1269
- * @options 传递给关联事件中 EventPayload中的options,一般在plugin中监听使用
1272
+ /**
1273
+ * 向Store设置一组值,并触发事件携带options
1274
+ * @param dataSet
1275
+ * @options 传递给关联事件中 EventPayload中的options,一般在plugin中监听使用
1270
1276
  */ key: "setData",
1271
1277
  value: function setData(dataSet, options) {
1272
1278
  var _this = this;
@@ -1329,9 +1335,9 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1329
1335
  });
1330
1336
  newRow[fieldMapping.controlId] = objValue;
1331
1337
  }
1332
- } else if (fieldCode === 'uid' && row.uid !== undefined) {
1338
+ } else if (fieldCode === "uid" && row.uid !== undefined) {
1333
1339
  newRow.uid = row.uid;
1334
- } else if (fieldCode === 'virtualStore' && row.virtualStore !== undefined) {
1340
+ } else if (fieldCode === "virtualStore" && row.virtualStore !== undefined) {
1335
1341
  newRow.virtualStore = Object.freeze(row.virtualStore);
1336
1342
  }
1337
1343
  });
@@ -1383,7 +1389,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1383
1389
  var _newState_newMapping_controlId;
1384
1390
  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 : {});
1385
1391
  mappingKeys === null || mappingKeys === void 0 ? void 0 : mappingKeys.forEach(function(key) {
1386
- if (!mainStateKeys.includes(key) && key !== 'uid' && newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId]) {
1392
+ if (!mainStateKeys.includes(key) && key !== "uid" && newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId]) {
1387
1393
  if (Object.keys(newState).length) {
1388
1394
  Object.assign(newState[newMapping === null || newMapping === void 0 ? void 0 : newMapping.controlId], _define_property({}, key, mappingValue[key]));
1389
1395
  } else {
@@ -1404,19 +1410,19 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1404
1410
  }
1405
1411
  },
1406
1412
  {
1407
- /**
1408
- * 获取控件的dataBind
1409
- * @param controlId
1413
+ /**
1414
+ * 获取控件的dataBind
1415
+ * @param controlId
1410
1416
  * */ key: "getDataBind",
1411
1417
  value: function getDataBind(controlId) {
1412
1418
  return this.store.getDataBind(controlId);
1413
1419
  }
1414
1420
  },
1415
1421
  {
1416
- /**
1417
- * 获取组件实例,传入rowIndex代表获取明细表内的控件实例,rowIndex传入-1代表获取表头内的实例
1418
- * @param controlId
1419
- * @param rowIndex
1422
+ /**
1423
+ * 获取组件实例,传入rowIndex代表获取明细表内的控件实例,rowIndex传入-1代表获取表头内的实例
1424
+ * @param controlId
1425
+ * @param rowIndex
1420
1426
  */ key: "getInstance",
1421
1427
  value: function getInstance(controlId, rowIndex) {
1422
1428
  var instances = this.getInstances(controlId, rowIndex === -1);
@@ -1435,10 +1441,10 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1435
1441
  }
1436
1442
  },
1437
1443
  {
1438
- /**
1439
- * 获取组件实例,明细表中的组件将会得到数组, 第二个参数为(false/不传入)则获取到的是明细表内不包含表头内实例的所有控件实例,传入true则获取到包含表头内实例的所有控件实例,表头内实例永远在下标0的位置
1440
- * @param controlId
1441
- * @param header 明细表内是否获取表头的控件
1444
+ /**
1445
+ * 获取组件实例,明细表中的组件将会得到数组, 第二个参数为(false/不传入)则获取到的是明细表内不包含表头内实例的所有控件实例,传入true则获取到包含表头内实例的所有控件实例,表头内实例永远在下标0的位置
1446
+ * @param controlId
1447
+ * @param header 明细表内是否获取表头的控件
1442
1448
  */ // getInstances(
1443
1449
  // controlId?: string,
1444
1450
  // header: boolean = false
@@ -1525,14 +1531,14 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1525
1531
  value: function setInstance(instance, props, value, rowIndex) {
1526
1532
  var _this = this;
1527
1533
  try {
1528
- if (typeof instance === 'string' && rowIndex === -1) {
1534
+ if (typeof instance === "string" && rowIndex === -1) {
1529
1535
  //修改明细表整列属性的逻辑
1530
1536
  var instances = this.getInstances(instance, rowIndex === -1);
1531
1537
  instances.map(function(_instance) {
1532
1538
  if (_instance) {
1533
1539
  _this.debugLog("[%o]: 修改instance: %o的%o属性,修改的值为%o。", _instance.id, _instance, props, value);
1534
1540
  updateValueFromKeys(_instance.props, props, value);
1535
- _this.schemaEvent('schema-change', {
1541
+ _this.schemaEvent("schema-change", {
1536
1542
  instance: _instance,
1537
1543
  props: props,
1538
1544
  value: value,
@@ -1542,7 +1548,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1542
1548
  });
1543
1549
  } else {
1544
1550
  var _instance;
1545
- if (typeof instance === 'string') {
1551
+ if (typeof instance === "string") {
1546
1552
  _instance = this.getInstance(instance, rowIndex);
1547
1553
  } else {
1548
1554
  _instance = instance;
@@ -1552,7 +1558,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1552
1558
  }
1553
1559
  this.debugLog("[%o]: 修改instance: %o的%o属性,修改的值为%o。", _instance.id, _instance, props, value);
1554
1560
  updateValueFromKeys(_instance.props, props, value);
1555
- this.schemaEvent('schema-change', {
1561
+ this.schemaEvent("schema-change", {
1556
1562
  instance: _instance,
1557
1563
  props: props,
1558
1564
  value: value,
@@ -1614,27 +1620,27 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1614
1620
  },
1615
1621
  {
1616
1622
  key: "assertInstance",
1617
- value: /**
1618
- * 判断控件的类型,返回当前控件的正确类型
1623
+ value: /**
1624
+ * 判断控件的类型,返回当前控件的正确类型
1619
1625
  * */ function assertInstance(instance, types) {
1620
1626
  return isString(types) ? instance.type === types : types.includes(instance.type);
1621
1627
  }
1622
1628
  },
1623
1629
  {
1624
1630
  key: "assertInstanceIsCustomControl",
1625
- value: /**
1626
- * 判断控件或控件类型是一个自定义控件
1631
+ value: /**
1632
+ * 判断控件或控件类型是一个自定义控件
1627
1633
  * */ function assertInstanceIsCustomControl(instance) {
1628
1634
  return !isBuiltInControls(isString(instance) ? instance : instance.type);
1629
1635
  }
1630
1636
  },
1631
1637
  {
1632
1638
  key: "getInstanceRowIndex",
1633
- value: /**
1634
- * 获取控件在明细子表中的行下标,
1635
- * 如果控件在表头内,则返回-1
1636
- * 如果控件在表内,则返回行下标
1637
- * 如果控件不在明细表内,则返回undefined
1639
+ value: /**
1640
+ * 获取控件在明细子表中的行下标,
1641
+ * 如果控件在表头内,则返回-1
1642
+ * 如果控件在表内,则返回行下标
1643
+ * 如果控件不在明细表内,则返回undefined
1638
1644
  * */ // public getInstanceRowIndex(
1639
1645
  // instance: ControlRuntimeInstance<ControlsKeys> | RuntimeControl
1640
1646
  // ) {
@@ -1679,7 +1685,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1679
1685
  CONTROL_TYPE.SUBTABLE_COLUMN);
1680
1686
  if (isColumnChild) {
1681
1687
  var instanceList = this.runtime.instanceMap[instance.id];
1682
- if (Object.prototype.toString.call(instanceList) === '[object Array]') {
1688
+ if (Object.prototype.toString.call(instanceList) === "[object Array]") {
1683
1689
  var index = instanceList.findIndex(function(item) {
1684
1690
  return item === instance;
1685
1691
  });
@@ -1785,7 +1791,7 @@ var Engine = /*#__PURE__*/ function(Watcher) {
1785
1791
  key: "register",
1786
1792
  value: // 注册外部控件
1787
1793
  function register(control) {
1788
- return Runtime.register(control, 'Runtime');
1794
+ return Runtime.register(control, "Runtime");
1789
1795
  }
1790
1796
  },
1791
1797
  {