@byteluck-fe/model-driven-core-all 2.6.0-alpha.1 → 2.6.0-alpha.6
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/getHackerControl.js +13 -13
- package/dist/esm/index.js +9 -9
- package/dist/esm/loadRemoteScripts.js +27 -123
- package/dist/esm/registerByteluckControls.js +31 -130
- package/dist/esm/registerCustomControls.js +87 -193
- package/dist/esm/upgradeCustomControlSchema.js +3 -3
- package/dist/index.umd.js +1 -1
- package/dist/types/getHackerControl.d.ts +23 -23
- package/dist/types/index.d.ts +9 -9
- package/dist/types/loadRemoteScripts.d.ts +7 -7
- package/dist/types/registerByteluckControls.d.ts +6 -6
- package/dist/types/registerCustomControls.d.ts +22 -22
- package/dist/types/upgradeCustomControlSchema.d.ts +2 -2
- package/package.json +6 -6
|
@@ -83,16 +83,16 @@ function _createSuper(Derived) {
|
|
|
83
83
|
return _possibleConstructorReturn(this, result);
|
|
84
84
|
};
|
|
85
85
|
}
|
|
86
|
-
import { RuntimeControl } from
|
|
87
|
-
import { DesignerControl } from
|
|
88
|
-
import { Property } from
|
|
86
|
+
import { RuntimeControl } from '@byteluck-fe/model-driven-core';
|
|
87
|
+
import { DesignerControl } from '@byteluck-fe/model-driven-core';
|
|
88
|
+
import { Property } from '@byteluck-fe/model-driven-core';
|
|
89
89
|
export function getHackerControl(comid, type, tipMessage) {
|
|
90
90
|
var HackerControlClass;
|
|
91
91
|
//伪造一个组件
|
|
92
|
-
if (type ===
|
|
93
|
-
HackerControlClass = /*#__PURE__*/ function(
|
|
92
|
+
if (type === 'runtime') {
|
|
93
|
+
HackerControlClass = /*#__PURE__*/ (function(RuntimeControl1) {
|
|
94
94
|
"use strict";
|
|
95
|
-
_inherits(HackerControl,
|
|
95
|
+
_inherits(HackerControl, RuntimeControl1);
|
|
96
96
|
var _super = _createSuper(HackerControl);
|
|
97
97
|
function HackerControl(props) {
|
|
98
98
|
_classCallCheck(this, HackerControl);
|
|
@@ -110,11 +110,11 @@ export function getHackerControl(comid, type, tipMessage) {
|
|
|
110
110
|
}
|
|
111
111
|
]);
|
|
112
112
|
return HackerControl;
|
|
113
|
-
}(RuntimeControl);
|
|
113
|
+
})(RuntimeControl);
|
|
114
114
|
} else {
|
|
115
|
-
HackerControlClass = /*#__PURE__*/ function(
|
|
115
|
+
HackerControlClass = /*#__PURE__*/ (function(DesignerControl1) {
|
|
116
116
|
"use strict";
|
|
117
|
-
_inherits(HackerControl,
|
|
117
|
+
_inherits(HackerControl, DesignerControl1);
|
|
118
118
|
var _super = _createSuper(HackerControl);
|
|
119
119
|
function HackerControl(props) {
|
|
120
120
|
_classCallCheck(this, HackerControl);
|
|
@@ -132,11 +132,11 @@ export function getHackerControl(comid, type, tipMessage) {
|
|
|
132
132
|
}
|
|
133
133
|
]);
|
|
134
134
|
return HackerControl;
|
|
135
|
-
}(DesignerControl);
|
|
135
|
+
})(DesignerControl);
|
|
136
136
|
}
|
|
137
|
-
var HackerPropertyClass = /*#__PURE__*/ function(
|
|
137
|
+
var HackerPropertyClass = /*#__PURE__*/ function(Property1) {
|
|
138
138
|
"use strict";
|
|
139
|
-
_inherits(HackerPropertyClass,
|
|
139
|
+
_inherits(HackerPropertyClass, Property1);
|
|
140
140
|
var _super = _createSuper(HackerPropertyClass);
|
|
141
141
|
function HackerPropertyClass() {
|
|
142
142
|
_classCallCheck(this, HackerPropertyClass);
|
|
@@ -144,7 +144,7 @@ export function getHackerControl(comid, type, tipMessage) {
|
|
|
144
144
|
}
|
|
145
145
|
return HackerPropertyClass;
|
|
146
146
|
}(Property);
|
|
147
|
-
var template =
|
|
147
|
+
var template = "<div style=\"background:#fff0ef;color:#ff6459;padding:8px 16px;border-radius:4px;\"><i class=\"iconfont iconshibaimian\" style=\"margin-right:4px\"></i>".concat(tipMessage, "</div>");
|
|
148
148
|
var control = {
|
|
149
149
|
Runtime: HackerControlClass,
|
|
150
150
|
Designer: HackerControlClass,
|
package/dist/esm/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
1
|
+
export * from '@byteluck-fe/model-driven-core';
|
|
2
|
+
export * from '@byteluck-fe/model-driven-shared';
|
|
3
|
+
export * from '@byteluck-fe/model-driven-controls';
|
|
4
|
+
export * from '@byteluck-fe/model-driven-upgrade';
|
|
5
|
+
export * from './loadRemoteScripts';
|
|
6
|
+
export * from './registerCustomControls';
|
|
7
|
+
export * from './upgradeCustomControlSchema';
|
|
8
|
+
export * from './registerByteluckControls';
|
|
9
|
+
export * from './getHackerControl';
|
|
@@ -27,101 +27,7 @@ function _asyncToGenerator(fn) {
|
|
|
27
27
|
});
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
|
|
31
|
-
var f, y, t, g, _ = {
|
|
32
|
-
label: 0,
|
|
33
|
-
sent: function() {
|
|
34
|
-
if (t[0] & 1) throw t[1];
|
|
35
|
-
return t[1];
|
|
36
|
-
},
|
|
37
|
-
trys: [],
|
|
38
|
-
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
|
-
return this;
|
|
46
|
-
}), g;
|
|
47
|
-
function verb(n) {
|
|
48
|
-
return function(v) {
|
|
49
|
-
return step([
|
|
50
|
-
n,
|
|
51
|
-
v
|
|
52
|
-
]);
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
function step(op) {
|
|
56
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
58
|
-
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;
|
|
59
|
-
if (y = 0, t) op = [
|
|
60
|
-
op[0] & 2,
|
|
61
|
-
t.value
|
|
62
|
-
];
|
|
63
|
-
switch(op[0]){
|
|
64
|
-
case 0:
|
|
65
|
-
case 1:
|
|
66
|
-
t = op;
|
|
67
|
-
break;
|
|
68
|
-
case 4:
|
|
69
|
-
_.label++;
|
|
70
|
-
return {
|
|
71
|
-
value: op[1],
|
|
72
|
-
done: false
|
|
73
|
-
};
|
|
74
|
-
case 5:
|
|
75
|
-
_.label++;
|
|
76
|
-
y = op[1];
|
|
77
|
-
op = [
|
|
78
|
-
0
|
|
79
|
-
];
|
|
80
|
-
continue;
|
|
81
|
-
case 7:
|
|
82
|
-
op = _.ops.pop();
|
|
83
|
-
_.trys.pop();
|
|
84
|
-
continue;
|
|
85
|
-
default:
|
|
86
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
87
|
-
_ = 0;
|
|
88
|
-
continue;
|
|
89
|
-
}
|
|
90
|
-
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
91
|
-
_.label = op[1];
|
|
92
|
-
break;
|
|
93
|
-
}
|
|
94
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
95
|
-
_.label = t[1];
|
|
96
|
-
t = op;
|
|
97
|
-
break;
|
|
98
|
-
}
|
|
99
|
-
if (t && _.label < t[2]) {
|
|
100
|
-
_.label = t[2];
|
|
101
|
-
_.ops.push(op);
|
|
102
|
-
break;
|
|
103
|
-
}
|
|
104
|
-
if (t[2]) _.ops.pop();
|
|
105
|
-
_.trys.pop();
|
|
106
|
-
continue;
|
|
107
|
-
}
|
|
108
|
-
op = body.call(thisArg, _);
|
|
109
|
-
} catch (e) {
|
|
110
|
-
op = [
|
|
111
|
-
6,
|
|
112
|
-
e
|
|
113
|
-
];
|
|
114
|
-
y = 0;
|
|
115
|
-
} finally{
|
|
116
|
-
f = t = 0;
|
|
117
|
-
}
|
|
118
|
-
if (op[0] & 5) throw op[1];
|
|
119
|
-
return {
|
|
120
|
-
value: op[0] ? op[1] : void 0,
|
|
121
|
-
done: true
|
|
122
|
-
};
|
|
123
|
-
}
|
|
124
|
-
};
|
|
30
|
+
import regeneratorRuntime from "regenerator-runtime";
|
|
125
31
|
var jobs = [];
|
|
126
32
|
var module = {
|
|
127
33
|
exports: {}
|
|
@@ -132,8 +38,8 @@ function hackWindow(globalModules) {
|
|
|
132
38
|
if (!hacked) {
|
|
133
39
|
window.module = module;
|
|
134
40
|
window.exports = module.exports;
|
|
135
|
-
window.require = function(
|
|
136
|
-
return globalModules[
|
|
41
|
+
window.require = function(module1) {
|
|
42
|
+
return globalModules[module1];
|
|
137
43
|
};
|
|
138
44
|
hacked = true;
|
|
139
45
|
}
|
|
@@ -146,10 +52,10 @@ function hackWindow(globalModules) {
|
|
|
146
52
|
}
|
|
147
53
|
export function loadScriptFromTag(url, globalModules) {
|
|
148
54
|
var p = new Promise(function(resolve, reject) {
|
|
149
|
-
var script = document.createElement(
|
|
55
|
+
var script = document.createElement('script');
|
|
150
56
|
var resetHackWindow = hackWindow(globalModules);
|
|
151
57
|
script.src = url;
|
|
152
|
-
script.type =
|
|
58
|
+
script.type = 'text/javascript';
|
|
153
59
|
var loadEnd = function() {
|
|
154
60
|
document.head.removeChild(script);
|
|
155
61
|
var index = jobs.findIndex(function(j) {
|
|
@@ -175,12 +81,12 @@ export function loadScriptFromTag(url, globalModules) {
|
|
|
175
81
|
}
|
|
176
82
|
export function nativeFetch(url) {
|
|
177
83
|
return fetch(url, {
|
|
178
|
-
mode:
|
|
179
|
-
cache:
|
|
180
|
-
credentials:
|
|
84
|
+
mode: 'cors',
|
|
85
|
+
cache: 'no-cache',
|
|
86
|
+
credentials: 'same-origin'
|
|
181
87
|
}).then(function(response) {
|
|
182
88
|
if (response.ok === false) {
|
|
183
|
-
throw
|
|
89
|
+
throw 'not found resource:' + url;
|
|
184
90
|
} else {
|
|
185
91
|
return response.text();
|
|
186
92
|
}
|
|
@@ -191,15 +97,15 @@ export function loadScriptFromFetch(url, globalModules) {
|
|
|
191
97
|
fetch: nativeFetch
|
|
192
98
|
};
|
|
193
99
|
return new Promise(function(resolve, reject) {
|
|
194
|
-
var newUrl = url.replace(/^(https?:)?\/\/.*?\/component/,
|
|
100
|
+
var newUrl = url.replace(/^(https?:)?\/\/.*?\/component/, '/component');
|
|
195
101
|
options.fetch(newUrl).then(function(response) {
|
|
196
|
-
var
|
|
102
|
+
var module2 = {
|
|
197
103
|
exports: {}
|
|
198
104
|
};
|
|
199
|
-
new Function(
|
|
105
|
+
new Function('module', 'exports', 'require', response)(module2, module2.exports, function(id) {
|
|
200
106
|
return globalModules[id];
|
|
201
107
|
});
|
|
202
|
-
resolve(
|
|
108
|
+
resolve(module2.exports);
|
|
203
109
|
}).catch(function(e) {
|
|
204
110
|
reject(e);
|
|
205
111
|
});
|
|
@@ -212,23 +118,21 @@ export function loadRemoteControls(urls, globalModules) {
|
|
|
212
118
|
return _loadRemoteControls.apply(this, arguments);
|
|
213
119
|
}
|
|
214
120
|
function _loadRemoteControls() {
|
|
215
|
-
_loadRemoteControls = _asyncToGenerator(function(urls, globalModules) {
|
|
216
|
-
return
|
|
217
|
-
switch(
|
|
121
|
+
_loadRemoteControls = _asyncToGenerator(regeneratorRuntime.mark(function _callee(urls, globalModules) {
|
|
122
|
+
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
|
123
|
+
while(1)switch(_ctx.prev = _ctx.next){
|
|
218
124
|
case 0:
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
case
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
_state.sent()
|
|
229
|
-
];
|
|
125
|
+
_ctx.next = 2;
|
|
126
|
+
return Promise.all(urls.map(function(url) {
|
|
127
|
+
return loadRemoteControl(url, globalModules);
|
|
128
|
+
}));
|
|
129
|
+
case 2:
|
|
130
|
+
return _ctx.abrupt("return", _ctx.sent);
|
|
131
|
+
case 3:
|
|
132
|
+
case "end":
|
|
133
|
+
return _ctx.stop();
|
|
230
134
|
}
|
|
231
|
-
});
|
|
232
|
-
});
|
|
135
|
+
}, _callee);
|
|
136
|
+
}));
|
|
233
137
|
return _loadRemoteControls.apply(this, arguments);
|
|
234
138
|
}
|
|
@@ -27,161 +27,62 @@ function _asyncToGenerator(fn) {
|
|
|
27
27
|
});
|
|
28
28
|
};
|
|
29
29
|
}
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
sent: function() {
|
|
34
|
-
if (t[0] & 1) throw t[1];
|
|
35
|
-
return t[1];
|
|
36
|
-
},
|
|
37
|
-
trys: [],
|
|
38
|
-
ops: []
|
|
39
|
-
};
|
|
40
|
-
return g = {
|
|
41
|
-
next: verb(0),
|
|
42
|
-
"throw": verb(1),
|
|
43
|
-
"return": verb(2)
|
|
44
|
-
}, typeof Symbol === "function" && (g[Symbol.iterator] = function() {
|
|
45
|
-
return this;
|
|
46
|
-
}), g;
|
|
47
|
-
function verb(n) {
|
|
48
|
-
return function(v) {
|
|
49
|
-
return step([
|
|
50
|
-
n,
|
|
51
|
-
v
|
|
52
|
-
]);
|
|
53
|
-
};
|
|
54
|
-
}
|
|
55
|
-
function step(op) {
|
|
56
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
57
|
-
while(_)try {
|
|
58
|
-
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;
|
|
59
|
-
if (y = 0, t) op = [
|
|
60
|
-
op[0] & 2,
|
|
61
|
-
t.value
|
|
62
|
-
];
|
|
63
|
-
switch(op[0]){
|
|
64
|
-
case 0:
|
|
65
|
-
case 1:
|
|
66
|
-
t = op;
|
|
67
|
-
break;
|
|
68
|
-
case 4:
|
|
69
|
-
_.label++;
|
|
70
|
-
return {
|
|
71
|
-
value: op[1],
|
|
72
|
-
done: false
|
|
73
|
-
};
|
|
74
|
-
case 5:
|
|
75
|
-
_.label++;
|
|
76
|
-
y = op[1];
|
|
77
|
-
op = [
|
|
78
|
-
0
|
|
79
|
-
];
|
|
80
|
-
continue;
|
|
81
|
-
case 7:
|
|
82
|
-
op = _.ops.pop();
|
|
83
|
-
_.trys.pop();
|
|
84
|
-
continue;
|
|
85
|
-
default:
|
|
86
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
|
|
87
|
-
_ = 0;
|
|
88
|
-
continue;
|
|
89
|
-
}
|
|
90
|
-
if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
|
|
91
|
-
_.label = op[1];
|
|
92
|
-
break;
|
|
93
|
-
}
|
|
94
|
-
if (op[0] === 6 && _.label < t[1]) {
|
|
95
|
-
_.label = t[1];
|
|
96
|
-
t = op;
|
|
97
|
-
break;
|
|
98
|
-
}
|
|
99
|
-
if (t && _.label < t[2]) {
|
|
100
|
-
_.label = t[2];
|
|
101
|
-
_.ops.push(op);
|
|
102
|
-
break;
|
|
103
|
-
}
|
|
104
|
-
if (t[2]) _.ops.pop();
|
|
105
|
-
_.trys.pop();
|
|
106
|
-
continue;
|
|
107
|
-
}
|
|
108
|
-
op = body.call(thisArg, _);
|
|
109
|
-
} catch (e) {
|
|
110
|
-
op = [
|
|
111
|
-
6,
|
|
112
|
-
e
|
|
113
|
-
];
|
|
114
|
-
y = 0;
|
|
115
|
-
} finally{
|
|
116
|
-
f = t = 0;
|
|
117
|
-
}
|
|
118
|
-
if (op[0] & 5) throw op[1];
|
|
119
|
-
return {
|
|
120
|
-
value: op[0] ? op[1] : void 0,
|
|
121
|
-
done: true
|
|
122
|
-
};
|
|
123
|
-
}
|
|
124
|
-
};
|
|
125
|
-
import { getHackerControl } from "./getHackerControl";
|
|
126
|
-
import { nativeFetch, loadRemoteControl } from "./loadRemoteScripts";
|
|
30
|
+
import regeneratorRuntime from "regenerator-runtime";
|
|
31
|
+
import { getHackerControl } from './getHackerControl';
|
|
32
|
+
import { nativeFetch, loadRemoteControl } from './loadRemoteScripts';
|
|
127
33
|
export function registerByteluckControls(url, payload) {
|
|
128
34
|
return _registerByteluckControls.apply(this, arguments);
|
|
129
35
|
}
|
|
130
36
|
function _registerByteluckControls() {
|
|
131
|
-
_registerByteluckControls = _asyncToGenerator(function(url, payload) {
|
|
37
|
+
_registerByteluckControls = _asyncToGenerator(regeneratorRuntime.mark(function _callee(url, payload) {
|
|
132
38
|
var version, byteluckControls, componentsStr, components, controls;
|
|
133
|
-
return
|
|
134
|
-
switch(
|
|
39
|
+
return regeneratorRuntime.wrap(function _callee$(_ctx) {
|
|
40
|
+
while(1)switch(_ctx.prev = _ctx.next){
|
|
135
41
|
case 0:
|
|
136
42
|
version = payload.version;
|
|
137
|
-
if (payload.version ===
|
|
43
|
+
if (payload.version === 'random') {
|
|
138
44
|
version = new Date().valueOf().toString();
|
|
139
45
|
}
|
|
140
46
|
byteluckControls = new Map();
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
case 1:
|
|
146
|
-
componentsStr = _state.sent();
|
|
47
|
+
_ctx.next = 5;
|
|
48
|
+
return nativeFetch("".concat(url, "/component.json?v=").concat(version));
|
|
49
|
+
case 5:
|
|
50
|
+
componentsStr = _ctx.sent;
|
|
147
51
|
components = [];
|
|
148
|
-
if (!(componentsStr !== undefined))
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
52
|
+
if (!(componentsStr !== undefined)) {
|
|
53
|
+
_ctx.next = 13;
|
|
54
|
+
break;
|
|
55
|
+
}
|
|
152
56
|
components = JSON.parse(componentsStr);
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
case 2:
|
|
158
|
-
controls = _state.sent();
|
|
57
|
+
_ctx.next = 11;
|
|
58
|
+
return loadRemoteControl("".concat(url, "/").concat(payload.type, ".js?v=").concat(version), payload.globalModules);
|
|
59
|
+
case 11:
|
|
60
|
+
controls = _ctx.sent;
|
|
159
61
|
components.map(function(item) {
|
|
160
|
-
var
|
|
161
|
-
if (payload.type ===
|
|
62
|
+
var control1 = controls.find(function(control) {
|
|
63
|
+
if (payload.type === 'runtime') {
|
|
162
64
|
return control.Runtime.controlType === item.id;
|
|
163
65
|
} else {
|
|
164
66
|
return control.Designer.controlType === item.id;
|
|
165
67
|
}
|
|
166
68
|
});
|
|
167
|
-
if (
|
|
168
|
-
|
|
69
|
+
if (control1 === undefined) {
|
|
70
|
+
control1 = getHackerControl(item.id, payload.type, '内置组件加载错误');
|
|
169
71
|
}
|
|
170
72
|
byteluckControls.set(item.id, {
|
|
171
73
|
props: item,
|
|
172
74
|
version: item.version,
|
|
173
75
|
isLoaded: true,
|
|
174
|
-
control:
|
|
76
|
+
control: control1
|
|
175
77
|
});
|
|
176
78
|
});
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
];
|
|
79
|
+
case 13:
|
|
80
|
+
return _ctx.abrupt("return", byteluckControls);
|
|
81
|
+
case 14:
|
|
82
|
+
case "end":
|
|
83
|
+
return _ctx.stop();
|
|
183
84
|
}
|
|
184
|
-
});
|
|
185
|
-
});
|
|
85
|
+
}, _callee);
|
|
86
|
+
}));
|
|
186
87
|
return _registerByteluckControls.apply(this, arguments);
|
|
187
88
|
}
|