@byteluck-fe/model-driven-driven 2.5.0-beta.11 → 2.5.0-beta.15
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 +18 -5
- package/dist/esm/Designer.js +141 -37
- package/dist/esm/Driven.js +74 -56
- package/dist/esm/EventLogic.js +1 -1
- package/dist/esm/Store.js +55 -21
- package/dist/esm/constants.js +8 -8
- package/dist/esm/designerUtils.js +5 -6
- package/dist/esm/index.js +6 -6
- package/dist/esm/utils.js +177 -76
- package/dist/index.umd.js +3 -3
- package/dist/types/Driven.d.ts +2 -2
- package/dist/types/Store.d.ts +1 -1
- package/package.json +5 -5
package/dist/esm/Builder.js
CHANGED
|
@@ -17,13 +17,26 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
17
17
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
18
|
return Constructor;
|
|
19
19
|
}
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
function _defineProperty(obj, key, value) {
|
|
21
|
+
if (key in obj) {
|
|
22
|
+
Object.defineProperty(obj, key, {
|
|
23
|
+
value: value,
|
|
24
|
+
enumerable: true,
|
|
25
|
+
configurable: true,
|
|
26
|
+
writable: true
|
|
27
|
+
});
|
|
28
|
+
} else {
|
|
29
|
+
obj[key] = value;
|
|
30
|
+
}
|
|
31
|
+
return obj;
|
|
32
|
+
}
|
|
33
|
+
import Designer from "./Designer";
|
|
34
|
+
import { CONTROL_TYPE } from "@byteluck-fe/model-driven-shared";
|
|
22
35
|
export var Builder = /*#__PURE__*/ function() {
|
|
23
36
|
"use strict";
|
|
24
37
|
function Builder() {
|
|
25
38
|
_classCallCheck(this, Builder);
|
|
26
|
-
this
|
|
39
|
+
_defineProperty(this, "designer", new Designer());
|
|
27
40
|
}
|
|
28
41
|
_createClass(Builder, [
|
|
29
42
|
{
|
|
@@ -66,7 +79,7 @@ export var Builder = /*#__PURE__*/ function() {
|
|
|
66
79
|
// @ts-ignore
|
|
67
80
|
var listview = this.designer.createControlInstance(// @ts-ignore
|
|
68
81
|
CONTROL_TYPE.LIST_VIEW);
|
|
69
|
-
listview.props.countType =
|
|
82
|
+
listview.props.countType = "async";
|
|
70
83
|
var simpleSearch = this.designer.createControlInstance(// @ts-ignore
|
|
71
84
|
CONTROL_TYPE.SIMPLE_SEARCH);
|
|
72
85
|
var gridTable = this.designer.createControlInstance(// @ts-ignore
|
|
@@ -115,7 +128,7 @@ export var Builder = /*#__PURE__*/ function() {
|
|
|
115
128
|
// @ts-ignore
|
|
116
129
|
vueFormItem.props.isHideCaption = true;
|
|
117
130
|
// @ts-ignore
|
|
118
|
-
vueFormItem.props.controlExportName =
|
|
131
|
+
vueFormItem.props.controlExportName = "VuePage";
|
|
119
132
|
// @ts-ignore
|
|
120
133
|
grid.children.push(vueFormItem);
|
|
121
134
|
return grid;
|
package/dist/esm/Designer.js
CHANGED
|
@@ -60,6 +60,19 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
60
60
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
61
61
|
return Constructor;
|
|
62
62
|
}
|
|
63
|
+
function _defineProperty(obj, key, value) {
|
|
64
|
+
if (key in obj) {
|
|
65
|
+
Object.defineProperty(obj, key, {
|
|
66
|
+
value: value,
|
|
67
|
+
enumerable: true,
|
|
68
|
+
configurable: true,
|
|
69
|
+
writable: true
|
|
70
|
+
});
|
|
71
|
+
} else {
|
|
72
|
+
obj[key] = value;
|
|
73
|
+
}
|
|
74
|
+
return obj;
|
|
75
|
+
}
|
|
63
76
|
function _getPrototypeOf(o) {
|
|
64
77
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
65
78
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -81,7 +94,7 @@ function _inherits(subClass, superClass) {
|
|
|
81
94
|
}
|
|
82
95
|
function _instanceof(left, right) {
|
|
83
96
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
84
|
-
return right[Symbol.hasInstance](left);
|
|
97
|
+
return !!right[Symbol.hasInstance](left);
|
|
85
98
|
} else {
|
|
86
99
|
return left instanceof right;
|
|
87
100
|
}
|
|
@@ -144,31 +157,125 @@ function _createSuper(Derived) {
|
|
|
144
157
|
return _possibleConstructorReturn(this, result);
|
|
145
158
|
};
|
|
146
159
|
}
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
160
|
+
var __generator = this && this.__generator || function(thisArg, body) {
|
|
161
|
+
var f, y, t, g, _ = {
|
|
162
|
+
label: 0,
|
|
163
|
+
sent: function() {
|
|
164
|
+
if (t[0] & 1) throw t[1];
|
|
165
|
+
return t[1];
|
|
166
|
+
},
|
|
167
|
+
trys: [],
|
|
168
|
+
ops: []
|
|
169
|
+
};
|
|
170
|
+
return g = {
|
|
171
|
+
next: verb(0),
|
|
172
|
+
"throw": verb(1),
|
|
173
|
+
"return": verb(2)
|
|
174
|
+
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
175
|
+
return this;
|
|
176
|
+
}), g;
|
|
177
|
+
function verb(n) {
|
|
178
|
+
return function(v) {
|
|
179
|
+
return step([
|
|
180
|
+
n,
|
|
181
|
+
v
|
|
182
|
+
]);
|
|
183
|
+
};
|
|
184
|
+
}
|
|
185
|
+
function step(op) {
|
|
186
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
187
|
+
while(_)try {
|
|
188
|
+
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
|
|
189
|
+
if (y = 0, t) op = [
|
|
190
|
+
op[0] & 2,
|
|
191
|
+
t.value
|
|
192
|
+
];
|
|
193
|
+
switch(op[0]){
|
|
194
|
+
case 0:
|
|
195
|
+
case 1:
|
|
196
|
+
t = op;
|
|
197
|
+
break;
|
|
198
|
+
case 4:
|
|
199
|
+
_.label++;
|
|
200
|
+
return {
|
|
201
|
+
value: op[1],
|
|
202
|
+
done: false
|
|
203
|
+
};
|
|
204
|
+
case 5:
|
|
205
|
+
_.label++;
|
|
206
|
+
y = op[1];
|
|
207
|
+
op = [
|
|
208
|
+
0
|
|
209
|
+
];
|
|
210
|
+
continue;
|
|
211
|
+
case 7:
|
|
212
|
+
op = _.ops.pop();
|
|
213
|
+
_.trys.pop();
|
|
214
|
+
continue;
|
|
215
|
+
default:
|
|
216
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
217
|
+
_ = 0;
|
|
218
|
+
continue;
|
|
219
|
+
}
|
|
220
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
221
|
+
_.label = op[1];
|
|
222
|
+
break;
|
|
223
|
+
}
|
|
224
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
225
|
+
_.label = t[1];
|
|
226
|
+
t = op;
|
|
227
|
+
break;
|
|
228
|
+
}
|
|
229
|
+
if (t && _.label < t[2]) {
|
|
230
|
+
_.label = t[2];
|
|
231
|
+
_.ops.push(op);
|
|
232
|
+
break;
|
|
233
|
+
}
|
|
234
|
+
if (t[2]) _.ops.pop();
|
|
235
|
+
_.trys.pop();
|
|
236
|
+
continue;
|
|
237
|
+
}
|
|
238
|
+
op = body.call(thisArg, _);
|
|
239
|
+
} catch (e) {
|
|
240
|
+
op = [
|
|
241
|
+
6,
|
|
242
|
+
e
|
|
243
|
+
];
|
|
244
|
+
y = 0;
|
|
245
|
+
} finally{
|
|
246
|
+
f = t = 0;
|
|
247
|
+
}
|
|
248
|
+
if (op[0] & 5) throw op[1];
|
|
249
|
+
return {
|
|
250
|
+
value: op[0] ? op[1] : void 0,
|
|
251
|
+
done: true
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
};
|
|
255
|
+
import { RegisterControls, controlHooksEmitter } from "@byteluck-fe/model-driven-core";
|
|
256
|
+
import EventLogic from "./EventLogic";
|
|
257
|
+
import { FieldTypes } from "@byteluck-fe/model-driven-shared";
|
|
258
|
+
import { toSchema, getModelBindInfoList, checkSchema } from "./utils";
|
|
259
|
+
var Designer = /*#__PURE__*/ function _target(RegisterControls) {
|
|
153
260
|
"use strict";
|
|
154
|
-
_inherits(
|
|
155
|
-
var _super = _createSuper(
|
|
156
|
-
function
|
|
157
|
-
_classCallCheck(this,
|
|
261
|
+
_inherits(Designer, RegisterControls);
|
|
262
|
+
var _super = _createSuper(Designer);
|
|
263
|
+
function Designer() {
|
|
264
|
+
_classCallCheck(this, Designer);
|
|
158
265
|
var _this;
|
|
159
|
-
_this = _super.call(this,
|
|
160
|
-
_this
|
|
161
|
-
_this
|
|
162
|
-
_this
|
|
163
|
-
_this
|
|
164
|
-
_this
|
|
165
|
-
(_instanceof(this,
|
|
166
|
-
var
|
|
167
|
-
_this.controlSettingMap.set(
|
|
266
|
+
_this = _super.call(this, "Designer");
|
|
267
|
+
_defineProperty(_assertThisInitialized(_this), "toolbox", []);
|
|
268
|
+
_defineProperty(_assertThisInitialized(_this), "services", {});
|
|
269
|
+
_defineProperty(_assertThisInitialized(_this), "eventLogic", new EventLogic());
|
|
270
|
+
_defineProperty(_assertThisInitialized(_this), "fieldTypes", FieldTypes);
|
|
271
|
+
_defineProperty(_assertThisInitialized(_this), "controlSettingMap", new Map());
|
|
272
|
+
(_instanceof(this, Designer) ? this.constructor : void 0).staticControls.forEach(function(control) {
|
|
273
|
+
var _$Designer = control.Designer, Setting = control.Setting;
|
|
274
|
+
_this.controlSettingMap.set(_$Designer.controlType, Setting);
|
|
168
275
|
});
|
|
169
276
|
return _this;
|
|
170
277
|
}
|
|
171
|
-
_createClass(
|
|
278
|
+
_createClass(Designer, [
|
|
172
279
|
{
|
|
173
280
|
key: "registerControl",
|
|
174
281
|
value: function registerControl(control) {
|
|
@@ -215,7 +322,7 @@ var Designer1 = /*#__PURE__*/ function _target(RegisterControls1) {
|
|
|
215
322
|
function getInitControl() {
|
|
216
323
|
// @ts-ignore
|
|
217
324
|
return [
|
|
218
|
-
this.createControlInstance(
|
|
325
|
+
this.createControlInstance("grid")
|
|
219
326
|
];
|
|
220
327
|
}
|
|
221
328
|
},
|
|
@@ -225,17 +332,14 @@ var Designer1 = /*#__PURE__*/ function _target(RegisterControls1) {
|
|
|
225
332
|
for(var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++){
|
|
226
333
|
args[_key] = arguments[_key];
|
|
227
334
|
}
|
|
228
|
-
return _asyncToGenerator(
|
|
229
|
-
return
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
}
|
|
237
|
-
}, _callee);
|
|
238
|
-
}))();
|
|
335
|
+
return _asyncToGenerator(function() {
|
|
336
|
+
return __generator(this, function(_state) {
|
|
337
|
+
return [
|
|
338
|
+
2,
|
|
339
|
+
checkSchema.apply(void 0, _toConsumableArray(args))
|
|
340
|
+
];
|
|
341
|
+
});
|
|
342
|
+
})();
|
|
239
343
|
}
|
|
240
344
|
},
|
|
241
345
|
{
|
|
@@ -267,8 +371,8 @@ var Designer1 = /*#__PURE__*/ function _target(RegisterControls1) {
|
|
|
267
371
|
}
|
|
268
372
|
}
|
|
269
373
|
]);
|
|
270
|
-
return
|
|
374
|
+
return Designer;
|
|
271
375
|
}(RegisterControls);
|
|
272
|
-
|
|
273
|
-
export {
|
|
274
|
-
export {
|
|
376
|
+
_defineProperty(Designer, "EventLogic", EventLogic);
|
|
377
|
+
export { Designer as default };
|
|
378
|
+
export { Designer };
|
package/dist/esm/Driven.js
CHANGED
|
@@ -192,35 +192,52 @@ function _createSuper(Derived) {
|
|
|
192
192
|
return _possibleConstructorReturn(this, result);
|
|
193
193
|
};
|
|
194
194
|
}
|
|
195
|
-
import { CONTROL_BASE_TYPE, error, genNonDuplicateId, isArray, isBuiltInControls, isObject, isString, updateValueFromKeys, warn, Watcher } from
|
|
196
|
-
import { findInstanceDataScopeParent, Store } from
|
|
197
|
-
import { Designer } from
|
|
198
|
-
import EventLogic from
|
|
199
|
-
import { checkSchema, generatePermissions, getModelBindInfoList, toSchema } from
|
|
200
|
-
import { Group, initSettings, Tab } from
|
|
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
|
-
|
|
202
|
+
var applyingPluginName = "";
|
|
203
|
+
/**
|
|
204
204
|
* 设计器驱动
|
|
205
|
-
* */ /*#__PURE__*/ function(
|
|
205
|
+
* */ var Driven = /*#__PURE__*/ function(Watcher) {
|
|
206
206
|
"use strict";
|
|
207
|
-
_inherits(Driven,
|
|
207
|
+
_inherits(Driven, Watcher);
|
|
208
208
|
var _super = _createSuper(Driven);
|
|
209
209
|
function Driven(options) {
|
|
210
210
|
_classCallCheck(this, Driven);
|
|
211
211
|
var _this;
|
|
212
212
|
_this = _super.call(this);
|
|
213
|
-
_this
|
|
214
|
-
_this
|
|
215
|
-
_this
|
|
213
|
+
_defineProperty(_assertThisInitialized(_this), "mode", void 0);
|
|
214
|
+
_defineProperty(_assertThisInitialized(_this), "isMounted", false);
|
|
215
|
+
_defineProperty(_assertThisInitialized(_this), "id", genNonDuplicateId(8));
|
|
216
|
+
/**
|
|
217
|
+
* 控件可选的事件
|
|
218
|
+
* */ _defineProperty(_assertThisInitialized(_this), "eventLogic", void 0);
|
|
219
|
+
/**
|
|
220
|
+
* 处理数据存储,存放模型等
|
|
221
|
+
* */ _defineProperty(_assertThisInitialized(_this), "store", void 0);
|
|
222
|
+
/**
|
|
223
|
+
* 额外参数存储
|
|
224
|
+
*/ _defineProperty(_assertThisInitialized(_this), "externalParams", void 0);
|
|
225
|
+
/**
|
|
226
|
+
* 处理instance,和schema存储
|
|
227
|
+
* */ _defineProperty(_assertThisInitialized(_this), "designer", void 0);
|
|
228
|
+
/**
|
|
229
|
+
* 插件数组
|
|
230
|
+
* */ _defineProperty(_assertThisInitialized(_this), "__plugins", void 0);
|
|
231
|
+
_defineProperty(_assertThisInitialized(_this), "__pluginsApplied", false);
|
|
232
|
+
_defineProperty(_assertThisInitialized(_this), "$options", void 0);
|
|
216
233
|
// TODO 拿到schema
|
|
217
|
-
_this
|
|
234
|
+
_defineProperty(_assertThisInitialized(_this), "getSchema", toSchema);
|
|
218
235
|
// TODO 拿到model_bind_info_list
|
|
219
|
-
_this
|
|
236
|
+
_defineProperty(_assertThisInitialized(_this), "getModelBindInfoList", getModelBindInfoList);
|
|
220
237
|
// TODO 拿到permission_controls
|
|
221
|
-
_this
|
|
238
|
+
_defineProperty(_assertThisInitialized(_this), "generatePermissions", generatePermissions);
|
|
222
239
|
_this.$options = Object.freeze(options);
|
|
223
|
-
var
|
|
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
243
|
_this.store = new Store(_objectSpread({
|
|
@@ -237,7 +254,7 @@ var Driven = /**
|
|
|
237
254
|
key: "mount",
|
|
238
255
|
value: // 挂载
|
|
239
256
|
function mount() {
|
|
240
|
-
var
|
|
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
|
|
263
|
-
applyingPluginName = (
|
|
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
|
}
|
|
@@ -309,7 +326,7 @@ var Driven = /**
|
|
|
309
326
|
return;
|
|
310
327
|
}
|
|
311
328
|
this.setSelectedInstanceSetting();
|
|
312
|
-
this.emit(
|
|
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
|
|
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 (((
|
|
329
|
-
var
|
|
330
|
-
var wrapSetting = this.getControlSetting((
|
|
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
|
|
349
|
-
var
|
|
365
|
+
var _this = this;
|
|
366
|
+
var _settings_, _otherSettings_, _settings_1, _otherSettings_1;
|
|
367
|
+
var result = settings;
|
|
350
368
|
// tab
|
|
351
|
-
if (((
|
|
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
|
-
|
|
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;
|
|
@@ -367,20 +384,19 @@ var Driven = /**
|
|
|
367
384
|
return result;
|
|
368
385
|
});
|
|
369
386
|
if (otherTabSettings.length) {
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
return _this1.formatGroupSetting(item, settingFromId);
|
|
387
|
+
result = _toConsumableArray(result).concat(_toConsumableArray(otherTabSettings.map(function(item) {
|
|
388
|
+
return _this.formatGroupSetting(item, settingFromId);
|
|
373
389
|
})));
|
|
374
390
|
}
|
|
375
391
|
// group
|
|
376
|
-
} else if (((
|
|
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
|
-
|
|
395
|
+
result = _toConsumableArray(this.formatGroupSetting(otherGroupSettings, settingFromId)).concat(_toConsumableArray(groupSettings));
|
|
380
396
|
} else {
|
|
381
397
|
// 一个是tab,一个是group,暂时不支持
|
|
382
398
|
}
|
|
383
|
-
return
|
|
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
|
|
409
|
-
return (
|
|
424
|
+
var _this_designer;
|
|
425
|
+
return (_this_designer = this.designer).registerControlConfig.apply(_this_designer, _toConsumableArray(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(
|
|
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
|
|
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 !== ((
|
|
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(
|
|
507
|
+
this.emit("moved", _objectSpread({}, payload));
|
|
492
508
|
} else {
|
|
493
|
-
this.emit(
|
|
509
|
+
this.emit("joined", _objectSpread({}, 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 ===
|
|
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
|
|
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(
|
|
569
|
+
if (propName.startsWith("dataBind")) {
|
|
554
570
|
this.store.updateDataFieldCodeMap(instance);
|
|
555
571
|
}
|
|
556
|
-
if (instance.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(
|
|
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
588
|
var _param = _slicedToArray(param, 2), key = _param[0], value = _param[1];
|
|
573
|
-
var propName = "".concat(prevKey ? prevKey +
|
|
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(
|
|
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
|
|
688
|
-
(
|
|
703
|
+
var _this_designer;
|
|
704
|
+
(_this_designer = this.designer).registerControl.apply(_this_designer, _toConsumableArray(arg));
|
|
689
705
|
return this;
|
|
690
706
|
}
|
|
691
707
|
},
|
|
@@ -771,5 +787,7 @@ var Driven = /**
|
|
|
771
787
|
]);
|
|
772
788
|
return Driven;
|
|
773
789
|
}(Watcher);
|
|
774
|
-
|
|
790
|
+
/**
|
|
791
|
+
* 控件事件定义
|
|
792
|
+
* */ _defineProperty(Driven, "EventLogic", EventLogic);
|
|
775
793
|
export { Driven };
|
package/dist/esm/EventLogic.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { EventLogic } from
|
|
1
|
+
import { EventLogic } from "@byteluck-fe/model-driven-shared";
|
|
2
2
|
export default EventLogic;
|