@byteluck-fe/model-driven-core 2.7.0-alpha.13 → 2.7.0-alpha.15a
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 +99 -243
- package/dist/esm/common/BaseControl/index.js +7 -7
- package/dist/esm/common/BaseControl/property.js +14 -42
- package/dist/esm/common/BaseControl/runtime.js +21 -41
- package/dist/esm/common/ColumnControl/designer.js +5 -19
- package/dist/esm/common/ColumnControl/index.js +6 -6
- package/dist/esm/common/ColumnControl/property.js +47 -95
- package/dist/esm/common/ColumnControl/runtime.js +5 -19
- package/dist/esm/common/ControlArray.js +21 -19
- package/dist/esm/common/FormControl/designer.js +10 -25
- package/dist/esm/common/FormControl/index.js +6 -6
- package/dist/esm/common/FormControl/property.js +95 -157
- package/dist/esm/common/FormControl/runtime.js +5 -20
- package/dist/esm/common/LayoutControl/designer.js +30 -158
- package/dist/esm/common/LayoutControl/index.js +6 -6
- package/dist/esm/common/LayoutControl/property.js +3 -3
- package/dist/esm/common/LayoutControl/runtime.js +7 -22
- package/dist/esm/common/ListControl/designer.js +29 -154
- package/dist/esm/common/ListControl/index.js +6 -6
- package/dist/esm/common/ListControl/property.js +6 -21
- package/dist/esm/common/ListControl/runtime.js +8 -23
- package/dist/esm/common/SearchViewControl/designer.js +5 -19
- package/dist/esm/common/SearchViewControl/index.js +6 -6
- package/dist/esm/common/SearchViewControl/property.js +4 -18
- package/dist/esm/common/SearchViewControl/runtime.js +5 -19
- package/dist/esm/common/Validator.js +5 -5
- package/dist/esm/common/WrapControl/designer.js +5 -19
- package/dist/esm/common/WrapControl/index.js +6 -6
- package/dist/esm/common/WrapControl/property.js +3 -3
- package/dist/esm/common/WrapControl/runtime.js +5 -19
- 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 +84 -33
- package/dist/esm/framework/index.js +332 -769
- package/dist/esm/index.js +4 -4
- package/dist/index.umd.js +1 -1
- package/dist/types/common/BaseControl/designer.d.ts +2 -5
- package/dist/types/common/BaseControl/property.d.ts +2 -0
- package/dist/types/common/BaseControl/runtime.d.ts +2 -1
- package/dist/types/common/ControlArray.d.ts +4 -3
- package/dist/types/common/ListControl/property.d.ts +1 -1
- package/dist/types/common/Validator.d.ts +1 -1
- package/dist/types/common/controlHooksEmitter.d.ts +1 -1
- package/dist/types/framework/RegisterControls.d.ts +4 -1
- package/dist/types/type.d.ts +23 -23
- package/package.json +3 -3
|
@@ -17,58 +17,38 @@ function _createClass(Constructor, protoProps, staticProps) {
|
|
|
17
17
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
|
18
18
|
return Constructor;
|
|
19
19
|
}
|
|
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
20
|
function _instanceof(left, right) {
|
|
34
21
|
if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) {
|
|
35
|
-
return
|
|
22
|
+
return right[Symbol.hasInstance](left);
|
|
36
23
|
} else {
|
|
37
24
|
return left instanceof right;
|
|
38
25
|
}
|
|
39
26
|
}
|
|
40
|
-
import Property from
|
|
41
|
-
import { genNonDuplicateId, referenceError } from
|
|
42
|
-
import { PAGE_STATUS } from
|
|
27
|
+
import Property from './property';
|
|
28
|
+
import { genNonDuplicateId, referenceError } from '@byteluck-fe/model-driven-shared';
|
|
29
|
+
import { PAGE_STATUS } from '../../framework';
|
|
43
30
|
var Control = /*#__PURE__*/ function _target() {
|
|
44
31
|
"use strict";
|
|
45
32
|
function Control(props) {
|
|
46
33
|
_classCallCheck(this, Control);
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
_defineProperty(this, "controlType", void 0);
|
|
51
|
-
_defineProperty(this, "props", void 0);
|
|
52
|
-
_defineProperty(this, "fieldType", void 0);
|
|
53
|
-
_defineProperty(this, "customEvents", []);
|
|
54
|
-
_defineProperty(this, "pageStatus", void 0);
|
|
55
|
-
_defineProperty(this, "parent", null);
|
|
56
|
-
var _ref = _instanceof(this, Control) ? this.constructor : void 0, controlType = _ref.controlType, controlFieldType = _ref.controlFieldType, name = _ref.name, controlCustomEvents = _ref.controlCustomEvents;
|
|
34
|
+
this.customEvents = [];
|
|
35
|
+
this.parent = null;
|
|
36
|
+
var ref = _instanceof(this, Control) ? this.constructor : void 0, controlType = ref.controlType, controlFieldType = ref.controlFieldType, name = ref.name, controlCustomEvents = ref.controlCustomEvents;
|
|
57
37
|
if (!controlType) {
|
|
58
38
|
referenceError("The ".concat(name, " controlType is not define"));
|
|
59
39
|
}
|
|
60
|
-
var
|
|
61
|
-
this.id = (
|
|
62
|
-
var
|
|
63
|
-
this.type = (
|
|
40
|
+
var ref1;
|
|
41
|
+
this.id = (ref1 = props === null || props === void 0 ? void 0 : props.id) !== null && ref1 !== void 0 ? ref1 : genNonDuplicateId(10);
|
|
42
|
+
var ref2;
|
|
43
|
+
this.type = (ref2 = props === null || props === void 0 ? void 0 : props.type) !== null && ref2 !== void 0 ? ref2 : controlType;
|
|
64
44
|
this.props = new Property(props === null || props === void 0 ? void 0 : props.props);
|
|
65
45
|
this.customEvents = controlCustomEvents;
|
|
66
|
-
var
|
|
67
|
-
this.controlType = (
|
|
68
|
-
var
|
|
69
|
-
this.fieldType = (
|
|
70
|
-
var
|
|
71
|
-
this.pageStatus = (
|
|
46
|
+
var ref3;
|
|
47
|
+
this.controlType = (ref3 = props === null || props === void 0 ? void 0 : props.controlType) !== null && ref3 !== void 0 ? ref3 : 'base';
|
|
48
|
+
var ref4;
|
|
49
|
+
this.fieldType = (ref4 = props === null || props === void 0 ? void 0 : props.fieldType) !== null && ref4 !== void 0 ? ref4 : controlFieldType;
|
|
50
|
+
var ref5;
|
|
51
|
+
this.pageStatus = (ref5 = props === null || props === void 0 ? void 0 : props.pageStatus) !== null && ref5 !== void 0 ? ref5 : PAGE_STATUS.UNKNOWN;
|
|
72
52
|
}
|
|
73
53
|
_createClass(Control, [
|
|
74
54
|
{
|
|
@@ -85,9 +65,9 @@ var Control = /*#__PURE__*/ function _target() {
|
|
|
85
65
|
]);
|
|
86
66
|
return Control;
|
|
87
67
|
}();
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
68
|
+
Control.mode = 'Runtime';
|
|
69
|
+
Control.controlType = 'control';
|
|
70
|
+
Control.__is_control__ = true;
|
|
71
|
+
Control.controlCustomEvents = [];
|
|
92
72
|
export default Control;
|
|
93
73
|
export { Control as RuntimeControl };
|
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,18 +69,17 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { DesignerControl } from
|
|
86
|
-
import ColumnControlProperty from
|
|
87
|
-
var ColumnControl = /*#__PURE__*/ function(
|
|
72
|
+
import { DesignerControl } from '../BaseControl';
|
|
73
|
+
import ColumnControlProperty from './property';
|
|
74
|
+
var ColumnControl = /*#__PURE__*/ function(DesignerControl1) {
|
|
88
75
|
"use strict";
|
|
89
|
-
_inherits(ColumnControl,
|
|
76
|
+
_inherits(ColumnControl, DesignerControl1);
|
|
90
77
|
var _super = _createSuper(ColumnControl);
|
|
91
78
|
function ColumnControl(props) {
|
|
92
79
|
_classCallCheck(this, ColumnControl);
|
|
93
80
|
var _this;
|
|
94
81
|
_this = _super.call(this, props);
|
|
95
|
-
|
|
96
|
-
_defineProperty(_assertThisInitialized(_this), "props", void 0);
|
|
82
|
+
_this.controlType = 'column';
|
|
97
83
|
_this.props = new ColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
98
84
|
return _this;
|
|
99
85
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
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
|
|
9
|
+
export * from './designer';
|
|
10
|
+
export * from './runtime';
|
|
11
|
+
export * from './property';
|
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,99 +69,64 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { Property, PropertyRules } from
|
|
86
|
-
import { RulesMessage } from
|
|
87
|
-
import { initOptionAndDataSourceRules } from
|
|
88
|
-
import { DataBind, AutoWidth } from
|
|
89
|
-
var ColumnControlPropertyRules = /*#__PURE__*/ function(
|
|
72
|
+
import { Property, PropertyRules } from '../BaseControl';
|
|
73
|
+
import { RulesMessage } from '@byteluck-fe/model-driven-shared';
|
|
74
|
+
import { initOptionAndDataSourceRules } from '../initOptionAndDataSourceRules';
|
|
75
|
+
import { DataBind, AutoWidth } from '../../framework';
|
|
76
|
+
var ColumnControlPropertyRules = /*#__PURE__*/ function(PropertyRules1) {
|
|
90
77
|
"use strict";
|
|
91
|
-
_inherits(ColumnControlPropertyRules,
|
|
78
|
+
_inherits(ColumnControlPropertyRules, PropertyRules1);
|
|
92
79
|
var _super = _createSuper(ColumnControlPropertyRules);
|
|
93
80
|
function ColumnControlPropertyRules(props) {
|
|
94
81
|
_classCallCheck(this, ColumnControlPropertyRules);
|
|
95
82
|
var _this;
|
|
96
83
|
_this = _super.call(this, props);
|
|
97
|
-
|
|
98
|
-
type:
|
|
84
|
+
_this.caption = {
|
|
85
|
+
type: 'string',
|
|
99
86
|
required: true,
|
|
100
|
-
message: RulesMessage.getMessage(
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
type:
|
|
87
|
+
message: RulesMessage.getMessage('pleaseEnterCaption')
|
|
88
|
+
};
|
|
89
|
+
_this.width = {
|
|
90
|
+
type: 'number',
|
|
104
91
|
required: false,
|
|
105
|
-
message: RulesMessage.getMessage(
|
|
106
|
-
}
|
|
107
|
-
_this.width.required = props.widthType ===
|
|
92
|
+
message: RulesMessage.getMessage('pleaseEnterColumnWidth')
|
|
93
|
+
};
|
|
94
|
+
_this.width.required = props.widthType === 'px';
|
|
108
95
|
return _this;
|
|
109
96
|
}
|
|
110
97
|
return ColumnControlPropertyRules;
|
|
111
98
|
}(PropertyRules);
|
|
112
|
-
/**
|
|
99
|
+
var ColumnControlProperty = /**
|
|
113
100
|
* 列基本属性
|
|
114
101
|
* @public
|
|
115
|
-
*/
|
|
102
|
+
*/ /*#__PURE__*/ function(Property1) {
|
|
116
103
|
"use strict";
|
|
117
|
-
_inherits(ColumnControlProperty,
|
|
104
|
+
_inherits(ColumnControlProperty, Property1);
|
|
118
105
|
var _super = _createSuper(ColumnControlProperty);
|
|
119
106
|
function ColumnControlProperty(props) {
|
|
120
107
|
_classCallCheck(this, ColumnControlProperty);
|
|
121
108
|
var _this;
|
|
122
109
|
_this = _super.call(this, props);
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
*/ _defineProperty(_assertThisInitialized(_this), "width", void 0);
|
|
131
|
-
/**
|
|
132
|
-
* 标题
|
|
133
|
-
*/ _defineProperty(_assertThisInitialized(_this), "caption", void 0);
|
|
134
|
-
/**
|
|
135
|
-
* 绑定数据项
|
|
136
|
-
*/ _defineProperty(_assertThisInitialized(_this), "dataBind", void 0);
|
|
137
|
-
/**
|
|
138
|
-
* 自适应页面宽度
|
|
139
|
-
*/ _defineProperty(_assertThisInitialized(_this), "autoWidth", void 0);
|
|
140
|
-
/**
|
|
141
|
-
* 冻结
|
|
142
|
-
* @defaultValue 'none'
|
|
143
|
-
*/ _defineProperty(_assertThisInitialized(_this), "fixed", void 0);
|
|
144
|
-
/**
|
|
145
|
-
* 表头排序
|
|
146
|
-
* @defaultValue true
|
|
147
|
-
*/ _defineProperty(_assertThisInitialized(_this), "sort", void 0);
|
|
148
|
-
/**
|
|
149
|
-
* 对齐
|
|
150
|
-
*/ _defineProperty(_assertThisInitialized(_this), "align", void 0);
|
|
151
|
-
/**
|
|
152
|
-
* @internal
|
|
153
|
-
*/ _defineProperty(_assertThisInitialized(_this), "colSpan", void 0);
|
|
154
|
-
/**
|
|
155
|
-
* 自动高度
|
|
156
|
-
* @defaultValue false
|
|
157
|
-
*/ _defineProperty(_assertThisInitialized(_this), "autoHeight", void 0);
|
|
158
|
-
var _props_width;
|
|
159
|
-
_this.width = (_props_width = props === null || props === void 0 ? void 0 : props.width) !== null && _props_width !== void 0 ? _props_width : 150;
|
|
160
|
-
_this.widthType = (props === null || props === void 0 ? void 0 : props.widthType) || "auto";
|
|
161
|
-
var _props_caption;
|
|
162
|
-
_this.caption = (_props_caption = props === null || props === void 0 ? void 0 : props.caption) !== null && _props_caption !== void 0 ? _props_caption : "";
|
|
163
|
-
var _props_fixed;
|
|
164
|
-
_this.fixed = (_props_fixed = props === null || props === void 0 ? void 0 : props.fixed) !== null && _props_fixed !== void 0 ? _props_fixed : "none";
|
|
110
|
+
var ref;
|
|
111
|
+
_this.width = (ref = props === null || props === void 0 ? void 0 : props.width) !== null && ref !== void 0 ? ref : 150;
|
|
112
|
+
_this.widthType = (props === null || props === void 0 ? void 0 : props.widthType) || 'auto';
|
|
113
|
+
var ref1;
|
|
114
|
+
_this.caption = (ref1 = props === null || props === void 0 ? void 0 : props.caption) !== null && ref1 !== void 0 ? ref1 : '';
|
|
115
|
+
var ref2;
|
|
116
|
+
_this.fixed = (ref2 = props === null || props === void 0 ? void 0 : props.fixed) !== null && ref2 !== void 0 ? ref2 : 'none';
|
|
165
117
|
_this.autoWidth = new AutoWidth(props === null || props === void 0 ? void 0 : props.autoWidth);
|
|
166
118
|
_this.dataBind = new DataBind(props === null || props === void 0 ? void 0 : props.dataBind);
|
|
167
|
-
var
|
|
168
|
-
_this.sort = (
|
|
119
|
+
var ref3;
|
|
120
|
+
_this.sort = (ref3 = props === null || props === void 0 ? void 0 : props.sort) !== null && ref3 !== void 0 ? ref3 : true;
|
|
169
121
|
_this.align = props === null || props === void 0 ? void 0 : props.align;
|
|
170
122
|
_this.colSpan = props === null || props === void 0 ? void 0 : props.colSpan;
|
|
171
|
-
var
|
|
172
|
-
_this.autoHeight = (
|
|
123
|
+
var ref4;
|
|
124
|
+
_this.autoHeight = (ref4 = props === null || props === void 0 ? void 0 : props.autoHeight) !== null && ref4 !== void 0 ? ref4 : false;
|
|
173
125
|
return _this;
|
|
174
126
|
}
|
|
175
127
|
return ColumnControlProperty;
|
|
176
128
|
}(Property);
|
|
177
|
-
|
|
129
|
+
ColumnControlProperty.Rules = ColumnControlPropertyRules;
|
|
178
130
|
var ColumnOptionAndDataSourcePropertyRules = /*#__PURE__*/ function(ColumnControlPropertyRules) {
|
|
179
131
|
"use strict";
|
|
180
132
|
_inherits(ColumnOptionAndDataSourcePropertyRules, ColumnControlPropertyRules);
|
|
@@ -183,27 +135,27 @@ var ColumnOptionAndDataSourcePropertyRules = /*#__PURE__*/ function(ColumnContro
|
|
|
183
135
|
_classCallCheck(this, ColumnOptionAndDataSourcePropertyRules);
|
|
184
136
|
var _this;
|
|
185
137
|
_this = _super.call(this, props);
|
|
186
|
-
|
|
187
|
-
type:
|
|
138
|
+
_this.optionConfig = {
|
|
139
|
+
type: 'enum',
|
|
188
140
|
enum: [
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
141
|
+
'custom',
|
|
142
|
+
'datasource',
|
|
143
|
+
'none'
|
|
192
144
|
],
|
|
193
|
-
message: RulesMessage.getMessage(
|
|
194
|
-
}
|
|
195
|
-
|
|
145
|
+
message: RulesMessage.getMessage('PleaseSelectTheCorrectOptionSettings')
|
|
146
|
+
};
|
|
147
|
+
_this.options = [
|
|
196
148
|
{
|
|
197
|
-
type:
|
|
198
|
-
message: RulesMessage.getMessage(
|
|
199
|
-
}
|
|
200
|
-
]
|
|
201
|
-
|
|
149
|
+
type: 'array',
|
|
150
|
+
message: RulesMessage.getMessage('isNotArray')
|
|
151
|
+
},
|
|
152
|
+
];
|
|
153
|
+
_this.datasourceBind = [
|
|
202
154
|
{
|
|
203
|
-
type:
|
|
204
|
-
message: RulesMessage.getMessage(
|
|
205
|
-
}
|
|
206
|
-
]
|
|
155
|
+
type: 'object',
|
|
156
|
+
message: RulesMessage.getMessage('isNotObject')
|
|
157
|
+
},
|
|
158
|
+
];
|
|
207
159
|
initOptionAndDataSourceRules.call(_assertThisInitialized(_this), props);
|
|
208
160
|
return _this;
|
|
209
161
|
}
|
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,18 +69,17 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { RuntimeControl } from
|
|
86
|
-
import ColumnControlProperty from
|
|
87
|
-
var ColumnControl = /*#__PURE__*/ function(
|
|
72
|
+
import { RuntimeControl } from '../BaseControl';
|
|
73
|
+
import ColumnControlProperty from './property';
|
|
74
|
+
var ColumnControl = /*#__PURE__*/ function(RuntimeControl1) {
|
|
88
75
|
"use strict";
|
|
89
|
-
_inherits(ColumnControl,
|
|
76
|
+
_inherits(ColumnControl, RuntimeControl1);
|
|
90
77
|
var _super = _createSuper(ColumnControl);
|
|
91
78
|
function ColumnControl(props) {
|
|
92
79
|
_classCallCheck(this, ColumnControl);
|
|
93
80
|
var _this;
|
|
94
81
|
_this = _super.call(this, props);
|
|
95
|
-
|
|
96
|
-
_defineProperty(_assertThisInitialized(_this), "props", void 0);
|
|
82
|
+
_this.controlType = 'column';
|
|
97
83
|
_this.props = new ColumnControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
98
84
|
return _this;
|
|
99
85
|
}
|
|
@@ -23,33 +23,35 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
23
23
|
if (n === "Map" || n === "Set") return Array.from(n);
|
|
24
24
|
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);
|
|
25
25
|
}
|
|
26
|
-
import { isArray, isPlainObject } from
|
|
26
|
+
import { isArray, isPlainObject } from '@byteluck-fe/model-driven-shared';
|
|
27
27
|
export function setPropertyDontEnum(obj, property) {
|
|
28
|
-
var
|
|
28
|
+
var ref;
|
|
29
29
|
// 如果没有被设置过不允许枚举的话,说明是第一次被设置,需要设置属性不允许枚举
|
|
30
|
-
if ((
|
|
30
|
+
if ((ref = Object.getOwnPropertyDescriptors(obj)[property]) === null || ref === void 0 ? void 0 : ref.enumerable) {
|
|
31
31
|
Object.defineProperty(obj, property, {
|
|
32
32
|
enumerable: false
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
35
|
}
|
|
36
|
-
export function defineParent(control, parent) {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
36
|
+
export function defineParent(control, parent, mode) {
|
|
37
|
+
if (mode === 'Designer') {
|
|
38
|
+
control.parent = parent;
|
|
39
|
+
// 如果没有被设置过不允许枚举的话,说明是第一次被代理,需要设置parent属性不允许枚举
|
|
40
|
+
setPropertyDontEnum(control, 'parent');
|
|
41
|
+
}
|
|
40
42
|
}
|
|
41
|
-
export function defineArrayParent(controls, parent) {
|
|
43
|
+
export function defineArrayParent(controls, parent, mode) {
|
|
42
44
|
controls.forEach(function(item) {
|
|
43
|
-
defineParent(item, parent);
|
|
45
|
+
defineParent(item, parent, mode);
|
|
44
46
|
});
|
|
45
47
|
}
|
|
46
|
-
var targetKey = Symbol(
|
|
48
|
+
var targetKey = Symbol('targetKey');
|
|
47
49
|
function getTargetValue(value) {
|
|
48
|
-
var
|
|
49
|
-
return (
|
|
50
|
+
var _targetKey;
|
|
51
|
+
return (_targetKey = value[targetKey]) !== null && _targetKey !== void 0 ? _targetKey : value;
|
|
50
52
|
}
|
|
51
|
-
function proxyState(target, parent) {
|
|
52
|
-
defineArrayParent(target, parent);
|
|
53
|
+
function proxyState(target, parent, mode) {
|
|
54
|
+
defineArrayParent(target, parent, mode);
|
|
53
55
|
return new Proxy(target, {
|
|
54
56
|
get: function get(t, p) {
|
|
55
57
|
for(var _len = arguments.length, args = new Array(_len > 2 ? _len - 2 : 0), _key = 2; _key < _len; _key++){
|
|
@@ -70,7 +72,7 @@ function proxyState(target, parent) {
|
|
|
70
72
|
}
|
|
71
73
|
var _Reflect;
|
|
72
74
|
// 更改长度为当前长度,代表没变,直接返回true,否则在safari 13.x版本的严格模式会引起页面崩溃
|
|
73
|
-
if (isArray(target) && property ===
|
|
75
|
+
if (isArray(target) && property === 'length' && value === target.length) {
|
|
74
76
|
return true;
|
|
75
77
|
}
|
|
76
78
|
var result = (_Reflect = Reflect).set.apply(_Reflect, [
|
|
@@ -79,21 +81,21 @@ function proxyState(target, parent) {
|
|
|
79
81
|
value
|
|
80
82
|
].concat(_toConsumableArray(args)));
|
|
81
83
|
if (isPlainObject(value)) {
|
|
82
|
-
defineParent(value, parent);
|
|
84
|
+
defineParent(value, parent, mode);
|
|
83
85
|
}
|
|
84
86
|
return result;
|
|
85
87
|
}
|
|
86
88
|
});
|
|
87
89
|
}
|
|
88
|
-
export function defineControlArrayToProperty(obj, property, initialValue, parent) {
|
|
90
|
+
export function defineControlArrayToProperty(obj, property, initialValue, parent, mode) {
|
|
89
91
|
var _parent = parent !== null && parent !== void 0 ? parent : obj;
|
|
90
|
-
var value = proxyState(getTargetValue(initialValue !== null && initialValue !== void 0 ? initialValue : []), _parent);
|
|
92
|
+
var value = proxyState(getTargetValue(initialValue !== null && initialValue !== void 0 ? initialValue : []), _parent, mode);
|
|
91
93
|
Object.defineProperty(obj, property, {
|
|
92
94
|
get: function get() {
|
|
93
95
|
return value;
|
|
94
96
|
},
|
|
95
97
|
set: function set(newValue) {
|
|
96
|
-
value = proxyState(getTargetValue(newValue), _parent);
|
|
98
|
+
value = proxyState(getTargetValue(newValue), _parent, mode);
|
|
97
99
|
},
|
|
98
100
|
enumerable: true
|
|
99
101
|
});
|
|
@@ -9,19 +9,6 @@ function _classCallCheck(instance, Constructor) {
|
|
|
9
9
|
throw new TypeError("Cannot call a class as a function");
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
|
-
function _defineProperty(obj, key, value) {
|
|
13
|
-
if (key in obj) {
|
|
14
|
-
Object.defineProperty(obj, key, {
|
|
15
|
-
value: value,
|
|
16
|
-
enumerable: true,
|
|
17
|
-
configurable: true,
|
|
18
|
-
writable: true
|
|
19
|
-
});
|
|
20
|
-
} else {
|
|
21
|
-
obj[key] = value;
|
|
22
|
-
}
|
|
23
|
-
return obj;
|
|
24
|
-
}
|
|
25
12
|
function _getPrototypeOf(o) {
|
|
26
13
|
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {
|
|
27
14
|
return o.__proto__ || Object.getPrototypeOf(o);
|
|
@@ -82,28 +69,26 @@ function _createSuper(Derived) {
|
|
|
82
69
|
return _possibleConstructorReturn(this, result);
|
|
83
70
|
};
|
|
84
71
|
}
|
|
85
|
-
import { DesignerControl } from
|
|
86
|
-
import BaseControlProperty from
|
|
87
|
-
var FormControl = /*#__PURE__*/ function(
|
|
72
|
+
import { DesignerControl } from '../BaseControl';
|
|
73
|
+
import BaseControlProperty from './property';
|
|
74
|
+
var FormControl = /*#__PURE__*/ function(DesignerControl1) {
|
|
88
75
|
"use strict";
|
|
89
|
-
_inherits(FormControl,
|
|
76
|
+
_inherits(FormControl, DesignerControl1);
|
|
90
77
|
var _super = _createSuper(FormControl);
|
|
91
78
|
function FormControl(props) {
|
|
92
79
|
_classCallCheck(this, FormControl);
|
|
93
80
|
var _this;
|
|
94
81
|
_this = _super.call(this, props);
|
|
95
|
-
|
|
96
|
-
_defineProperty(_assertThisInitialized(_this), "props", void 0);
|
|
82
|
+
_this.controlType = 'form';
|
|
97
83
|
_this.props = new BaseControlProperty(props === null || props === void 0 ? void 0 : props.props);
|
|
98
84
|
return _this;
|
|
99
85
|
}
|
|
100
86
|
return FormControl;
|
|
101
87
|
}(DesignerControl);
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
]
|
|
107
|
-
_defineProperty(FormControl, "controlCustomAttributes", void 0);
|
|
88
|
+
FormControl.controlEventKeys = [
|
|
89
|
+
'on_change',
|
|
90
|
+
'on_focus',
|
|
91
|
+
'on_blur',
|
|
92
|
+
];
|
|
108
93
|
export default FormControl;
|
|
109
94
|
export { FormControl as DesignerFormControl };
|
|
@@ -1,11 +1,11 @@
|
|
|
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
|
|
9
|
+
export * from './designer';
|
|
10
|
+
export * from './runtime';
|
|
11
|
+
export * from './property';
|