js: remove other module to avoid import error

This commit is contained in:
pengfei.zhou
2022-08-11 13:36:18 +08:00
committed by osborn
parent 6696278c5b
commit 74f1c61261
13 changed files with 7253 additions and 5173 deletions

View File

@@ -68,7 +68,7 @@ var Mutable = /** @class */ (function () {
*/
var __uniqueId__ = 0;
function uniqueId(prefix) {
return "__" + prefix + "_" + __uniqueId__++ + "__";
return "__".concat(prefix, "_").concat(__uniqueId__++, "__");
}
function toString(message) {
@@ -92,11 +92,6 @@ function toString(message) {
}
function log() {
var arguments$1 = arguments;
var args = [];
for (var _i = 0; _i < arguments.length; _i++) {
args[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
@@ -108,11 +103,6 @@ function log() {
}
function loge() {
var arguments$1 = arguments;
var message = [];
for (var _i = 0; _i < arguments.length; _i++) {
message[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
@@ -124,11 +114,6 @@ function loge() {
}
function logw() {
var arguments$1 = arguments;
var message = [];
for (var _i = 0; _i < arguments.length; _i++) {
message[_i] = arguments$1[_i];
}
var out = "";
for (var i = 0; i < arguments.length; i++) {
if (i > 0) {
@@ -177,11 +162,11 @@ var __values$5 = (undefined && undefined.__values) || function(o) {
function Property(target, propKey) {
Object.defineProperty(target, propKey, {
get: function () {
return Reflect.get(this, "__prop__" + propKey, this);
return Reflect.get(this, "__prop__".concat(propKey), this);
},
set: function (v) {
var oldV = Reflect.get(this, "__prop__" + propKey, this);
Reflect.set(this, "__prop__" + propKey, v, this);
var oldV = Reflect.get(this, "__prop__".concat(propKey), this);
Reflect.set(this, "__prop__".concat(propKey), v, this);
if (oldV !== v) {
Reflect.apply(this.onPropertyChanged, this, [propKey, oldV, v]);
}
@@ -191,11 +176,11 @@ function Property(target, propKey) {
function InconsistProperty(target, propKey) {
Object.defineProperty(target, propKey, {
get: function () {
return Reflect.get(this, "__prop__" + propKey, this);
return Reflect.get(this, "__prop__".concat(propKey), this);
},
set: function (v) {
var oldV = Reflect.get(this, "__prop__" + propKey, this);
Reflect.set(this, "__prop__" + propKey, v, this);
var oldV = Reflect.get(this, "__prop__".concat(propKey), this);
Reflect.set(this, "__prop__".concat(propKey), v, this);
Reflect.apply(this.onPropertyChanged, this, [propKey, oldV, v]);
},
});
@@ -359,11 +344,6 @@ var View = /** @class */ (function () {
};
View.prototype.responseCallback = function (id) {
var arguments$1 = arguments;
var args = [];
for (var _i = 1; _i < arguments.length; _i++) {
args[_i - 1] = arguments$1[_i];
}
var f = this.id2Callback(id);
if (f instanceof Function) {
var argumentsList = [];
@@ -373,7 +353,7 @@ var View = /** @class */ (function () {
return Reflect.apply(f, this, argumentsList);
}
else {
loge("Cannot find callback:" + id + " for " + JSON.stringify(this.toModel()));
loge("Cannot find callback:".concat(id, " for ").concat(JSON.stringify(this.toModel())));
}
};
View.prototype.toModel = function () {
@@ -717,7 +697,7 @@ var Group = /** @class */ (function (_super) {
this.addChild(e);
}
else if (!!e) {
loge("Not allowed to add " + typeof e);
loge("Not allowed to add ".concat(typeof e));
}
};
Object.defineProperty(Group.prototype, "innerElement", {
@@ -1232,7 +1212,7 @@ var Panel = /** @class */ (function () {
var v = this.retrospectView(viewIds);
if (v === undefined) {
loge("Cannot find view for " + viewIds);
loge("Cannot find view for ".concat(viewIds));
}
else {
var argumentsList = [callbackId];
@@ -1434,7 +1414,7 @@ var Color = /** @class */ (function () {
}
Color.parse = function (str) {
if (!str.startsWith("#")) {
throw new Error("Parse color error with " + str);
throw new Error("Parse color error with ".concat(str));
}
var val = parseInt(str.substr(1), 16);
if (str.length === 7) {
@@ -1444,7 +1424,7 @@ var Color = /** @class */ (function () {
return new Color(val);
}
else {
throw new Error("Parse color error with " + str);
throw new Error("Parse color error with ".concat(str));
}
};
Color.safeParse = function (str, defVal) {
@@ -2247,7 +2227,7 @@ var MainBundleResource = /** @class */ (function (_super) {
var BundleResource = /** @class */ (function (_super) {
__extends$f(BundleResource, _super);
function BundleResource(bundleName, fileName) {
return _super.call(this, "bundle", bundleName + "://" + fileName) || this;
return _super.call(this, "bundle", "".concat(bundleName, "://").concat(fileName)) || this;
}
return BundleResource;
}(iOSResource));
@@ -2530,7 +2510,7 @@ var List = /** @class */ (function (_super) {
List.prototype.getItem = function (itemIdx) {
var view = this.renderItem(itemIdx);
view.superview = this;
this.cachedViews.set("" + itemIdx, view);
this.cachedViews.set("".concat(itemIdx), view);
return view;
};
List.prototype.renderBunchedItems = function (start, length) {
@@ -2680,7 +2660,7 @@ var Slider = /** @class */ (function (_super) {
Slider.prototype.getItem = function (itemIdx) {
var view = this.renderPage(itemIdx);
view.superview = this;
this.cachedViews.set("" + itemIdx, view);
this.cachedViews.set("".concat(itemIdx), view);
return view;
};
Slider.prototype.renderBunchedItems = function (start, length) {
@@ -3050,7 +3030,7 @@ exports.jsx = void 0;
Reflect.set(e, "innerElement", children, e);
}
else {
throw new Error("Do not support " + constructor.name + " for " + children);
throw new Error("Do not support ".concat(constructor.name, " for ").concat(children));
}
}
return e;
@@ -3184,7 +3164,7 @@ var FlowLayout = /** @class */ (function (_super) {
FlowLayout.prototype.getItem = function (itemIdx) {
var view = this.renderItem(itemIdx);
view.superview = this;
this.cachedViews.set("" + itemIdx, view);
this.cachedViews.set("".concat(itemIdx), view);
return view;
};
FlowLayout.prototype.renderBunchedItems = function (start, length) {
@@ -3865,7 +3845,7 @@ function navbar(context) {
}
function internalScheme(context, panelClass) {
return "_internal_://export?class=" + encodeURIComponent(panelClass.name) + "&context=" + context.id;
return "_internal_://export?class=".concat(encodeURIComponent(panelClass.name), "&context=").concat(context.id);
}
function navigator(context) {
var moduleName = "navigator";
@@ -3905,9 +3885,9 @@ function transformRequest(request) {
if (request.params !== undefined) {
var queryStrings = [];
for (var key in request.params) {
queryStrings.push(key + "=" + encodeURIComponent(request.params[key]));
queryStrings.push("".concat(key, "=").concat(encodeURIComponent(request.params[key])));
}
request.url = "" + request.url + (url.indexOf('?') >= 0 ? '&' : '?') + queryStrings.join('&');
request.url = "".concat(request.url).concat(url.indexOf('?') >= 0 ? '&' : '?').concat(queryStrings.join('&'));
}
if (typeof request.data === 'object') {
request.data = JSON.stringify(request.data);
@@ -4183,7 +4163,7 @@ function animate(context) {
}
else {
return function (args) {
return Promise.reject("Cannot find panel in Context:" + context.id);
return Promise.reject("Cannot find panel in Context:".concat(context.id));
};
}
}

File diff suppressed because it is too large Load Diff