@byteluck-fe/model-driven-driven 2.7.0-alpha.8 → 2.7.0-beta
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 +78 -98
- package/dist/esm/Plugin.js +2 -2
- package/dist/esm/Store.js +38 -38
- package/dist/esm/designerUtils.js +3 -2
- package/dist/esm/utils.js +33 -32
- package/dist/index.umd.js +3 -3
- package/package.json +6 -6
package/dist/esm/utils.js
CHANGED
|
@@ -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,10 +38,10 @@ function _asyncToGenerator(fn) {
|
|
|
38
38
|
});
|
|
39
39
|
};
|
|
40
40
|
}
|
|
41
|
-
function
|
|
41
|
+
function _iterable_to_array(iter) {
|
|
42
42
|
if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
|
|
43
43
|
}
|
|
44
|
-
function
|
|
44
|
+
function _iterable_to_array_limit(arr, i) {
|
|
45
45
|
var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
|
|
46
46
|
if (_i == null) return;
|
|
47
47
|
var _arr = [];
|
|
@@ -65,27 +65,27 @@ function _iterableToArrayLimit(arr, i) {
|
|
|
65
65
|
}
|
|
66
66
|
return _arr;
|
|
67
67
|
}
|
|
68
|
-
function
|
|
68
|
+
function _non_iterable_rest() {
|
|
69
69
|
throw new TypeError("Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
70
70
|
}
|
|
71
|
-
function
|
|
71
|
+
function _non_iterable_spread() {
|
|
72
72
|
throw new TypeError("Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
|
|
73
73
|
}
|
|
74
|
-
function
|
|
75
|
-
return
|
|
74
|
+
function _sliced_to_array(arr, i) {
|
|
75
|
+
return _array_with_holes(arr) || _iterable_to_array_limit(arr, i) || _unsupported_iterable_to_array(arr, i) || _non_iterable_rest();
|
|
76
76
|
}
|
|
77
|
-
function
|
|
78
|
-
return
|
|
77
|
+
function _to_consumable_array(arr) {
|
|
78
|
+
return _array_without_holes(arr) || _iterable_to_array(arr) || _unsupported_iterable_to_array(arr) || _non_iterable_spread();
|
|
79
79
|
}
|
|
80
|
-
function
|
|
80
|
+
function _unsupported_iterable_to_array(o, minLen) {
|
|
81
81
|
if (!o) return;
|
|
82
|
-
if (typeof o === "string") return
|
|
82
|
+
if (typeof o === "string") return _array_like_to_array(o, minLen);
|
|
83
83
|
var n = Object.prototype.toString.call(o).slice(8, -1);
|
|
84
84
|
if (n === "Object" && o.constructor) n = o.constructor.name;
|
|
85
85
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
86
|
-
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return
|
|
86
|
+
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _array_like_to_array(o, minLen);
|
|
87
87
|
}
|
|
88
|
-
|
|
88
|
+
function _ts_generator(thisArg, body) {
|
|
89
89
|
var f, y, t, g, _ = {
|
|
90
90
|
label: 0,
|
|
91
91
|
sent: function() {
|
|
@@ -179,7 +179,7 @@ var __generator = this && this.__generator || function(thisArg, body) {
|
|
|
179
179
|
done: true
|
|
180
180
|
};
|
|
181
181
|
}
|
|
182
|
-
}
|
|
182
|
+
}
|
|
183
183
|
import { loopFormControl } from "./designerUtils";
|
|
184
184
|
import { CONTROL_BASE_TYPE, CONTROL_TYPE, FieldTypeToColumnType, isArray } from "@byteluck-fe/model-driven-shared";
|
|
185
185
|
import Designer from "./Designer";
|
|
@@ -320,9 +320,9 @@ function checkSchema(controls, messages, ignore) {
|
|
|
320
320
|
return _checkSchema.apply(this, arguments);
|
|
321
321
|
}
|
|
322
322
|
function _checkSchema() {
|
|
323
|
-
_checkSchema =
|
|
323
|
+
_checkSchema = _async_to_generator(function(controls, messages, ignore) {
|
|
324
324
|
var result;
|
|
325
|
-
return
|
|
325
|
+
return _ts_generator(this, function(_state) {
|
|
326
326
|
switch(_state.label){
|
|
327
327
|
case 0:
|
|
328
328
|
if (!Array.isArray(controls)) return [
|
|
@@ -377,8 +377,7 @@ var PermissionExcludeControlTypes = [
|
|
|
377
377
|
// 暂时不能控制权限
|
|
378
378
|
CONTROL_TYPE.TAB_PANE,
|
|
379
379
|
CONTROL_TYPE.TAB,
|
|
380
|
-
CONTROL_TYPE.CARD_GROUP
|
|
381
|
-
CONTROL_TYPE.ACTION_BAR
|
|
380
|
+
CONTROL_TYPE.CARD_GROUP
|
|
382
381
|
];
|
|
383
382
|
// 不可以编辑的控件
|
|
384
383
|
var cannotEditControlTypes = [
|
|
@@ -404,7 +403,7 @@ function generatePermissions(controls, parent) {
|
|
|
404
403
|
var result = [];
|
|
405
404
|
if (isArray(controls)) {
|
|
406
405
|
var _result;
|
|
407
|
-
(_result = result).push.apply(_result,
|
|
406
|
+
(_result = result).push.apply(_result, _to_consumable_array(controls.map(function(item) {
|
|
408
407
|
return generatePermissions(item, parent);
|
|
409
408
|
}).flat()));
|
|
410
409
|
} else {
|
|
@@ -412,13 +411,14 @@ function generatePermissions(controls, parent) {
|
|
|
412
411
|
var _controls_props = controls.props, caption = _controls_props.caption, content = _controls_props.content;
|
|
413
412
|
var permissionItem;
|
|
414
413
|
if (!PermissionExcludeControlTypes.includes(type)) {
|
|
414
|
+
var _parent;
|
|
415
415
|
var _parent_controlId;
|
|
416
416
|
permissionItem = {
|
|
417
417
|
controlId: controls.id,
|
|
418
418
|
caption: caption || content || controls.name,
|
|
419
419
|
type: controls.type,
|
|
420
420
|
controlType: controls.controlType,
|
|
421
|
-
parentId: (_parent_controlId = parent === null ||
|
|
421
|
+
parentId: (_parent_controlId = (_parent = parent) === null || _parent === void 0 ? void 0 : _parent.controlId) !== null && _parent_controlId !== void 0 ? _parent_controlId : null,
|
|
422
422
|
canEdit: !cannotEditControlTypes.includes(type),
|
|
423
423
|
canRead: true,
|
|
424
424
|
canHide: true,
|
|
@@ -437,8 +437,8 @@ function generatePermissions(controls, parent) {
|
|
|
437
437
|
// ) {
|
|
438
438
|
if (controls.controlType === CONTROL_BASE_TYPE.FORM || controls.controlType === CONTROL_BASE_TYPE.COLUMN) {
|
|
439
439
|
var //@ts-ignore
|
|
440
|
-
|
|
441
|
-
|
|
440
|
+
_controls_props_dataBind, _controls_props1, //@ts-ignore
|
|
441
|
+
_controls_props_dataBind1, _controls_props2;
|
|
442
442
|
if (((_controls_props1 = controls.props) === null || _controls_props1 === void 0 ? void 0 : (_controls_props_dataBind = _controls_props1.dataBind) === null || _controls_props_dataBind === void 0 ? void 0 : _controls_props_dataBind.fieldCode) !== undefined && ((_controls_props2 = controls.props) === null || _controls_props2 === void 0 ? void 0 : (_controls_props_dataBind1 = _controls_props2.dataBind) === null || _controls_props_dataBind1 === void 0 ? void 0 : _controls_props_dataBind1.fieldCode) !== "") {
|
|
443
443
|
permissionItem.group = "field";
|
|
444
444
|
}
|
|
@@ -446,13 +446,13 @@ function generatePermissions(controls, parent) {
|
|
|
446
446
|
result.push(permissionItem);
|
|
447
447
|
//追加vue容器权限
|
|
448
448
|
if (type === CONTROL_TYPE.VUE_FORM_ITEM) {
|
|
449
|
-
var _controls_props3,
|
|
449
|
+
var _controls_props_dataBind2, _controls_props3, _controls_props_dataBind3, _controls_props4, _permissions;
|
|
450
450
|
var vueFormItemGroup = "element";
|
|
451
451
|
if (((_controls_props3 = controls.props) === null || _controls_props3 === void 0 ? void 0 : (_controls_props_dataBind2 = _controls_props3.dataBind) === null || _controls_props_dataBind2 === void 0 ? void 0 : _controls_props_dataBind2.fieldCode) !== undefined && ((_controls_props4 = controls.props) === null || _controls_props4 === void 0 ? void 0 : (_controls_props_dataBind3 = _controls_props4.dataBind) === null || _controls_props_dataBind3 === void 0 ? void 0 : _controls_props_dataBind3.fieldCode) !== "") {
|
|
452
452
|
vueFormItemGroup = "field";
|
|
453
453
|
}
|
|
454
454
|
var permissions = controls.props["permissions"];
|
|
455
|
-
permissions === null ||
|
|
455
|
+
(_permissions = permissions) === null || _permissions === void 0 ? void 0 : _permissions.map(function(item) {
|
|
456
456
|
var _controls_id;
|
|
457
457
|
permissionItem = {
|
|
458
458
|
controlId: item.key,
|
|
@@ -471,9 +471,10 @@ function generatePermissions(controls, parent) {
|
|
|
471
471
|
} else if (type === CONTROL_TYPE.OPERATION_COLUMN) {
|
|
472
472
|
// 列表的操作列单独处理
|
|
473
473
|
Object.entries(LIST_OPERATION_BUTTON_PERMISSIONS_MAPS).reduce(function(result, param) {
|
|
474
|
-
var _param =
|
|
474
|
+
var _param = _sliced_to_array(param, 2), key = _param[0], _param_ = _param[1], caption = _param_.caption, controlId = _param_.id;
|
|
475
475
|
var operationItem = controls.props[key];
|
|
476
476
|
if (operationItem && operationItem.isShow) {
|
|
477
|
+
var _parent;
|
|
477
478
|
var _parent_controlId;
|
|
478
479
|
// 只能控制是否显示
|
|
479
480
|
result.push({
|
|
@@ -481,7 +482,7 @@ function generatePermissions(controls, parent) {
|
|
|
481
482
|
caption: caption,
|
|
482
483
|
type: controls.type,
|
|
483
484
|
controlType: controls.controlType,
|
|
484
|
-
parentId: (_parent_controlId = parent === null ||
|
|
485
|
+
parentId: (_parent_controlId = (_parent = parent) === null || _parent === void 0 ? void 0 : _parent.controlId) !== null && _parent_controlId !== void 0 ? _parent_controlId : null,
|
|
485
486
|
canEdit: false,
|
|
486
487
|
canRead: false,
|
|
487
488
|
canHide: true,
|
|
@@ -513,7 +514,7 @@ function generatePermissions(controls, parent) {
|
|
|
513
514
|
// }
|
|
514
515
|
if (controls.children) {
|
|
515
516
|
var _result1;
|
|
516
|
-
(_result1 = result).push.apply(_result1,
|
|
517
|
+
(_result1 = result).push.apply(_result1, _to_consumable_array(controls.children.map(function(item) {
|
|
517
518
|
return generatePermissions(item, parent);
|
|
518
519
|
}).flat()));
|
|
519
520
|
}
|
|
@@ -521,7 +522,7 @@ function generatePermissions(controls, parent) {
|
|
|
521
522
|
if (controls.controlType === CONTROL_BASE_TYPE.LIST) {
|
|
522
523
|
var // 明细子表和列表的需要给parentId
|
|
523
524
|
_result2;
|
|
524
|
-
(_result2 = result).push.apply(_result2,
|
|
525
|
+
(_result2 = result).push.apply(_result2, _to_consumable_array(controls.props.headers.map(function(item) {
|
|
525
526
|
return generatePermissions(item, permissionItem);
|
|
526
527
|
}).flat()));
|
|
527
528
|
}
|