@byteluck-fe/model-driven-core 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.
- package/dist/esm/api-doc-index.js +4 -4
- package/dist/esm/common/BaseControl/designer.js +241 -121
- package/dist/esm/common/BaseControl/index.js +7 -7
- package/dist/esm/common/BaseControl/property.js +77 -60
- package/dist/esm/common/BaseControl/runtime.js +45 -24
- package/dist/esm/common/ColumnControl/designer.js +41 -27
- package/dist/esm/common/ColumnControl/index.js +6 -6
- package/dist/esm/common/ColumnControl/property.js +122 -74
- package/dist/esm/common/ColumnControl/runtime.js +41 -27
- package/dist/esm/common/ControlArray.js +21 -21
- package/dist/esm/common/FormControl/designer.js +47 -32
- package/dist/esm/common/FormControl/index.js +6 -6
- package/dist/esm/common/FormControl/property.js +181 -116
- package/dist/esm/common/FormControl/runtime.js +42 -27
- package/dist/esm/common/LayoutControl/designer.js +205 -77
- package/dist/esm/common/LayoutControl/index.js +6 -6
- package/dist/esm/common/LayoutControl/property.js +25 -25
- package/dist/esm/common/LayoutControl/runtime.js +44 -29
- package/dist/esm/common/ListControl/designer.js +199 -74
- package/dist/esm/common/ListControl/index.js +6 -6
- package/dist/esm/common/ListControl/property.js +41 -27
- package/dist/esm/common/ListControl/runtime.js +47 -32
- package/dist/esm/common/SearchViewControl/designer.js +41 -27
- package/dist/esm/common/SearchViewControl/index.js +6 -6
- package/dist/esm/common/SearchViewControl/property.js +40 -26
- package/dist/esm/common/SearchViewControl/runtime.js +41 -27
- package/dist/esm/common/Validator.js +5 -5
- package/dist/esm/common/WrapControl/designer.js +41 -27
- package/dist/esm/common/WrapControl/index.js +6 -6
- package/dist/esm/common/WrapControl/property.js +25 -25
- package/dist/esm/common/WrapControl/runtime.js +41 -27
- package/dist/esm/common/controlHooksEmitter.js +1 -1
- package/dist/esm/common/index.js +12 -12
- package/dist/esm/common/initLinkOperationRules.js +6 -6
- package/dist/esm/common/initOptionAndDataSourceRules.js +82 -82
- package/dist/esm/framework/RegisterControls.js +31 -19
- package/dist/esm/framework/index.js +825 -405
- package/dist/esm/index.js +3 -3
- package/dist/index.umd.js +1 -1
- package/dist/types/common/Validator.d.ts +1 -1
- package/dist/types/common/controlHooksEmitter.d.ts +1 -1
- package/dist/types/framework/index.d.ts +2 -1
- package/dist/types/type.d.ts +23 -23
- package/package.json +3 -3
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export { default as BaseControlProperty } from
|
|
3
|
-
export { default as ColumnControlProperty } from
|
|
4
|
-
export { default as FormControlProperty } from
|
|
1
|
+
export * from "./framework/index";
|
|
2
|
+
export { default as BaseControlProperty } from "./common/BaseControl/property";
|
|
3
|
+
export { default as ColumnControlProperty } from "./common/ColumnControl/property";
|
|
4
|
+
export { default as FormControlProperty } from "./common/FormControl/property";
|
|
@@ -1,13 +1,13 @@
|
|
|
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
12
|
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
13
13
|
try {
|
|
@@ -23,7 +23,7 @@ function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) {
|
|
|
23
23
|
Promise.resolve(value).then(_next, _throw);
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
|
-
function
|
|
26
|
+
function _async_to_generator(fn) {
|
|
27
27
|
return function() {
|
|
28
28
|
var self = this, args = arguments;
|
|
29
29
|
return new Promise(function(resolve, reject) {
|
|
@@ -38,7 +38,7 @@ function _asyncToGenerator(fn) {
|
|
|
38
38
|
});
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
function
|
|
41
|
+
function _class_call_check(instance, Constructor) {
|
|
42
42
|
if (!(instance instanceof Constructor)) {
|
|
43
43
|
throw new TypeError("Cannot call a class as a function");
|
|
44
44
|
}
|
|
@@ -52,12 +52,12 @@ function _defineProperties(target, props) {
|
|
|
52
52
|
Object.defineProperty(target, descriptor.key, descriptor);
|
|
53
53
|
}
|
|
54
54
|
}
|
|
55
|
-
function
|
|
55
|
+
function _create_class(Constructor, protoProps, staticProps) {
|
|
56
56
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
|
57
57
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
58
58
|
return Constructor;
|
|
59
59
|
}
|
|
60
|
-
function
|
|
60
|
+
function _define_property(obj, key, value) {
|
|
61
61
|
if (key in obj) {
|
|
62
62
|
Object.defineProperty(obj, key, {
|
|
63
63
|
value: value,
|
|
@@ -72,21 +72,21 @@ function _defineProperty(obj, key, value) {
|
|
|
72
72
|
}
|
|
73
73
|
function _instanceof(left, right) {
|
|
74
74
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
75
|
-
return right[Symbol.hasInstance](left);
|
|
75
|
+
return !!right[Symbol.hasInstance](left);
|
|
76
76
|
} else {
|
|
77
77
|
return left instanceof right;
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
|
-
function
|
|
80
|
+
function _iterable_to_array(iter) {
|
|
81
81
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
82
82
|
}
|
|
83
|
-
function
|
|
83
|
+
function _non_iterable_rest() {
|
|
84
84
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
85
85
|
}
|
|
86
|
-
function
|
|
86
|
+
function _non_iterable_spread() {
|
|
87
87
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
88
88
|
}
|
|
89
|
-
function
|
|
89
|
+
function _object_spread(target) {
|
|
90
90
|
for(var i = 1; i < arguments.length; i++){
|
|
91
91
|
var source = arguments[i] != null ? arguments[i] : {};
|
|
92
92
|
var ownKeys = Object.keys(source);
|
|
@@ -96,65 +96,167 @@ function _objectSpread(target) {
|
|
|
96
96
|
}));
|
|
97
97
|
}
|
|
98
98
|
ownKeys.forEach(function(key) {
|
|
99
|
-
|
|
99
|
+
_define_property(target, key, source[key]);
|
|
100
100
|
});
|
|
101
101
|
}
|
|
102
102
|
return target;
|
|
103
103
|
}
|
|
104
|
-
function
|
|
105
|
-
return
|
|
104
|
+
function _to_array(arr) {
|
|
105
|
+
return _array_with_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_rest();
|
|
106
106
|
}
|
|
107
|
-
function
|
|
108
|
-
return
|
|
107
|
+
function _to_consumable_array(arr) {
|
|
108
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
109
109
|
}
|
|
110
|
-
function
|
|
110
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
111
111
|
if (!o) return;
|
|
112
|
-
if (typeof o === "string") return
|
|
112
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
113
113
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
114
114
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
115
115
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
116
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
116
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
117
117
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
118
|
+
function _ts_generator(thisArg, body) {
|
|
119
|
+
var f, y, t, g, _ = {
|
|
120
|
+
label: 0,
|
|
121
|
+
sent: function() {
|
|
122
|
+
if (t[0] & 1) throw t[1];
|
|
123
|
+
return t[1];
|
|
124
|
+
},
|
|
125
|
+
trys: [],
|
|
126
|
+
ops: []
|
|
127
|
+
};
|
|
128
|
+
return g = {
|
|
129
|
+
next: verb(0),
|
|
130
|
+
"throw": verb(1),
|
|
131
|
+
"return": verb(2)
|
|
132
|
+
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
133
|
+
return this;
|
|
134
|
+
}), g;
|
|
135
|
+
function verb(n) {
|
|
136
|
+
return function(v) {
|
|
137
|
+
return step([
|
|
138
|
+
n,
|
|
139
|
+
v
|
|
140
|
+
]);
|
|
141
|
+
};
|
|
142
|
+
}
|
|
143
|
+
function step(op) {
|
|
144
|
+
if (f) throw new TypeError("Generator is already executing.");
|
|
145
|
+
while(_)try {
|
|
146
|
+
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;
|
|
147
|
+
if (y = 0, t) op = [
|
|
148
|
+
op[0] & 2,
|
|
149
|
+
t.value
|
|
150
|
+
];
|
|
151
|
+
switch(op[0]){
|
|
152
|
+
case 0:
|
|
153
|
+
case 1:
|
|
154
|
+
t = op;
|
|
155
|
+
break;
|
|
156
|
+
case 4:
|
|
157
|
+
_.label++;
|
|
158
|
+
return {
|
|
159
|
+
value: op[1],
|
|
160
|
+
done: false
|
|
161
|
+
};
|
|
162
|
+
case 5:
|
|
163
|
+
_.label++;
|
|
164
|
+
y = op[1];
|
|
165
|
+
op = [
|
|
166
|
+
0
|
|
167
|
+
];
|
|
168
|
+
continue;
|
|
169
|
+
case 7:
|
|
170
|
+
op = _.ops.pop();
|
|
171
|
+
_.trys.pop();
|
|
172
|
+
continue;
|
|
173
|
+
default:
|
|
174
|
+
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
175
|
+
_ = 0;
|
|
176
|
+
continue;
|
|
177
|
+
}
|
|
178
|
+
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
179
|
+
_.label = op[1];
|
|
180
|
+
break;
|
|
181
|
+
}
|
|
182
|
+
if (op[0] === 6 && _.label < t[1]) {
|
|
183
|
+
_.label = t[1];
|
|
184
|
+
t = op;
|
|
185
|
+
break;
|
|
186
|
+
}
|
|
187
|
+
if (t && _.label < t[2]) {
|
|
188
|
+
_.label = t[2];
|
|
189
|
+
_.ops.push(op);
|
|
190
|
+
break;
|
|
191
|
+
}
|
|
192
|
+
if (t[2]) _.ops.pop();
|
|
193
|
+
_.trys.pop();
|
|
194
|
+
continue;
|
|
195
|
+
}
|
|
196
|
+
op = body.call(thisArg, _);
|
|
197
|
+
} catch (e) {
|
|
198
|
+
op = [
|
|
199
|
+
6,
|
|
200
|
+
e
|
|
201
|
+
];
|
|
202
|
+
y = 0;
|
|
203
|
+
} finally{
|
|
204
|
+
f = t = 0;
|
|
205
|
+
}
|
|
206
|
+
if (op[0] & 5) throw op[1];
|
|
207
|
+
return {
|
|
208
|
+
value: op[0] ? op[1] : void 0,
|
|
209
|
+
done: true
|
|
210
|
+
};
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
import Property from "./property";
|
|
214
|
+
import { genNonDuplicateId, JSONCopy, referenceError, updateValueFromKeys } from "@byteluck-fe/model-driven-shared";
|
|
215
|
+
import { createValidator } from "../Validator";
|
|
216
|
+
import { controlHooksEmitter } from "../controlHooksEmitter";
|
|
123
217
|
var Control = /*#__PURE__*/ function _target() {
|
|
124
218
|
"use strict";
|
|
125
219
|
function Control(props) {
|
|
126
220
|
var _this = this;
|
|
127
|
-
|
|
128
|
-
this
|
|
129
|
-
|
|
130
|
-
this
|
|
131
|
-
this
|
|
132
|
-
this
|
|
133
|
-
this
|
|
134
|
-
this
|
|
135
|
-
|
|
221
|
+
_class_call_check(this, Control);
|
|
222
|
+
_define_property(this, "id", void 0 // 唯一标识符
|
|
223
|
+
);
|
|
224
|
+
_define_property(this, "name", void 0);
|
|
225
|
+
_define_property(this, "icon", void 0);
|
|
226
|
+
_define_property(this, "type", void 0);
|
|
227
|
+
_define_property(this, "controlType", void 0);
|
|
228
|
+
_define_property(this, "props", void 0);
|
|
229
|
+
_define_property(this, "setting", []);
|
|
230
|
+
_define_property(this, "fieldType", void 0);
|
|
231
|
+
_define_property(this, "eventKeys", []);
|
|
232
|
+
_define_property(this, "customEvents", []);
|
|
233
|
+
_define_property(this, "parent", null);
|
|
234
|
+
_define_property(this, "updateSetting", updateSetting);
|
|
235
|
+
_define_property(this, "removeSetting", removeSetting);
|
|
236
|
+
this._callControlHooks("preInstance", props);
|
|
237
|
+
var _ref = _instanceof(this, Control) ? this.constructor : void 0, controlName = _ref.controlName, controlIcon = _ref.controlIcon, controlType = _ref.controlType, controlFieldType = _ref.controlFieldType, controlEventKeys = _ref.controlEventKeys, controlCustomEvents = _ref.controlCustomEvents, name = _ref.name, setting = _ref.setting;
|
|
136
238
|
if (!(controlName && controlIcon && controlType)) {
|
|
137
239
|
referenceError("The ".concat(name, " controlName,controlIcon,controlType is not define"));
|
|
138
240
|
}
|
|
139
|
-
var
|
|
140
|
-
this.id = (
|
|
241
|
+
var _props_id;
|
|
242
|
+
this.id = (_props_id = props === null || props === void 0 ? void 0 : props.id) !== null && _props_id !== void 0 ? _props_id : genNonDuplicateId(10);
|
|
141
243
|
this.name = controlName;
|
|
142
244
|
this.icon = controlIcon;
|
|
143
|
-
var
|
|
144
|
-
this.type = (
|
|
245
|
+
var _props_type;
|
|
246
|
+
this.type = (_props_type = props === null || props === void 0 ? void 0 : props.type) !== null && _props_type !== void 0 ? _props_type : controlType;
|
|
145
247
|
this.props = new Property(props === null || props === void 0 ? void 0 : props.props, (_instanceof(this, Control) ? this.constructor : void 0).controlName);
|
|
146
|
-
var
|
|
147
|
-
this.controlType = (
|
|
248
|
+
var _props_controlType;
|
|
249
|
+
this.controlType = (_props_controlType = props === null || props === void 0 ? void 0 : props.controlType) !== null && _props_controlType !== void 0 ? _props_controlType : "base";
|
|
148
250
|
this.setting = JSONCopy(setting);
|
|
149
|
-
var
|
|
150
|
-
this.fieldType = (
|
|
251
|
+
var _props_fieldType;
|
|
252
|
+
this.fieldType = (_props_fieldType = props === null || props === void 0 ? void 0 : props.fieldType) !== null && _props_fieldType !== void 0 ? _props_fieldType : controlFieldType;
|
|
151
253
|
this.eventKeys = JSONCopy(controlEventKeys);
|
|
152
254
|
this.customEvents = JSONCopy(controlCustomEvents);
|
|
153
255
|
Promise.resolve().then(function() {
|
|
154
|
-
_this._callControlHooks(
|
|
256
|
+
_this._callControlHooks("postInstance", props);
|
|
155
257
|
});
|
|
156
258
|
}
|
|
157
|
-
|
|
259
|
+
_create_class(Control, [
|
|
158
260
|
{
|
|
159
261
|
key: "rules",
|
|
160
262
|
get: function get() {
|
|
@@ -172,25 +274,25 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
172
274
|
args[_key] = arguments[_key];
|
|
173
275
|
}
|
|
174
276
|
var _controlHooksEmitter;
|
|
175
|
-
var _args =
|
|
277
|
+
var _args = _to_array(args), key = _args[0], arg = _args.slice(1);
|
|
176
278
|
return (_controlHooksEmitter = controlHooksEmitter).emit.apply(_controlHooksEmitter, [
|
|
177
279
|
key,
|
|
178
280
|
this
|
|
179
|
-
].concat(
|
|
281
|
+
].concat(_to_consumable_array(arg)));
|
|
180
282
|
}
|
|
181
283
|
},
|
|
182
284
|
{
|
|
183
285
|
key: "preUpdate",
|
|
184
286
|
value: function preUpdate(key, value) {
|
|
185
287
|
// 在修改props之前
|
|
186
|
-
this._callControlHooks(
|
|
288
|
+
this._callControlHooks("preUpdateProps", key, value);
|
|
187
289
|
}
|
|
188
290
|
},
|
|
189
291
|
{
|
|
190
292
|
key: "postUpdate",
|
|
191
293
|
value: function postUpdate(key, value) {
|
|
192
294
|
// 在修改props之后
|
|
193
|
-
this._callControlHooks(
|
|
295
|
+
this._callControlHooks("postUpdateProps", key, value);
|
|
194
296
|
}
|
|
195
297
|
},
|
|
196
298
|
{
|
|
@@ -206,24 +308,27 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
206
308
|
key: "preValidate",
|
|
207
309
|
value: function preValidate() {
|
|
208
310
|
var _this = this;
|
|
209
|
-
return
|
|
311
|
+
return _async_to_generator(function() {
|
|
210
312
|
var rules, results, result;
|
|
211
|
-
return
|
|
212
|
-
|
|
313
|
+
return _ts_generator(this, function(_state) {
|
|
314
|
+
switch(_state.label){
|
|
213
315
|
case 0:
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
return
|
|
217
|
-
|
|
218
|
-
|
|
316
|
+
// 在处理validate之前,预留的钩子函数,允许在validate之前处理一些数据
|
|
317
|
+
rules = _object_spread({}, _this.rules);
|
|
318
|
+
return [
|
|
319
|
+
4,
|
|
320
|
+
_this._callControlHooks("preValidate", rules)
|
|
321
|
+
];
|
|
322
|
+
case 1:
|
|
323
|
+
results = _state.sent();
|
|
219
324
|
result = results[results.length - 1];
|
|
220
|
-
return
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
325
|
+
return [
|
|
326
|
+
2,
|
|
327
|
+
result === false ? undefined : result
|
|
328
|
+
];
|
|
224
329
|
}
|
|
225
|
-
}
|
|
226
|
-
})
|
|
330
|
+
});
|
|
331
|
+
})();
|
|
227
332
|
}
|
|
228
333
|
},
|
|
229
334
|
{
|
|
@@ -231,16 +336,18 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
231
336
|
value: // property校验
|
|
232
337
|
function validate(messages, ignore) {
|
|
233
338
|
var _this = this;
|
|
234
|
-
return
|
|
235
|
-
var result, rules, validator;
|
|
236
|
-
return
|
|
237
|
-
|
|
339
|
+
return _async_to_generator(function() {
|
|
340
|
+
var result, rules, validator, err;
|
|
341
|
+
return _ts_generator(this, function(_state) {
|
|
342
|
+
switch(_state.label){
|
|
238
343
|
case 0:
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
344
|
+
return [
|
|
345
|
+
4,
|
|
346
|
+
_this.preValidate()
|
|
347
|
+
];
|
|
348
|
+
case 1:
|
|
349
|
+
result = _state.sent();
|
|
350
|
+
rules = result !== undefined ? result : _object_spread({}, _this.rules);
|
|
244
351
|
if (Array.isArray(ignore)) {
|
|
245
352
|
ignore.forEach(function(key) {
|
|
246
353
|
if (rules.hasOwnProperty(key)) {
|
|
@@ -249,29 +356,37 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
249
356
|
});
|
|
250
357
|
}
|
|
251
358
|
validator = createValidator(rules, messages);
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
359
|
+
_state.label = 2;
|
|
360
|
+
case 2:
|
|
361
|
+
_state.trys.push([
|
|
362
|
+
2,
|
|
363
|
+
4,
|
|
364
|
+
,
|
|
365
|
+
5
|
|
366
|
+
]);
|
|
367
|
+
return [
|
|
368
|
+
4,
|
|
369
|
+
validator.validate(_this.props)
|
|
370
|
+
];
|
|
371
|
+
case 3:
|
|
372
|
+
_state.sent();
|
|
373
|
+
return [
|
|
374
|
+
2,
|
|
375
|
+
true
|
|
376
|
+
];
|
|
377
|
+
case 4:
|
|
378
|
+
err = _state.sent();
|
|
379
|
+
if (!err.control) {
|
|
380
|
+
err.control = _this;
|
|
262
381
|
}
|
|
263
|
-
throw
|
|
264
|
-
case
|
|
265
|
-
|
|
266
|
-
|
|
382
|
+
throw err;
|
|
383
|
+
case 5:
|
|
384
|
+
return [
|
|
385
|
+
2
|
|
386
|
+
];
|
|
267
387
|
}
|
|
268
|
-
}
|
|
269
|
-
|
|
270
|
-
6,
|
|
271
|
-
12
|
|
272
|
-
]
|
|
273
|
-
]);
|
|
274
|
-
}))();
|
|
388
|
+
});
|
|
389
|
+
})();
|
|
275
390
|
}
|
|
276
391
|
},
|
|
277
392
|
{
|
|
@@ -281,7 +396,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
281
396
|
var fieldType = this.fieldType;
|
|
282
397
|
var controlId = this.id;
|
|
283
398
|
var type = this.type;
|
|
284
|
-
var
|
|
399
|
+
var _this_props = this.props, dataBind = _this_props.dataBind, datasourceBind = _this_props.datasourceBind, optionConfig = _this_props.optionConfig, caption = _this_props.caption, required = _this_props.required, maxLength = _this_props.maxLength, options = _this_props.options, encrypted = _this_props.encrypted, encryptedMode = _this_props.encryptedMode;
|
|
285
400
|
if (!fieldType && !dataBind && !datasourceBind) return;
|
|
286
401
|
var dataBindModelType = {
|
|
287
402
|
parentId: parentId,
|
|
@@ -295,13 +410,13 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
295
410
|
dataBindModelType.dataBind = dataBind;
|
|
296
411
|
}
|
|
297
412
|
switch(optionConfig){
|
|
298
|
-
case
|
|
413
|
+
case "datasource":
|
|
299
414
|
case undefined:
|
|
300
415
|
if (datasourceBind) {
|
|
301
416
|
dataBindModelType.datasourceBind = datasourceBind;
|
|
302
417
|
}
|
|
303
418
|
break;
|
|
304
|
-
case
|
|
419
|
+
case "custom":
|
|
305
420
|
dataBindModelType.props.options = options;
|
|
306
421
|
break;
|
|
307
422
|
}
|
|
@@ -324,7 +439,7 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
324
439
|
key: "preToSchema",
|
|
325
440
|
value: function preToSchema() {
|
|
326
441
|
// 在处理Schema之前,预留的钩子函数,允许在toSchema之前处理一些数据
|
|
327
|
-
this._callControlHooks(
|
|
442
|
+
this._callControlHooks("preToSchema", this);
|
|
328
443
|
}
|
|
329
444
|
},
|
|
330
445
|
{
|
|
@@ -344,10 +459,10 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
344
459
|
{
|
|
345
460
|
key: "updateBasicControl",
|
|
346
461
|
value: function updateBasicControl(key, setting) {
|
|
347
|
-
if (key !==
|
|
462
|
+
if (key !== "setting") return;
|
|
348
463
|
if (setting.add) {
|
|
349
|
-
var
|
|
350
|
-
(
|
|
464
|
+
var _this_setting;
|
|
465
|
+
(_this_setting = this.setting).push.apply(_this_setting, _to_consumable_array(setting.add));
|
|
351
466
|
}
|
|
352
467
|
if (setting.remove) {
|
|
353
468
|
this.removeSettingItem(setting.remove);
|
|
@@ -360,15 +475,20 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
360
475
|
]);
|
|
361
476
|
return Control;
|
|
362
477
|
}();
|
|
363
|
-
Control
|
|
364
|
-
Control
|
|
365
|
-
Control
|
|
366
|
-
Control
|
|
367
|
-
|
|
368
|
-
Control
|
|
369
|
-
Control
|
|
370
|
-
|
|
371
|
-
Control
|
|
478
|
+
_define_property(Control, "controlName", "控件");
|
|
479
|
+
_define_property(Control, "controlIcon", "icon");
|
|
480
|
+
_define_property(Control, "controlType", "control");
|
|
481
|
+
_define_property(Control, "controlFieldType", void 0);
|
|
482
|
+
// 控件可以触发的事件key
|
|
483
|
+
_define_property(Control, "controlEventKeys", []);
|
|
484
|
+
_define_property(Control, "controlCustomEvents", []);
|
|
485
|
+
// setting应该是全量的设置项,外部控制,在初始化的时候会deepCopy一份
|
|
486
|
+
_define_property(Control, "setting", []);
|
|
487
|
+
_define_property(Control, "__is_control__", true);
|
|
488
|
+
// 删除指定的settingItem
|
|
489
|
+
_define_property(Control, "removeSettingItem", removeSetting);
|
|
490
|
+
// 修改指定的settingItem的visible
|
|
491
|
+
_define_property(Control, "updateSettingItem", updateSetting);
|
|
372
492
|
export default Control;
|
|
373
493
|
export { Control as DesignerControl };
|
|
374
494
|
/**
|
|
@@ -382,20 +502,20 @@ export { Control as DesignerControl };
|
|
|
382
502
|
];
|
|
383
503
|
deleteKeys.forEach(function(deleteKey) {
|
|
384
504
|
// 是否存在子项
|
|
385
|
-
var isHasItem = typeof deleteKey !==
|
|
505
|
+
var isHasItem = typeof deleteKey !== "string";
|
|
386
506
|
// @ts-ignore
|
|
387
507
|
var settingIndex = _this.setting.findIndex(function(option) {
|
|
388
508
|
return option.key === (isHasItem ? deleteKey.key : deleteKey);
|
|
389
509
|
});
|
|
390
510
|
// 移除对应选项
|
|
391
511
|
if (settingIndex !== -1) {
|
|
392
|
-
var
|
|
393
|
-
isHasItem ? _this.setting[settingIndex].showItems = (
|
|
512
|
+
var _this_setting_settingIndex_showItems, _this_setting_settingIndex_showItems1;
|
|
513
|
+
isHasItem ? _this.setting[settingIndex].showItems = (_this_setting_settingIndex_showItems = _this.setting[settingIndex].showItems) === null || _this_setting_settingIndex_showItems === void 0 ? void 0 : _this_setting_settingIndex_showItems.filter(function(item) {
|
|
394
514
|
return !deleteKey.hideItems.includes(item);
|
|
395
515
|
}) : _this.setting.splice(settingIndex, 1);
|
|
396
516
|
// 子项长度为0,自动移除当前设置项
|
|
397
517
|
isHasItem && // @ts-ignore
|
|
398
|
-
!((
|
|
518
|
+
!((_this_setting_settingIndex_showItems1 = _this.setting[settingIndex].showItems) === null || _this_setting_settingIndex_showItems1 === void 0 ? void 0 : _this_setting_settingIndex_showItems1.length) && // @ts-ignore
|
|
399
519
|
_this.setting.splice(settingIndex, 1);
|
|
400
520
|
}
|
|
401
521
|
});
|
|
@@ -409,7 +529,7 @@ export { Control as DesignerControl };
|
|
|
409
529
|
* @param value.type 默认是replace替换,可以更改为push新增
|
|
410
530
|
* */ function updateSetting(settingKey, value) {
|
|
411
531
|
var _this = this;
|
|
412
|
-
var keys = typeof settingKey ===
|
|
532
|
+
var keys = typeof settingKey === "string" ? [
|
|
413
533
|
settingKey
|
|
414
534
|
] : settingKey;
|
|
415
535
|
keys.forEach(function(key) {
|
|
@@ -418,16 +538,16 @@ export { Control as DesignerControl };
|
|
|
418
538
|
return item.key === key;
|
|
419
539
|
});
|
|
420
540
|
if (settingItem) {
|
|
421
|
-
if (typeof value ===
|
|
541
|
+
if (typeof value === "boolean") {
|
|
422
542
|
settingItem.visible = value;
|
|
423
|
-
} else if (typeof value ===
|
|
424
|
-
var
|
|
425
|
-
var type = (
|
|
426
|
-
if (type ===
|
|
543
|
+
} else if (typeof value === "object") {
|
|
544
|
+
var _value_type;
|
|
545
|
+
var type = (_value_type = value.type) !== null && _value_type !== void 0 ? _value_type : "replace";
|
|
546
|
+
if (type === "replace") {
|
|
427
547
|
settingItem.showItems = value.showItems;
|
|
428
548
|
} else {
|
|
429
|
-
var
|
|
430
|
-
(
|
|
549
|
+
var _settingItem_showItems;
|
|
550
|
+
(_settingItem_showItems = settingItem.showItems).push.apply(_settingItem_showItems, _to_consumable_array(value.showItems));
|
|
431
551
|
}
|
|
432
552
|
}
|
|
433
553
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import Designer from
|
|
2
|
-
import Runtime from
|
|
3
|
-
import Property from
|
|
1
|
+
import Designer from "./designer";
|
|
2
|
+
import Runtime from "./runtime";
|
|
3
|
+
import Property from "./property";
|
|
4
4
|
export default {
|
|
5
5
|
Designer: Designer,
|
|
6
6
|
Runtime: Runtime,
|
|
7
7
|
Property: Property
|
|
8
8
|
};
|
|
9
|
-
export * from
|
|
10
|
-
export * from
|
|
11
|
-
export * from
|
|
12
|
-
export * from
|
|
9
|
+
export * from "./designer";
|
|
10
|
+
export * from "./runtime";
|
|
11
|
+
export * from "./property";
|
|
12
|
+
export * from "./types";
|