@byteluck-fe/model-driven-driven 2.7.0-alpha.3 → 2.7.0-alpha.31
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/Builder.js +6 -6
- package/dist/esm/Designer.js +50 -50
- package/dist/esm/Driven.js +98 -78
- package/dist/esm/Plugin.js +2 -2
- package/dist/esm/Store.js +49 -50
- package/dist/esm/designerUtils.js +3 -0
- package/dist/esm/utils.js +30 -28
- package/dist/index.umd.js +3 -3
- package/dist/types/Driven.d.ts +4 -4
- package/dist/types/designerUtils.d.ts +1 -0
- package/package.json +6 -6
package/dist/esm/Driven.js
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
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
|
|
10
|
-
if (Array.isArray(arr)) return
|
|
9
|
+
function _array_without_holes(arr) {
|
|
10
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
11
11
|
}
|
|
12
|
-
function
|
|
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
|
|
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
|
|
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
|
|
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
|
|
55
|
-
var base =
|
|
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
|
|
67
|
-
|
|
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
|
|
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)
|
|
83
|
+
if (superClass) _set_prototype_of(subClass, superClass);
|
|
84
84
|
}
|
|
85
|
-
function
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
128
|
+
_define_property(target, key, source[key]);
|
|
129
129
|
});
|
|
130
130
|
}
|
|
131
131
|
return target;
|
|
132
132
|
}
|
|
133
|
-
function
|
|
134
|
-
if (call && (
|
|
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
|
|
137
|
+
return _assert_this_initialized(self);
|
|
138
138
|
}
|
|
139
|
-
function
|
|
140
|
-
|
|
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
|
|
144
|
+
return _set_prototype_of(o, p);
|
|
145
145
|
}
|
|
146
|
-
function
|
|
147
|
-
return
|
|
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
|
|
149
|
+
function _super_prop_base(object, property) {
|
|
150
150
|
while(!Object.prototype.hasOwnProperty.call(object, property)){
|
|
151
|
-
object =
|
|
151
|
+
object = _get_prototype_of(object);
|
|
152
152
|
if (object === null) break;
|
|
153
153
|
}
|
|
154
154
|
return object;
|
|
155
155
|
}
|
|
156
|
-
function
|
|
157
|
-
return
|
|
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
|
-
|
|
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
|
|
162
|
+
}
|
|
163
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
164
164
|
if (!o) return;
|
|
165
|
-
if (typeof o === "string") return
|
|
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
|
|
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
|
|
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,17 +179,17 @@ function _isNativeReflectConstruct() {
|
|
|
179
179
|
return false;
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
|
-
function
|
|
183
|
-
var hasNativeReflectConstruct =
|
|
182
|
+
function _create_super(Derived) {
|
|
183
|
+
var hasNativeReflectConstruct = _is_native_reflect_construct();
|
|
184
184
|
return function _createSuperInternal() {
|
|
185
|
-
var Super =
|
|
185
|
+
var Super = _get_prototype_of(Derived), result;
|
|
186
186
|
if (hasNativeReflectConstruct) {
|
|
187
|
-
var NewTarget =
|
|
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
|
|
192
|
+
return _possible_constructor_return(this, result);
|
|
193
193
|
};
|
|
194
194
|
}
|
|
195
195
|
import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from "@byteluck-fe/model-driven-shared";
|
|
@@ -205,42 +205,42 @@ var applyingPluginName = "";
|
|
|
205
205
|
* */ var Driven = /*#__PURE__*/ function(Watcher) {
|
|
206
206
|
"use strict";
|
|
207
207
|
_inherits(Driven, Watcher);
|
|
208
|
-
var _super =
|
|
208
|
+
var _super = _create_super(Driven);
|
|
209
209
|
function Driven(options) {
|
|
210
|
-
|
|
210
|
+
_class_call_check(this, Driven);
|
|
211
211
|
var _this;
|
|
212
212
|
_this = _super.call(this);
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
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
216
|
/**
|
|
217
217
|
* 控件可选的事件
|
|
218
|
-
* */
|
|
218
|
+
* */ _define_property(_assert_this_initialized(_this), "eventLogic", void 0);
|
|
219
219
|
/**
|
|
220
220
|
* 处理数据存储,存放模型等
|
|
221
|
-
* */
|
|
221
|
+
* */ _define_property(_assert_this_initialized(_this), "store", void 0);
|
|
222
222
|
/**
|
|
223
223
|
* 额外参数存储
|
|
224
|
-
*/
|
|
224
|
+
*/ _define_property(_assert_this_initialized(_this), "externalParams", void 0);
|
|
225
225
|
/**
|
|
226
226
|
* 处理instance,和schema存储
|
|
227
|
-
* */
|
|
227
|
+
* */ _define_property(_assert_this_initialized(_this), "designer", void 0);
|
|
228
228
|
/**
|
|
229
229
|
* 插件数组
|
|
230
|
-
* */
|
|
231
|
-
|
|
232
|
-
|
|
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);
|
|
233
233
|
// TODO 拿到schema
|
|
234
|
-
|
|
234
|
+
_define_property(_assert_this_initialized(_this), "getSchema", toSchema);
|
|
235
235
|
// TODO 拿到model_bind_info_list
|
|
236
|
-
|
|
236
|
+
_define_property(_assert_this_initialized(_this), "getModelBindInfoList", getModelBindInfoList);
|
|
237
237
|
// TODO 拿到permission_controls
|
|
238
|
-
|
|
238
|
+
_define_property(_assert_this_initialized(_this), "generatePermissions", generatePermissions);
|
|
239
239
|
_this.$options = Object.freeze(options);
|
|
240
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;
|
|
241
241
|
_this.eventLogic = new EventLogic();
|
|
242
242
|
_this.designer = new DesignerClass();
|
|
243
|
-
_this.store = new Store(
|
|
243
|
+
_this.store = new Store(_object_spread({
|
|
244
244
|
instance: _this.designer.createControl(Array.isArray(schema) ? schema : [
|
|
245
245
|
schema
|
|
246
246
|
])
|
|
@@ -249,7 +249,7 @@ var applyingPluginName = "";
|
|
|
249
249
|
autoMount && _this.mount();
|
|
250
250
|
return _this;
|
|
251
251
|
}
|
|
252
|
-
|
|
252
|
+
_create_class(Driven, [
|
|
253
253
|
{
|
|
254
254
|
key: "mount",
|
|
255
255
|
value: // 挂载
|
|
@@ -293,13 +293,13 @@ var applyingPluginName = "";
|
|
|
293
293
|
for(var _len = arguments.length, payload = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++){
|
|
294
294
|
payload[_key - 1] = arguments[_key];
|
|
295
295
|
}
|
|
296
|
-
return _get(
|
|
296
|
+
return _get(_get_prototype_of(Driven.prototype), "emit", this).call(this, key, payload);
|
|
297
297
|
}
|
|
298
298
|
},
|
|
299
299
|
{
|
|
300
300
|
key: "on",
|
|
301
301
|
value: function on(key, callback) {
|
|
302
|
-
return _get(
|
|
302
|
+
return _get(_get_prototype_of(Driven.prototype), "on", this).call(this, key, callback);
|
|
303
303
|
}
|
|
304
304
|
},
|
|
305
305
|
{
|
|
@@ -342,6 +342,7 @@ var applyingPluginName = "";
|
|
|
342
342
|
var setting = this.getControlSetting(instance.type);
|
|
343
343
|
// console.log('iswrap:', instance.parent?.controlType, instance.parent)
|
|
344
344
|
// if (instance.parent instanceof DesignerWrapControl) {
|
|
345
|
+
// 如果父控件为自定义控件wrapper
|
|
345
346
|
if (((_instance_parent = instance.parent) === null || _instance_parent === void 0 ? void 0 : _instance_parent.controlType) === CONTROL_BASE_TYPE.WRAP) {
|
|
346
347
|
var _instance_parent1;
|
|
347
348
|
var wrapSetting = this.getControlSetting((_instance_parent1 = instance.parent) === null || _instance_parent1 === void 0 ? void 0 : _instance_parent1.type);
|
|
@@ -363,7 +364,7 @@ var applyingPluginName = "";
|
|
|
363
364
|
key: "concatSetting",
|
|
364
365
|
value: function concatSetting(settings, otherSettings, settingFromId) {
|
|
365
366
|
var _this = this;
|
|
366
|
-
var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
|
|
367
|
+
var _settings_, _otherSettings_, _settings_1, _otherSettings_1, _settings_2, _otherSettings_2, _settings_3, _otherSettings_3;
|
|
367
368
|
var result = settings;
|
|
368
369
|
// tab
|
|
369
370
|
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") {
|
|
@@ -379,12 +380,12 @@ var applyingPluginName = "";
|
|
|
379
380
|
}
|
|
380
381
|
var otherTab = otherTabSettings.splice(otherTabIndex, 1)[0];
|
|
381
382
|
if (otherTab) {
|
|
382
|
-
result.items =
|
|
383
|
+
result.items = _to_consumable_array(_this.formatGroupSetting(otherTab.items, settingFromId)).concat(_to_consumable_array(result.items));
|
|
383
384
|
}
|
|
384
385
|
return result;
|
|
385
386
|
});
|
|
386
387
|
if (otherTabSettings.length) {
|
|
387
|
-
result =
|
|
388
|
+
result = _to_consumable_array(result).concat(_to_consumable_array(otherTabSettings.map(function(item) {
|
|
388
389
|
return _this.formatGroupSetting(item, settingFromId);
|
|
389
390
|
})));
|
|
390
391
|
}
|
|
@@ -392,9 +393,28 @@ var applyingPluginName = "";
|
|
|
392
393
|
} 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") {
|
|
393
394
|
var groupSettings = settings;
|
|
394
395
|
var otherGroupSettings = otherSettings;
|
|
395
|
-
result =
|
|
396
|
-
|
|
397
|
-
|
|
396
|
+
result = _to_consumable_array(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_to_consumable_array(groupSettings));
|
|
397
|
+
// 当前控件setting是tab,合并控件setting是group
|
|
398
|
+
} else if (((_settings_2 = settings[0]) === null || _settings_2 === void 0 ? void 0 : _settings_2.type) === "tab" && ((_otherSettings_2 = otherSettings[0]) === null || _otherSettings_2 === void 0 ? void 0 : _otherSettings_2.type) === "group") {
|
|
399
|
+
var tabSettings1 = settings;
|
|
400
|
+
var otherGroupSettings1 = otherSettings;
|
|
401
|
+
result = tabSettings1.map(function(tab, index) {
|
|
402
|
+
var result = new Tab(tab);
|
|
403
|
+
if (index === 0) {
|
|
404
|
+
result.items = _to_consumable_array(_this.formatGroupSetting(otherGroupSettings1, settingFromId)).concat(_to_consumable_array(result.items));
|
|
405
|
+
}
|
|
406
|
+
return result;
|
|
407
|
+
});
|
|
408
|
+
} else if (((_settings_3 = settings[0]) === null || _settings_3 === void 0 ? void 0 : _settings_3.type) === "group" && ((_otherSettings_3 = otherSettings[0]) === null || _otherSettings_3 === void 0 ? void 0 : _otherSettings_3.type) === "tab") {
|
|
409
|
+
var groupSettings1 = settings;
|
|
410
|
+
var otherTabSettings1 = otherSettings;
|
|
411
|
+
result = otherTabSettings1.map(function(tab, index) {
|
|
412
|
+
var result = new Tab(tab);
|
|
413
|
+
if (index === 0) {
|
|
414
|
+
result.items = _to_consumable_array(result.items).concat(_to_consumable_array(_this.formatGroupSetting(groupSettings1, settingFromId)));
|
|
415
|
+
}
|
|
416
|
+
return result;
|
|
417
|
+
});
|
|
398
418
|
}
|
|
399
419
|
return result;
|
|
400
420
|
}
|
|
@@ -422,7 +442,7 @@ var applyingPluginName = "";
|
|
|
422
442
|
args[_key] = arguments[_key];
|
|
423
443
|
}
|
|
424
444
|
var _this_designer;
|
|
425
|
-
return (_this_designer = this.designer).registerControlConfig.apply(_this_designer,
|
|
445
|
+
return (_this_designer = this.designer).registerControlConfig.apply(_this_designer, _to_consumable_array(args));
|
|
426
446
|
}
|
|
427
447
|
},
|
|
428
448
|
{
|
|
@@ -504,9 +524,9 @@ var applyingPluginName = "";
|
|
|
504
524
|
};
|
|
505
525
|
this.callSelectedScopeEffect(payload);
|
|
506
526
|
if (oldParent) {
|
|
507
|
-
this.emit("moved",
|
|
527
|
+
this.emit("moved", _object_spread({}, payload));
|
|
508
528
|
} else {
|
|
509
|
-
this.emit("joined",
|
|
529
|
+
this.emit("joined", _object_spread({}, payload));
|
|
510
530
|
}
|
|
511
531
|
}
|
|
512
532
|
},
|
|
@@ -585,7 +605,7 @@ var applyingPluginName = "";
|
|
|
585
605
|
var prevKey = arguments.length > 3 && arguments[3] !== void 0 ? arguments[3] : "";
|
|
586
606
|
var _this = this;
|
|
587
607
|
Object.entries(props).forEach(function(param) {
|
|
588
|
-
var _param =
|
|
608
|
+
var _param = _sliced_to_array(param, 2), key = _param[0], value = _param[1];
|
|
589
609
|
var propName = "".concat(prevKey ? prevKey + "." : "").concat(key);
|
|
590
610
|
if (isObject(value)) {
|
|
591
611
|
_this.updateInstanceProps(instance, value, payload, propName);
|
|
@@ -701,7 +721,7 @@ var applyingPluginName = "";
|
|
|
701
721
|
arg[_key] = arguments[_key];
|
|
702
722
|
}
|
|
703
723
|
var _this_designer;
|
|
704
|
-
(_this_designer = this.designer).registerControl.apply(_this_designer,
|
|
724
|
+
(_this_designer = this.designer).registerControl.apply(_this_designer, _to_consumable_array(arg));
|
|
705
725
|
return this;
|
|
706
726
|
}
|
|
707
727
|
},
|
|
@@ -747,7 +767,7 @@ var applyingPluginName = "";
|
|
|
747
767
|
var payload = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
|
|
748
768
|
var _this = this;
|
|
749
769
|
this.store.selectedInstanceSettingItems.forEach(function(setting) {
|
|
750
|
-
setting.callEffect(effectKey, _this,
|
|
770
|
+
setting.callEffect(effectKey, _this, _object_spread({
|
|
751
771
|
control: _this.store.selected
|
|
752
772
|
}, payload));
|
|
753
773
|
});
|
|
@@ -759,7 +779,7 @@ var applyingPluginName = "";
|
|
|
759
779
|
var payload = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
|
|
760
780
|
var _this = this;
|
|
761
781
|
this.store.selectedInstanceSettingItems.forEach(function(setting) {
|
|
762
|
-
setting.callScopeEffect(_this,
|
|
782
|
+
setting.callScopeEffect(_this, _object_spread({
|
|
763
783
|
control: _this.store.selected
|
|
764
784
|
}, payload));
|
|
765
785
|
});
|
|
@@ -774,7 +794,7 @@ var applyingPluginName = "";
|
|
|
774
794
|
arg[_key] = arguments[_key];
|
|
775
795
|
}
|
|
776
796
|
var _Designer;
|
|
777
|
-
(_Designer = Designer).register.apply(_Designer,
|
|
797
|
+
(_Designer = Designer).register.apply(_Designer, _to_consumable_array(arg));
|
|
778
798
|
return this;
|
|
779
799
|
}
|
|
780
800
|
},
|
|
@@ -789,5 +809,5 @@ var applyingPluginName = "";
|
|
|
789
809
|
}(Watcher);
|
|
790
810
|
/**
|
|
791
811
|
* 控件事件定义
|
|
792
|
-
* */
|
|
812
|
+
* */ _define_property(Driven, "EventLogic", EventLogic);
|
|
793
813
|
export { Driven };
|
package/dist/esm/Plugin.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
function
|
|
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
|
-
|
|
8
|
+
_class_call_check(this, Plugin);
|
|
9
9
|
};
|
|
10
10
|
export { Plugin };
|
package/dist/esm/Store.js
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
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
|
|
10
|
-
if (Array.isArray(arr)) return
|
|
9
|
+
function _array_without_holes(arr) {
|
|
10
|
+
if (Array.isArray(arr)) return _array_like_to_array(arr);
|
|
11
11
|
}
|
|
12
|
-
function
|
|
12
|
+
function _class_call_check(instance, Constructor) {
|
|
13
13
|
if (!(instance instanceof Constructor)) {
|
|
14
14
|
throw new TypeError("Cannot call a class as a function");
|
|
15
15
|
}
|
|
@@ -23,12 +23,12 @@ function _defineProperties(target, props) {
|
|
|
23
23
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
27
27
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
28
28
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
29
29
|
return Constructor;
|
|
30
30
|
}
|
|
31
|
-
function
|
|
31
|
+
function _define_property(obj, key, value) {
|
|
32
32
|
if (key in obj) {
|
|
33
33
|
Object.defineProperty(obj, key, {
|
|
34
34
|
value: value,
|
|
@@ -41,17 +41,10 @@ function _defineProperty(obj, key, value) {
|
|
|
41
41
|
}
|
|
42
42
|
return obj;
|
|
43
43
|
}
|
|
44
|
-
function
|
|
45
|
-
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
46
|
-
return !!right[Symbol.hasInstance](left);
|
|
47
|
-
} else {
|
|
48
|
-
return left instanceof right;
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
function _iterableToArray(iter) {
|
|
44
|
+
function _iterable_to_array(iter) {
|
|
52
45
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
53
46
|
}
|
|
54
|
-
function
|
|
47
|
+
function _iterable_to_array_limit(arr, i) {
|
|
55
48
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
56
49
|
if (_i == null) return;
|
|
57
50
|
var _arr = [];
|
|
@@ -75,44 +68,43 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
75
68
|
}
|
|
76
69
|
return _arr;
|
|
77
70
|
}
|
|
78
|
-
function
|
|
71
|
+
function _non_iterable_rest() {
|
|
79
72
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
80
73
|
}
|
|
81
|
-
function
|
|
74
|
+
function _non_iterable_spread() {
|
|
82
75
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
83
76
|
}
|
|
84
|
-
function
|
|
85
|
-
return
|
|
77
|
+
function _sliced_to_array(arr, i) {
|
|
78
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
86
79
|
}
|
|
87
|
-
function
|
|
88
|
-
return
|
|
80
|
+
function _to_consumable_array(arr) {
|
|
81
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
89
82
|
}
|
|
90
|
-
function
|
|
83
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
91
84
|
if (!o) return;
|
|
92
|
-
if (typeof o === "string") return
|
|
85
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
93
86
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
94
87
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
95
88
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
96
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
89
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
97
90
|
}
|
|
98
|
-
import {
|
|
99
|
-
import { hasChildrenControl, hasHeaderControl } from "./designerUtils";
|
|
100
|
-
import { Group } from "@byteluck-fe/model-driven-settings";
|
|
91
|
+
import { isDataBind } from "@byteluck-fe/model-driven-core";
|
|
92
|
+
import { hasChildrenControl, hasFooterControl, hasHeaderControl } from "./designerUtils";
|
|
101
93
|
import { CONTROL_BASE_TYPE, CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
|
|
102
94
|
// 维护当前selected,。。 selectedControlSetting
|
|
103
95
|
export var Store = /*#__PURE__*/ function() {
|
|
104
96
|
"use strict";
|
|
105
97
|
function Store(options) {
|
|
106
|
-
|
|
98
|
+
_class_call_check(this, Store);
|
|
107
99
|
/**
|
|
108
100
|
* 页面控件实例树
|
|
109
|
-
* */
|
|
101
|
+
* */ _define_property(this, "instance", void 0);
|
|
110
102
|
/**
|
|
111
103
|
* 拍平的控件数组
|
|
112
|
-
* */
|
|
104
|
+
* */ _define_property(this, "flatInstances", void 0);
|
|
113
105
|
/**
|
|
114
106
|
* 控件id组成的map
|
|
115
|
-
* */
|
|
107
|
+
* */ _define_property(this, "instanceIdMap", void 0);
|
|
116
108
|
/**
|
|
117
109
|
* dataCode和fieldCode组成的map
|
|
118
110
|
* {
|
|
@@ -123,28 +115,28 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
123
115
|
* [fieldCode]: 控件
|
|
124
116
|
* }
|
|
125
117
|
* }
|
|
126
|
-
* */
|
|
118
|
+
* */ _define_property(this, "dataFieldCodeMap", void 0);
|
|
127
119
|
/**
|
|
128
120
|
* 当前选中的控件
|
|
129
|
-
* */
|
|
121
|
+
* */ _define_property(this, "selected", null);
|
|
130
122
|
/**
|
|
131
123
|
* 当前选中的数据作用域控件
|
|
132
|
-
* */
|
|
133
|
-
|
|
124
|
+
* */ _define_property(this, "selectedInstanceDataScopeParent", null);
|
|
125
|
+
_define_property(this, "selectedDataScopeFlatInstances", []);
|
|
134
126
|
/**
|
|
135
127
|
* 当前选中控件的setting
|
|
136
|
-
* */
|
|
137
|
-
|
|
128
|
+
* */ _define_property(this, "selectedInstanceSetting", []);
|
|
129
|
+
_define_property(this, "selectedInstanceSettingItems", []);
|
|
138
130
|
/**
|
|
139
131
|
* 当前选中控件的数据模型
|
|
140
|
-
* */
|
|
132
|
+
* */ _define_property(this, "selectedFieldItem", null);
|
|
141
133
|
/**
|
|
142
134
|
* 扩展字段,比如appId,dataCode等
|
|
143
|
-
* */
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
135
|
+
* */ _define_property(this, "external", {});
|
|
136
|
+
_define_property(this, "movingInstance", null);
|
|
137
|
+
_define_property(this, "movingInstanceOldParent", null);
|
|
138
|
+
_define_property(this, "movingInstanceOldDataScopeParent", null);
|
|
139
|
+
_define_property(this, "getParentBeforeInstanceMove", void 0);
|
|
148
140
|
var _options_getParentBeforeInstanceMove;
|
|
149
141
|
this.getParentBeforeInstanceMove = (_options_getParentBeforeInstanceMove = options.getParentBeforeInstanceMove) !== null && _options_getParentBeforeInstanceMove !== void 0 ? _options_getParentBeforeInstanceMove : function(instance) {
|
|
150
142
|
return instance.parent;
|
|
@@ -152,7 +144,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
152
144
|
this.instance = options.instance;
|
|
153
145
|
this.getFlatInstances();
|
|
154
146
|
}
|
|
155
|
-
|
|
147
|
+
_create_class(Store, [
|
|
156
148
|
{
|
|
157
149
|
key: "selectedRules",
|
|
158
150
|
get: /**
|
|
@@ -200,16 +192,17 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
200
192
|
this.selectedInstanceSettingItems = [];
|
|
201
193
|
this.selectedInstanceSetting.forEach(function(group) {
|
|
202
194
|
var _this_selectedInstanceSettingItems;
|
|
203
|
-
(_this_selectedInstanceSettingItems = _this.selectedInstanceSettingItems).push.apply(_this_selectedInstanceSettingItems,
|
|
195
|
+
(_this_selectedInstanceSettingItems = _this.selectedInstanceSettingItems).push.apply(_this_selectedInstanceSettingItems, _to_consumable_array(_this.getSettingItems(group)));
|
|
204
196
|
});
|
|
205
197
|
}
|
|
206
198
|
},
|
|
207
199
|
{
|
|
208
200
|
key: "getSettingItems",
|
|
209
201
|
value: function getSettingItems(group) {
|
|
210
|
-
return
|
|
202
|
+
// return group instanceof Group
|
|
203
|
+
return group.type === "group" ? group.items : group.items.reduce(function(result, curr) {
|
|
211
204
|
var _result;
|
|
212
|
-
(_result = result).push.apply(_result,
|
|
205
|
+
(_result = result).push.apply(_result, _to_consumable_array(curr.items));
|
|
213
206
|
return result;
|
|
214
207
|
}, []);
|
|
215
208
|
}
|
|
@@ -242,7 +235,7 @@ export var Store = /*#__PURE__*/ function() {
|
|
|
242
235
|
var _iteratorNormalCompletion = true, _didIteratorError = false, _iteratorError = undefined;
|
|
243
236
|
try {
|
|
244
237
|
for(var _iterator = map.entries()[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true){
|
|
245
|
-
var _step_value =
|
|
238
|
+
var _step_value = _sliced_to_array(_step.value, 2), key = _step_value[0], value = _step_value[1];
|
|
246
239
|
if (value.id === instance.id) {
|
|
247
240
|
map.delete(key);
|
|
248
241
|
break;
|
|
@@ -297,7 +290,8 @@ function setInstanceInDataFieldCodeMap(instance, dataFieldCodeMap) {
|
|
|
297
290
|
// if (instance instanceof DesignerFormControl) {
|
|
298
291
|
if (instance.controlType === CONTROL_BASE_TYPE.FORM) {
|
|
299
292
|
var dataBind = instance.props.dataBind;
|
|
300
|
-
if (
|
|
293
|
+
//if (dataBind instanceof DataBind) {
|
|
294
|
+
if (isDataBind(dataBind)) {
|
|
301
295
|
setDataFieldCodeMap(dataFieldCodeMap, dataBind, instance);
|
|
302
296
|
} else {
|
|
303
297
|
Object.values(dataBind).forEach(function(subDataBind) {
|
|
@@ -318,6 +312,11 @@ export function loop(instances, callback) {
|
|
|
318
312
|
if (hasHeaderControl(item)) {
|
|
319
313
|
loop(item.props.headers, callback);
|
|
320
314
|
}
|
|
315
|
+
if (hasFooterControl(item)) {
|
|
316
|
+
var _item_props;
|
|
317
|
+
var _item_props_footers;
|
|
318
|
+
loop((_item_props_footers = (_item_props = item.props) === null || _item_props === void 0 ? void 0 : _item_props.footers) !== null && _item_props_footers !== void 0 ? _item_props_footers : [], callback);
|
|
319
|
+
}
|
|
321
320
|
});
|
|
322
321
|
}
|
|
323
322
|
export function isDataScopeInstance(instance) {
|
|
@@ -5,6 +5,9 @@ export function hasChildrenControl(instance) {
|
|
|
5
5
|
export function hasHeaderControl(instance) {
|
|
6
6
|
return "headers" in instance.props && isArray(instance.props.headers);
|
|
7
7
|
}
|
|
8
|
+
export function hasFooterControl(instance) {
|
|
9
|
+
return "footers" in instance.props && isArray(instance.props.footers);
|
|
10
|
+
}
|
|
8
11
|
export function loopFormControl(control, callback) {
|
|
9
12
|
if (Array.isArray(control)) {
|
|
10
13
|
control.map(function(item) {
|