@lazycatcloud/sdk 0.1.76 → 0.1.78
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/extentions/unsafe_app.d.ts +5 -3
- package/dist/extentions/unsafe_app.d.ts.map +1 -1
- package/dist/extentions/unsafe_app.js +16 -8
- package/dist/extentions/unsafe_app.js.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
- package/dist/API.d.ts +0 -24
- package/dist/API.d.ts.map +0 -1
- package/dist/API.js +0 -117
- package/dist/API.js.map +0 -1
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
declare var view: any;
|
|
2
2
|
declare function isWebShell(): boolean;
|
|
3
|
-
declare function isPCWebShell(): boolean;
|
|
4
3
|
declare function isAndroidWebShell(): boolean;
|
|
4
|
+
declare function isPCWebShell(): boolean;
|
|
5
5
|
declare function isIosWebShell(): boolean;
|
|
6
6
|
declare function isControlView(): boolean;
|
|
7
7
|
declare function isContentView(): boolean;
|
|
8
8
|
declare const UNSAFE: {
|
|
9
9
|
OpenApp: (url: any) => void;
|
|
10
10
|
SetContentURL: (url: any) => void;
|
|
11
|
-
GetContentURL: (callback: any) =>
|
|
11
|
+
GetContentURL: (callback: any) => any;
|
|
12
12
|
BackContentView: () => void;
|
|
13
13
|
ForwardContentView: () => void;
|
|
14
14
|
InjectJS: (jsContent: any, callbackMethod: any) => void;
|
|
15
|
-
ReadCookie(domain: any):
|
|
15
|
+
ReadCookie(domain: any): any;
|
|
16
16
|
NotifyControView: (jsContent: any) => void;
|
|
17
|
+
UpdateContentViewUserAgent: (ua: any) => void;
|
|
18
|
+
XmlHttpRequest4ContentView: (reqJsonStr: any) => any;
|
|
17
19
|
};
|
|
18
20
|
//# sourceMappingURL=unsafe_app.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unsafe_app.d.ts","sourceRoot":"","sources":["../../extentions/unsafe_app.ts"],"names":[],"mappings":"AAAA,QAAA,IAAI,IAAI,KAAA,CAAC;AACT,iBAAS,UAAU,YAElB;
|
|
1
|
+
{"version":3,"file":"unsafe_app.d.ts","sourceRoot":"","sources":["../../extentions/unsafe_app.ts"],"names":[],"mappings":"AAAA,QAAA,IAAI,IAAI,KAAA,CAAC;AACT,iBAAS,UAAU,YAElB;AAMD,iBAAS,iBAAiB,YAEzB;AAGD,iBAAS,YAAY,YAEpB;AAGD,iBAAS,aAAa,YAErB;AAGD,iBAAS,aAAa,YAErB;AAED,iBAAS,aAAa,YAErB;AAYD,QAAA,MAAM,MAAM;;;;;;;;;;;CAmEX,CAAC"}
|
|
@@ -2,17 +2,17 @@ var view;
|
|
|
2
2
|
function isWebShell() {
|
|
3
3
|
return navigator.userAgent.indexOf("Lazycat") != -1 && !isControlView() && !isContentView();
|
|
4
4
|
}
|
|
5
|
-
// 是否是pc webshell 环境
|
|
6
|
-
function isPCWebShell() {
|
|
7
|
-
return navigator.userAgent.indexOf("Lazycat_PC") != -1;
|
|
8
|
-
}
|
|
9
5
|
// 是否是android webshell 环境
|
|
10
6
|
function isAndroidWebShell() {
|
|
11
|
-
return navigator.userAgent.indexOf("
|
|
7
|
+
return navigator.userAgent.indexOf("Lazycat_101") != -1;
|
|
8
|
+
}
|
|
9
|
+
// 是否是pc webshell 环境
|
|
10
|
+
function isPCWebShell() {
|
|
11
|
+
return navigator.userAgent.indexOf("Lazycat_102") != -1;
|
|
12
12
|
}
|
|
13
13
|
// 是否是ios webshell 环境
|
|
14
14
|
function isIosWebShell() {
|
|
15
|
-
return navigator.userAgent.indexOf("
|
|
15
|
+
return navigator.userAgent.indexOf("Lazycat_103") != -1;
|
|
16
16
|
}
|
|
17
17
|
function isControlView() {
|
|
18
18
|
return navigator.userAgent.indexOf("Lazycat_ControlView") != -1;
|
|
@@ -48,7 +48,7 @@ const UNSAFE = {
|
|
|
48
48
|
if (!isControlView()) {
|
|
49
49
|
return;
|
|
50
50
|
}
|
|
51
|
-
view.GetContentURL(callback);
|
|
51
|
+
return view.GetContentURL(callback);
|
|
52
52
|
},
|
|
53
53
|
// contentView 回退
|
|
54
54
|
BackContentView: function () {
|
|
@@ -76,7 +76,7 @@ const UNSAFE = {
|
|
|
76
76
|
if (!isControlView()) {
|
|
77
77
|
return;
|
|
78
78
|
}
|
|
79
|
-
view.ReadCookie(domain);
|
|
79
|
+
return view.ReadCookie(domain);
|
|
80
80
|
},
|
|
81
81
|
// 在controlView 中执行jsContent(用于contentView通知 controlView)
|
|
82
82
|
NotifyControView: function (jsContent) {
|
|
@@ -84,6 +84,14 @@ const UNSAFE = {
|
|
|
84
84
|
return;
|
|
85
85
|
}
|
|
86
86
|
view.NotifyControView(jsContent);
|
|
87
|
+
},
|
|
88
|
+
// 修改contentView 的useragent
|
|
89
|
+
UpdateContentViewUserAgent: function (ua) {
|
|
90
|
+
view.UpdateContentViewUserAgent(ua);
|
|
91
|
+
},
|
|
92
|
+
// contentView 执行
|
|
93
|
+
XmlHttpRequest4ContentView: function (reqJsonStr) {
|
|
94
|
+
return view.XmlHttpRequest4ContentView(reqJsonStr);
|
|
87
95
|
}
|
|
88
96
|
};
|
|
89
97
|
//# sourceMappingURL=unsafe_app.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"unsafe_app.js","sourceRoot":"","sources":["../../extentions/unsafe_app.ts"],"names":[],"mappings":"AAAA,IAAI,IAAI,CAAC;AACT,SAAS,UAAU;IACf,OAAO,SAAS,CAAC,SAAS,CAAC,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,aAAa,EAAE,IAAI,CAAC,aAAa,EAAE,CAAC;AAChG,CAAC;
|
|
1
|
+
{"version":3,"file":"unsafe_app.js","sourceRoot":"","sources":["../../extentions/unsafe_app.ts"],"names":[],"mappings":"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"}
|
package/dist/package.json
CHANGED
package/package.json
CHANGED
package/dist/API.d.ts
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
export declare function isWebShell(): boolean;
|
|
2
|
-
export declare function isPCWebShell(): boolean;
|
|
3
|
-
export declare function isAndroidWebShell(): boolean;
|
|
4
|
-
export declare function isIosWebShell(): boolean;
|
|
5
|
-
export declare function OpenApp(url: any): void;
|
|
6
|
-
export declare function SetContentURL(url: any): void;
|
|
7
|
-
export declare function GetContentURL(callback: any): void;
|
|
8
|
-
export declare function BackContentView(): void;
|
|
9
|
-
export declare function ForwardContentView(): void;
|
|
10
|
-
declare function NotifyControView(jscontent: any): void;
|
|
11
|
-
declare const _default: {
|
|
12
|
-
NotifyControView: typeof NotifyControView;
|
|
13
|
-
ForwardContentView: typeof ForwardContentView;
|
|
14
|
-
BackContentView: typeof BackContentView;
|
|
15
|
-
GetContentURL: typeof GetContentURL;
|
|
16
|
-
SetContentURL: typeof SetContentURL;
|
|
17
|
-
OpenApp: typeof OpenApp;
|
|
18
|
-
isIosWebShell: typeof isIosWebShell;
|
|
19
|
-
isAndroidWebShell: typeof isAndroidWebShell;
|
|
20
|
-
isWebShell: typeof isWebShell;
|
|
21
|
-
isPCWebShell: typeof isPCWebShell;
|
|
22
|
-
};
|
|
23
|
-
export default _default;
|
|
24
|
-
//# sourceMappingURL=API.d.ts.map
|
package/dist/API.d.ts.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"API.d.ts","sourceRoot":"","sources":["../API.ts"],"names":[],"mappings":"AACA,wBAAgB,UAAU,YAEzB;AAED,wBAAgB,YAAY,YAE3B;AAED,wBAAgB,iBAAiB,YAEhC;AAED,wBAAgB,aAAa,YAE5B;AAED,wBAAgB,OAAO,CAAC,GAAG,KAAA,QAS1B;AACD,wBAAgB,aAAa,CAAC,GAAG,KAAA,QAWhC;AACD,wBAAgB,aAAa,CAAC,QAAQ,KAAA,QAWrC;AACD,wBAAgB,eAAe,SAW9B;AAED,wBAAgB,kBAAkB,SAWjC;AAED,iBAAS,gBAAgB,CAAC,SAAS,KAAA,QAWlC;;;;;;;;;;;;;AAED,wBAWC"}
|
package/dist/API.js
DELETED
|
@@ -1,117 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ForwardContentView = exports.BackContentView = exports.GetContentURL = exports.SetContentURL = exports.OpenApp = exports.isIosWebShell = exports.isAndroidWebShell = exports.isPCWebShell = exports.isWebShell = void 0;
|
|
4
|
-
// 是否是webshell 环境
|
|
5
|
-
function isWebShell() {
|
|
6
|
-
return navigator.userAgent.indexOf("Lazycat") != -1;
|
|
7
|
-
}
|
|
8
|
-
exports.isWebShell = isWebShell;
|
|
9
|
-
// 是否是pc webshell 环境
|
|
10
|
-
function isPCWebShell() {
|
|
11
|
-
return navigator.userAgent.indexOf("Lazycat_PC") != -1;
|
|
12
|
-
}
|
|
13
|
-
exports.isPCWebShell = isPCWebShell;
|
|
14
|
-
// 是否是android webshell 环境
|
|
15
|
-
function isAndroidWebShell() {
|
|
16
|
-
return navigator.userAgent.indexOf("Lazycat_Android") != -1;
|
|
17
|
-
}
|
|
18
|
-
exports.isAndroidWebShell = isAndroidWebShell;
|
|
19
|
-
// 是否是ios webshell环境
|
|
20
|
-
function isIosWebShell() {
|
|
21
|
-
return navigator.userAgent.indexOf("Lazycat_Ios") != -1;
|
|
22
|
-
}
|
|
23
|
-
exports.isIosWebShell = isIosWebShell;
|
|
24
|
-
// h5调用webview 打开App
|
|
25
|
-
function OpenApp(url) {
|
|
26
|
-
if (!isWebShell()) {
|
|
27
|
-
window.location.href = url;
|
|
28
|
-
return;
|
|
29
|
-
}
|
|
30
|
-
if (isAndroidWebShell()) {
|
|
31
|
-
// @ts-ignore
|
|
32
|
-
android.OpenApp(url);
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
exports.OpenApp = OpenApp;
|
|
36
|
-
function SetContentURL(url) {
|
|
37
|
-
if (!isWebShell()) {
|
|
38
|
-
return;
|
|
39
|
-
}
|
|
40
|
-
if (isAndroidWebShell()) {
|
|
41
|
-
// @ts-ignore
|
|
42
|
-
android.OpenApp(url);
|
|
43
|
-
}
|
|
44
|
-
else if (isPCWebShell()) {
|
|
45
|
-
// @ts-ignore
|
|
46
|
-
windows.electronAPI.OpenApp();
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
exports.SetContentURL = SetContentURL;
|
|
50
|
-
function GetContentURL(callback) {
|
|
51
|
-
if (!isWebShell()) {
|
|
52
|
-
return;
|
|
53
|
-
}
|
|
54
|
-
if (isAndroidWebShell()) {
|
|
55
|
-
// @ts-ignore
|
|
56
|
-
android.GetContentURL(callback);
|
|
57
|
-
}
|
|
58
|
-
else if (isPCWebShell()) {
|
|
59
|
-
// @ts-ignore
|
|
60
|
-
windows.electronAPI.GetContentURL(callback);
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
exports.GetContentURL = GetContentURL;
|
|
64
|
-
function BackContentView() {
|
|
65
|
-
if (!isWebShell()) {
|
|
66
|
-
return;
|
|
67
|
-
}
|
|
68
|
-
if (isAndroidWebShell()) {
|
|
69
|
-
// @ts-ignore
|
|
70
|
-
android.BackContentView();
|
|
71
|
-
}
|
|
72
|
-
else if (isPCWebShell()) {
|
|
73
|
-
// @ts-ignore
|
|
74
|
-
windows.electronAPI.BackContentView();
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
exports.BackContentView = BackContentView;
|
|
78
|
-
function ForwardContentView() {
|
|
79
|
-
if (!isWebShell()) {
|
|
80
|
-
return;
|
|
81
|
-
}
|
|
82
|
-
if (isAndroidWebShell()) {
|
|
83
|
-
// @ts-ignore
|
|
84
|
-
android.ForwardContentView();
|
|
85
|
-
}
|
|
86
|
-
else if (isPCWebShell()) {
|
|
87
|
-
// @ts-ignore
|
|
88
|
-
windows.electronAPI.ForwardContentView();
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
exports.ForwardContentView = ForwardContentView;
|
|
92
|
-
function NotifyControView(jscontent) {
|
|
93
|
-
if (!isWebShell()) {
|
|
94
|
-
return;
|
|
95
|
-
}
|
|
96
|
-
if (isAndroidWebShell()) {
|
|
97
|
-
// @ts-ignore
|
|
98
|
-
android.NotifyControView(jscontent);
|
|
99
|
-
}
|
|
100
|
-
else if (isPCWebShell()) {
|
|
101
|
-
// @ts-ignore
|
|
102
|
-
windows.electronAPI.NotifyControView(jscontent);
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
exports.default = {
|
|
106
|
-
NotifyControView,
|
|
107
|
-
ForwardContentView,
|
|
108
|
-
BackContentView,
|
|
109
|
-
GetContentURL,
|
|
110
|
-
SetContentURL,
|
|
111
|
-
OpenApp,
|
|
112
|
-
isIosWebShell,
|
|
113
|
-
isAndroidWebShell,
|
|
114
|
-
isWebShell,
|
|
115
|
-
isPCWebShell
|
|
116
|
-
};
|
|
117
|
-
//# sourceMappingURL=API.js.map
|
package/dist/API.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"API.js","sourceRoot":"","sources":["../API.ts"],"names":[],"mappings":"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"}
|