@byteluck-fe/model-driven-driven 2.5.0-beta.9 → 2.5.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.
@@ -1,21 +1,21 @@
1
- function _arrayLikeToArray(arr, len) {
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 _arrayWithHoles(arr) {
6
+ function _array_with_holes(arr) {
7
7
  if (Array.isArray(arr)) return arr;
8
8
  }
9
- function _arrayWithoutHoles(arr) {
10
- if (Array.isArray(arr)) return _arrayLikeToArray(arr);
9
+ function _array_without_holes(arr) {
10
+ if (Array.isArray(arr)) return _array_like_to_array(arr);
11
11
  }
12
- function _assertThisInitialized(self) {
12
+ function _assert_this_initialized(self) {
13
13
  if (self === void 0) {
14
14
  throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
15
15
  }
16
16
  return self;
17
17
  }
18
- function _classCallCheck(instance, Constructor) {
18
+ function _class_call_check(instance, Constructor) {
19
19
  if (!(instance instanceof Constructor)) {
20
20
  throw new TypeError("Cannot call a class as a function");
21
21
  }
@@ -29,12 +29,12 @@ function _defineProperties(target, props) {
29
29
  Object.defineProperty(target, descriptor.key, descriptor);
30
30
  }
31
31
  }
32
- function _createClass(Constructor, protoProps, staticProps) {
32
+ function _create_class(Constructor, protoProps, staticProps) {
33
33
  if (protoProps) _defineProperties(Constructor.prototype, protoProps);
34
34
  if (staticProps) _defineProperties(Constructor, staticProps);
35
35
  return Constructor;
36
36
  }
37
- function _defineProperty(obj, key, value) {
37
+ function _define_property(obj, key, value) {
38
38
  if (key in obj) {
39
39
  Object.defineProperty(obj, key, {
40
40
  value: value,
@@ -51,23 +51,23 @@ function _get(target, property, receiver) {
51
51
  if (typeof Reflect !== "undefined" && Reflect.get) {
52
52
  _get = Reflect.get;
53
53
  } else {
54
- _get = function _get(target, property, receiver) {
55
- var base = _superPropBase(target, property);
54
+ _get = function get(target, property, receiver) {
55
+ var base = _super_prop_base(target, property);
56
56
  if (!base) return;
57
57
  var desc = Object.getOwnPropertyDescriptor(base, property);
58
58
  if (desc.get) {
59
- return desc.get.call(receiver);
59
+ return desc.get.call(receiver || target);
60
60
  }
61
61
  return desc.value;
62
62
  };
63
63
  }
64
64
  return _get(target, property, receiver || target);
65
65
  }
66
- function _getPrototypeOf(o) {
67
- _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
66
+ function _get_prototype_of(o) {
67
+ _get_prototype_of = Object.setPrototypeOf ? Object.getPrototypeOf : function getPrototypeOf(o) {
68
68
  return o.__proto__ || Object.getPrototypeOf(o);
69
69
  };
70
- return _getPrototypeOf(o);
70
+ return _get_prototype_of(o);
71
71
  }
72
72
  function _inherits(subClass, superClass) {
73
73
  if (typeof superClass !== "function" && superClass !== null) {
@@ -80,12 +80,12 @@ function _inherits(subClass, superClass) {
80
80
  configurable: true
81
81
  }
82
82
  });
83
- if (superClass) _setPrototypeOf(subClass, superClass);
83
+ if (superClass) _set_prototype_of(subClass, superClass);
84
84
  }
85
- function _iterableToArray(iter) {
85
+ function _iterable_to_array(iter) {
86
86
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
87
87
  }
88
- function _iterableToArrayLimit(arr, i) {
88
+ function _iterable_to_array_limit(arr, i) {
89
89
  var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
90
90
  if (_i == null) return;
91
91
  var _arr = [];
@@ -109,13 +109,13 @@ function _iterableToArrayLimit(arr, i) {
109
109
  }
110
110
  return _arr;
111
111
  }
112
- function _nonIterableRest() {
112
+ function _non_iterable_rest() {
113
113
  throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
114
114
  }
115
- function _nonIterableSpread() {
115
+ function _non_iterable_spread() {
116
116
  throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
117
117
  }
118
- function _objectSpread(target) {
118
+ function _object_spread(target) {
119
119
  for(var i = 1; i < arguments.length; i++){
120
120
  var source = arguments[i] != null ? arguments[i] : {};
121
121
  var ownKeys = Object.keys(source);
@@ -125,50 +125,50 @@ function _objectSpread(target) {
125
125
  }));
126
126
  }
127
127
  ownKeys.forEach(function(key) {
128
- _defineProperty(target, key, source[key]);
128
+ _define_property(target, key, source[key]);
129
129
  });
130
130
  }
131
131
  return target;
132
132
  }
133
- function _possibleConstructorReturn(self, call) {
134
- if (call && (_typeof(call) === "object" || typeof call === "function")) {
133
+ function _possible_constructor_return(self, call) {
134
+ if (call && (_type_of(call) === "object" || typeof call === "function")) {
135
135
  return call;
136
136
  }
137
- return _assertThisInitialized(self);
137
+ return _assert_this_initialized(self);
138
138
  }
139
- function _setPrototypeOf(o, p) {
140
- _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {
139
+ function _set_prototype_of(o, p) {
140
+ _set_prototype_of = Object.setPrototypeOf || function setPrototypeOf(o, p) {
141
141
  o.__proto__ = p;
142
142
  return o;
143
143
  };
144
- return _setPrototypeOf(o, p);
144
+ return _set_prototype_of(o, p);
145
145
  }
146
- function _slicedToArray(arr, i) {
147
- return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
146
+ function _sliced_to_array(arr, i) {
147
+ return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
148
148
  }
149
- function _superPropBase(object, property) {
149
+ function _super_prop_base(object, property) {
150
150
  while(!Object.prototype.hasOwnProperty.call(object, property)){
151
- object = _getPrototypeOf(object);
151
+ object = _get_prototype_of(object);
152
152
  if (object === null) break;
153
153
  }
154
154
  return object;
155
155
  }
156
- function _toConsumableArray(arr) {
157
- return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
156
+ function _to_consumable_array(arr) {
157
+ return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
158
158
  }
159
- var _typeof = function(obj) {
159
+ function _type_of(obj) {
160
160
  "@swc/helpers - typeof";
161
161
  return obj && typeof Symbol !== "undefined" && obj.constructor === Symbol ? "symbol" : typeof obj;
162
- };
163
- function _unsupportedIterableToArray(o, minLen) {
162
+ }
163
+ function _unsupported_iterable_to_array(o, minLen) {
164
164
  if (!o) return;
165
- if (typeof o === "string") return _arrayLikeToArray(o, minLen);
165
+ if (typeof o === "string") return _array_like_to_array(o, minLen);
166
166
  var n = Object.prototype.toString.call(o).slice(8, -1);
167
167
  if (n === "Object" && o.constructor) n = o.constructor.name;
168
168
  if (n === "Map" || n === "Set") return Array.from(n);
169
- if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
169
+ if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
170
170
  }
171
- function _isNativeReflectConstruct() {
171
+ function _is_native_reflect_construct() {
172
172
  if (typeof Reflect === "undefined" || !Reflect.construct) return false;
173
173
  if (Reflect.construct.sham) return false;
174
174
  if (typeof Proxy === "function") return true;
@@ -179,51 +179,68 @@ function _isNativeReflectConstruct() {
179
179
  return false;
180
180
  }
181
181
  }
182
- function _createSuper(Derived) {
183
- var hasNativeReflectConstruct = _isNativeReflectConstruct();
182
+ function _create_super(Derived) {
183
+ var hasNativeReflectConstruct = _is_native_reflect_construct();
184
184
  return function _createSuperInternal() {
185
- var Super = _getPrototypeOf(Derived), result;
185
+ var Super = _get_prototype_of(Derived), result;
186
186
  if (hasNativeReflectConstruct) {
187
- var NewTarget = _getPrototypeOf(this).constructor;
187
+ var NewTarget = _get_prototype_of(this).constructor;
188
188
  result = Reflect.construct(Super, arguments, NewTarget);
189
189
  } else {
190
190
  result = Super.apply(this, arguments);
191
191
  }
192
- return _possibleConstructorReturn(this, result);
192
+ return _possible_constructor_return(this, result);
193
193
  };
194
194
  }
195
- import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from '@byteluck-fe/model-driven-shared';
196
- import { findInstanceDataScopeParent, Store } from './Store';
197
- import { Designer } from './Designer';
198
- import EventLogic from './EventLogic';
199
- import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from './utils';
200
- import { Group, initSettings, Tab } from '@byteluck-fe/model-driven-settings';
195
+ import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
196
+ import { findInstanceDataScopeParent, Store } from "./Store";
197
+ import { Designer } from "./Designer";
198
+ import EventLogic from "./EventLogic";
199
+ import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from "./utils";
200
+ import { Group, initSettings, Tab } from "@byteluck-fe/model-driven-settings";
201
201
  // 当前正在注册的插件名称
202
- var applyingPluginName = '';
203
- var Driven = /**
202
+ var applyingPluginName = "";
203
+ /**
204
204
  * 设计器驱动
205
- * */ /*#__PURE__*/ function(Watcher1) {
205
+ * */ var Driven = /*#__PURE__*/ function(Watcher) {
206
206
  "use strict";
207
- _inherits(Driven, Watcher1);
208
- var _super = _createSuper(Driven);
207
+ _inherits(Driven, Watcher);
208
+ var _super = _create_super(Driven);
209
209
  function Driven(options) {
210
- _classCallCheck(this, Driven);
210
+ _class_call_check(this, Driven);
211
211
  var _this;
212
212
  _this = _super.call(this);
213
- _this.isMounted = false;
214
- _this.id = genNonDuplicateId(8);
215
- _this.__pluginsApplied = false;
213
+ _define_property(_assert_this_initialized(_this), "mode", void 0);
214
+ _define_property(_assert_this_initialized(_this), "isMounted", false);
215
+ _define_property(_assert_this_initialized(_this), "id", genNonDuplicateId(8));
216
+ /**
217
+ * 控件可选的事件
218
+ * */ _define_property(_assert_this_initialized(_this), "eventLogic", void 0);
219
+ /**
220
+ * 处理数据存储,存放模型等
221
+ * */ _define_property(_assert_this_initialized(_this), "store", void 0);
222
+ /**
223
+ * 额外参数存储
224
+ */ _define_property(_assert_this_initialized(_this), "externalParams", void 0);
225
+ /**
226
+ * 处理instance,和schema存储
227
+ * */ _define_property(_assert_this_initialized(_this), "designer", void 0);
228
+ /**
229
+ * 插件数组
230
+ * */ _define_property(_assert_this_initialized(_this), "__plugins", void 0);
231
+ _define_property(_assert_this_initialized(_this), "__pluginsApplied", false);
232
+ _define_property(_assert_this_initialized(_this), "$options", void 0);
216
233
  // TODO 拿到schema
217
- _this.getSchema = toSchema;
234
+ _define_property(_assert_this_initialized(_this), "getSchema", toSchema);
218
235
  // TODO 拿到model_bind_info_list
219
- _this.getModelBindInfoList = getModelBindInfoList;
236
+ _define_property(_assert_this_initialized(_this), "getModelBindInfoList", getModelBindInfoList);
220
237
  // TODO 拿到permission_controls
221
- _this.generatePermissions = generatePermissions;
238
+ _define_property(_assert_this_initialized(_this), "generatePermissions", generatePermissions);
222
239
  _this.$options = Object.freeze(options);
223
- var _$options = _this.$options, _autoMount = _$options.autoMount, autoMount = _autoMount === void 0 ? false : _autoMount, tmp = _$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _$options.schema, _mode = _$options.mode, mode = _mode === void 0 ? 'form' : _mode, tmp1 = _$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
240
+ var _this_$options = _this.$options, _this_$options_autoMount = _this_$options.autoMount, autoMount = _this_$options_autoMount === void 0 ? false : _this_$options_autoMount, tmp = _this_$options.Designer, DesignerClass = tmp === void 0 ? Designer : tmp, schema = _this_$options.schema, _this_$options_mode = _this_$options.mode, mode = _this_$options_mode === void 0 ? "form" : _this_$options_mode, tmp1 = _this_$options.store, storeOptions = tmp1 === void 0 ? {} : tmp1;
224
241
  _this.eventLogic = new EventLogic();
225
242
  _this.designer = new DesignerClass();
226
- _this.store = new Store(_objectSpread({
243
+ _this.store = new Store(_object_spread({
227
244
  instance: _this.designer.createControl(Array.isArray(schema) ? schema : [
228
245
  schema
229
246
  ])
@@ -232,12 +249,12 @@ var Driven = /**
232
249
  autoMount && _this.mount();
233
250
  return _this;
234
251
  }
235
- _createClass(Driven, [
252
+ _create_class(Driven, [
236
253
  {
237
254
  key: "mount",
238
255
  value: // 挂载
239
256
  function mount() {
240
- var _$options = this.$options, _plugins = _$options.plugins, plugins = _plugins === void 0 ? [] : _plugins;
257
+ var _this_$options = this.$options, _this_$options_plugins = _this_$options.plugins, plugins = _this_$options_plugins === void 0 ? [] : _this_$options_plugins;
241
258
  this.__plugins = plugins;
242
259
  this.applyPlugins();
243
260
  this.isMounted = true;
@@ -259,10 +276,10 @@ var Driven = /**
259
276
  if (this.__pluginsApplied) return;
260
277
  this.__plugins.forEach(function(plugin) {
261
278
  try {
262
- var _pluginName;
263
- applyingPluginName = (_pluginName = plugin.pluginName) !== null && _pluginName !== void 0 ? _pluginName : plugin.constructor.name;
279
+ var _plugin_pluginName;
280
+ applyingPluginName = (_plugin_pluginName = plugin.pluginName) !== null && _plugin_pluginName !== void 0 ? _plugin_pluginName : plugin.constructor.name;
264
281
  plugin.apply(_this);
265
- applyingPluginName = '';
282
+ applyingPluginName = "";
266
283
  } catch (e) {
267
284
  error("".concat(applyingPluginName || plugin.constructor.name, " Plugin apply Error \n ").concat(e));
268
285
  }
@@ -276,13 +293,13 @@ var Driven = /**
276
293
  for(var _len = arguments.length, payload = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
277
294
  payload[_key - 1] = arguments[_key];
278
295
  }
279
- return _get(_getPrototypeOf(Driven.prototype), "emit", this).call(this, key, payload);
296
+ return _get(_get_prototype_of(Driven.prototype), "emit", this).call(this, key, payload);
280
297
  }
281
298
  },
282
299
  {
283
300
  key: "on",
284
301
  value: function on(key, callback) {
285
- return _get(_getPrototypeOf(Driven.prototype), "on", this).call(this, key, callback);
302
+ return _get(_get_prototype_of(Driven.prototype), "on", this).call(this, key, callback);
286
303
  }
287
304
  },
288
305
  {
@@ -309,7 +326,7 @@ var Driven = /**
309
326
  return;
310
327
  }
311
328
  this.setSelectedInstanceSetting();
312
- this.emit('select', {
329
+ this.emit("select", {
313
330
  instance: instance
314
331
  });
315
332
  }
@@ -317,7 +334,7 @@ var Driven = /**
317
334
  {
318
335
  key: "setSelectedInstanceSetting",
319
336
  value: function setSelectedInstanceSetting() {
320
- var ref;
337
+ var _instance_parent;
321
338
  var instance = this.store.selected;
322
339
  if (!instance) {
323
340
  return;
@@ -325,13 +342,13 @@ var Driven = /**
325
342
  var setting = this.getControlSetting(instance.type);
326
343
  // console.log('iswrap:', instance.parent?.controlType, instance.parent)
327
344
  // if (instance.parent instanceof DesignerWrapControl) {
328
- if (((ref = instance.parent) === null || ref === void 0 ? void 0 : ref.controlType) === CONTROL_BASE_TYPE.WRAP) {
329
- var ref1;
330
- var wrapSetting = this.getControlSetting((ref1 = instance.parent) === null || ref1 === void 0 ? void 0 : ref1.type);
345
+ if (((_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType) === CONTROL_BASE_TYPE.WRAP) {
346
+ var _instance_parent1;
347
+ var wrapSetting = this.getControlSetting((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.type);
331
348
  setting = this.concatSetting(setting, wrapSetting, instance.parent.id);
332
349
  }
333
350
  this.store.setSelectInstanceSettings(setting);
334
- this.callSelectedEffect('');
351
+ this.callSelectedEffect("");
335
352
  // 选中触发scopeEffect
336
353
  var payload = {
337
354
  from: null,
@@ -345,14 +362,14 @@ var Driven = /**
345
362
  {
346
363
  key: "concatSetting",
347
364
  value: function concatSetting(settings, otherSettings, settingFromId) {
348
- var ref, ref2, ref3, ref4;
349
- var result1 = settings;
365
+ var _this = this;
366
+ var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
367
+ var result = settings;
350
368
  // tab
351
- if (((ref = settings[0]) === null || ref === void 0 ? void 0 : ref.type) === 'tab' && ((ref2 = otherSettings[0]) === null || ref2 === void 0 ? void 0 : ref2.type) === 'tab') {
352
- var _this = this;
369
+ if (((_settings_ = settings[0]) === null || _settings_ === void 0 ? void 0 : _settings_.type) === "tab" && ((_otherSettings_ = otherSettings[0]) === null || _otherSettings_ === void 0 ? void 0 : _otherSettings_.type) === "tab") {
353
370
  var tabSettings = settings;
354
371
  var otherTabSettings = otherSettings.slice(0);
355
- result1 = tabSettings.map(function(tab, index) {
372
+ result = tabSettings.map(function(tab, index) {
356
373
  var result = new Tab(tab);
357
374
  var otherTabIndex = otherTabSettings.findIndex(function(item) {
358
375
  return item.title === tab.title;
@@ -362,25 +379,24 @@ var Driven = /**
362
379
  }
363
380
  var otherTab = otherTabSettings.splice(otherTabIndex, 1)[0];
364
381
  if (otherTab) {
365
- result.items = _toConsumableArray(_this.formatGroupSetting(otherTab.items, settingFromId)).concat(_toConsumableArray(result.items));
382
+ result.items = _to_consumable_array(_this.formatGroupSetting(otherTab.items, settingFromId)).concat(_to_consumable_array(result.items));
366
383
  }
367
384
  return result;
368
385
  });
369
386
  if (otherTabSettings.length) {
370
- var _this1 = this;
371
- result1 = _toConsumableArray(result1).concat(_toConsumableArray(otherTabSettings.map(function(item) {
372
- return _this1.formatGroupSetting(item, settingFromId);
387
+ result = _to_consumable_array(result).concat(_to_consumable_array(otherTabSettings.map(function(item) {
388
+ return _this.formatGroupSetting(item, settingFromId);
373
389
  })));
374
390
  }
375
391
  // group
376
- } else if (((ref3 = settings[0]) === null || ref3 === void 0 ? void 0 : ref3.type) === 'group' && ((ref4 = otherSettings[0]) === null || ref4 === void 0 ? void 0 : ref4.type) === 'group') {
392
+ } else if (((_settings_1 = settings[0]) === null || _settings_1 === void 0 ? void 0 : _settings_1.type) === "group" && ((_otherSettings_1 = otherSettings[0]) === null || _otherSettings_1 === void 0 ? void 0 : _otherSettings_1.type) === "group") {
377
393
  var groupSettings = settings;
378
394
  var otherGroupSettings = otherSettings;
379
- result1 = _toConsumableArray(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_toConsumableArray(groupSettings));
395
+ result = _to_consumable_array(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_to_consumable_array(groupSettings));
380
396
  } else {
381
397
  // 一个是tab,一个是group,暂时不支持
382
398
  }
383
- return result1;
399
+ return result;
384
400
  }
385
401
  },
386
402
  {
@@ -405,8 +421,8 @@ var Driven = /**
405
421
  for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
406
422
  args[_key] = arguments[_key];
407
423
  }
408
- var _designer;
409
- return (_designer = this.designer).registerControlConfig.apply(_designer, _toConsumableArray(args));
424
+ var _this_designer;
425
+ return (_this_designer = this.designer).registerControlConfig.apply(_this_designer, _to_consumable_array(args));
410
426
  }
411
427
  },
412
428
  {
@@ -440,7 +456,7 @@ var Driven = /**
440
456
  key: "setSelectedFieldItem",
441
457
  value: function setSelectedFieldItem(fieldItem) {
442
458
  this.store.setSelectedFieldItem(fieldItem);
443
- this.callSelectedEffect('dataBind', {
459
+ this.callSelectedEffect("dataBind", {
444
460
  fieldItem: fieldItem
445
461
  });
446
462
  }
@@ -459,7 +475,7 @@ var Driven = /**
459
475
  key: "moveEnd",
460
476
  value: function moveEnd() {
461
477
  var instance = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : this.store.movingInstance;
462
- var ref;
478
+ var _this_store_selected;
463
479
  if (instance === null) return;
464
480
  var _instance = this.getInstance(instance);
465
481
  if (!_instance) return;
@@ -473,7 +489,7 @@ var Driven = /**
473
489
  var newParent = _instance.parent;
474
490
  // 移动之后清空movingInstance
475
491
  this.store.setMovingInstance(null);
476
- if (_instance.id !== ((ref = this.store.selected) === null || ref === void 0 ? void 0 : ref.id)) {
492
+ if (_instance.id !== ((_this_store_selected = this.store.selected) === null || _this_store_selected === void 0 ? void 0 : _this_store_selected.id)) {
477
493
  this.selectInstance(_instance);
478
494
  } else {
479
495
  this.store.setSelectInstance(_instance);
@@ -488,9 +504,9 @@ var Driven = /**
488
504
  };
489
505
  this.callSelectedScopeEffect(payload);
490
506
  if (oldParent) {
491
- this.emit('moved', _objectSpread({}, payload));
507
+ this.emit("moved", _object_spread({}, payload));
492
508
  } else {
493
- this.emit('joined', _objectSpread({}, payload));
509
+ this.emit("joined", _object_spread({}, payload));
494
510
  }
495
511
  }
496
512
  },
@@ -507,7 +523,7 @@ var Driven = /**
507
523
  // return instanceId
508
524
  // }
509
525
  // return this.store.instanceIdMap.get(instanceId)
510
- if (typeof instanceId === 'string') {
526
+ if (typeof instanceId === "string") {
511
527
  return this.store.instanceIdMap.get(instanceId);
512
528
  }
513
529
  return instanceId;
@@ -544,19 +560,19 @@ var Driven = /**
544
560
  {
545
561
  key: "updateInstancePropValue",
546
562
  value: function updateInstancePropValue(instance, propName, value, payload) {
547
- var ref;
563
+ var _this_store_selected;
548
564
  var result = updateValueFromKeys(instance.props, propName, value);
549
565
  if (!result) {
550
566
  return;
551
567
  }
552
568
  // 修改dataBind的时候要更新 fieldCodeMap
553
- if (propName.startsWith('dataBind')) {
569
+ if (propName.startsWith("dataBind")) {
554
570
  this.store.updateDataFieldCodeMap(instance);
555
571
  }
556
- if (instance.id === ((ref = this.store.selected) === null || ref === void 0 ? void 0 : ref.id)) {
572
+ if (instance.id === ((_this_store_selected = this.store.selected) === null || _this_store_selected === void 0 ? void 0 : _this_store_selected.id)) {
557
573
  this.callSelectedEffect(propName, payload);
558
574
  }
559
- this.emit('updated', {
575
+ this.emit("updated", {
560
576
  instance: instance,
561
577
  propName: propName,
562
578
  value: value
@@ -566,11 +582,11 @@ var Driven = /**
566
582
  {
567
583
  key: "updateInstanceProps",
568
584
  value: function updateInstanceProps(instance, props, payload) {
569
- var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : '';
585
+ var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "";
570
586
  var _this = this;
571
587
  Object.entries(props).forEach(function(param) {
572
- var _param = _slicedToArray(param, 2), key = _param[0], value = _param[1];
573
- var propName = "".concat(prevKey ? prevKey + '.' : '').concat(key);
588
+ var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
589
+ var propName = "".concat(prevKey ? prevKey + "." : "").concat(key);
574
590
  if (isObject(value)) {
575
591
  _this.updateInstanceProps(instance, value, payload, propName);
576
592
  } else {
@@ -606,7 +622,7 @@ var Driven = /**
606
622
  });
607
623
  index > -1 && parentList.splice(index, 1);
608
624
  this.store.getFlatInstances();
609
- this.emit('removed', {
625
+ this.emit("removed", {
610
626
  instance: instance,
611
627
  index: index,
612
628
  parent: parent
@@ -684,8 +700,8 @@ var Driven = /**
684
700
  for(var _len = arguments.length, arg = new Array(_len), _key = 0; _key < _len; _key++){
685
701
  arg[_key] = arguments[_key];
686
702
  }
687
- var _designer;
688
- (_designer = this.designer).registerControl.apply(_designer, _toConsumableArray(arg));
703
+ var _this_designer;
704
+ (_this_designer = this.designer).registerControl.apply(_this_designer, _to_consumable_array(arg));
689
705
  return this;
690
706
  }
691
707
  },
@@ -731,7 +747,7 @@ var Driven = /**
731
747
  var payload = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
732
748
  var _this = this;
733
749
  this.store.selectedInstanceSettingItems.forEach(function(setting) {
734
- setting.callEffect(effectKey, _this, _objectSpread({
750
+ setting.callEffect(effectKey, _this, _object_spread({
735
751
  control: _this.store.selected
736
752
  }, payload));
737
753
  });
@@ -743,7 +759,7 @@ var Driven = /**
743
759
  var payload = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
744
760
  var _this = this;
745
761
  this.store.selectedInstanceSettingItems.forEach(function(setting) {
746
- setting.callScopeEffect(_this, _objectSpread({
762
+ setting.callScopeEffect(_this, _object_spread({
747
763
  control: _this.store.selected
748
764
  }, payload));
749
765
  });
@@ -758,7 +774,7 @@ var Driven = /**
758
774
  arg[_key] = arguments[_key];
759
775
  }
760
776
  var _Designer;
761
- (_Designer = Designer).register.apply(_Designer, _toConsumableArray(arg));
777
+ (_Designer = Designer).register.apply(_Designer, _to_consumable_array(arg));
762
778
  return this;
763
779
  }
764
780
  },
@@ -771,5 +787,7 @@ var Driven = /**
771
787
  ]);
772
788
  return Driven;
773
789
  }(Watcher);
774
- Driven.EventLogic = EventLogic;
790
+ /**
791
+ * 控件事件定义
792
+ * */ _define_property(Driven, "EventLogic", EventLogic);
775
793
  export { Driven };
@@ -1,2 +1,2 @@
1
- import { EventLogic } from '@byteluck-fe/model-driven-shared';
1
+ import { EventLogic } from "@byteluck-fe/model-driven-shared";
2
2
  export default EventLogic;
@@ -1,10 +1,10 @@
1
- function _classCallCheck(instance, Constructor) {
1
+ function _class_call_check(instance, Constructor) {
2
2
  if (!(instance instanceof Constructor)) {
3
3
  throw new TypeError("Cannot call a class as a function");
4
4
  }
5
5
  }
6
6
  var Plugin = function Plugin() {
7
7
  "use strict";
8
- _classCallCheck(this, Plugin);
8
+ _class_call_check(this, Plugin);
9
9
  };
10
10
  export { Plugin };