android:webview add some api
This commit is contained in:
@@ -1,18 +1,2 @@
|
||||
'use strict';
|
||||
|
||||
/*
|
||||
* Copyright [2021] [Doric.Pub]
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
console.log("Hello,WebView");
|
||||
|
@@ -1,16 +1,78 @@
|
||||
/*
|
||||
* Copyright [2021] [Doric.Pub]
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
console.log("Hello,WebView")
|
||||
declare module NativeClient {
|
||||
function callNative(name: string, args: string): string
|
||||
}
|
||||
|
||||
type RawValue = number | string | boolean | object | undefined
|
||||
|
||||
type WrappedValue = {
|
||||
type: "number" | "string" | "boolean" | "object" | "array" | "null",
|
||||
value: RawValue,
|
||||
}
|
||||
|
||||
function _wrappedValue(v: RawValue): WrappedValue {
|
||||
switch (typeof v) {
|
||||
case "number":
|
||||
return {
|
||||
type: "number",
|
||||
value: v
|
||||
};
|
||||
case "string":
|
||||
return {
|
||||
type: "string",
|
||||
value: v
|
||||
};
|
||||
case "boolean":
|
||||
return {
|
||||
type: "boolean",
|
||||
value: v
|
||||
};
|
||||
case "object":
|
||||
if (v instanceof Array) {
|
||||
return {
|
||||
type: "array",
|
||||
value: JSON.stringify(v)
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
type: "object",
|
||||
value: JSON.stringify(v)
|
||||
};
|
||||
}
|
||||
default:
|
||||
return {
|
||||
type: "null",
|
||||
value: undefined
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
function _rawValue(v: WrappedValue): RawValue {
|
||||
switch (v.type) {
|
||||
case "number":
|
||||
return v.value
|
||||
case "string":
|
||||
return v.value
|
||||
case "boolean":
|
||||
return v.value
|
||||
case "object":
|
||||
case "array":
|
||||
return JSON.stringify(v.value)
|
||||
default:
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
||||
function __injectGlobalObject(name: string, args: string) {
|
||||
Reflect.set(window, name, JSON.parse(args));
|
||||
}
|
||||
|
||||
function __injectGlobalFunction(name: string) {
|
||||
Reflect.set(window, name, function () {
|
||||
const args: any[] = [];
|
||||
for (let i = 0; i < arguments.length; i++) {
|
||||
args.push(_wrappedValue(arguments[i]));
|
||||
}
|
||||
const ret = NativeClient.callNative(name, JSON.stringify(args));
|
||||
return _rawValue(JSON.parse(ret))
|
||||
});
|
||||
}
|
12
doric-js/lib/index.web.d.ts
vendored
12
doric-js/lib/index.web.d.ts
vendored
@@ -0,0 +1,12 @@
|
||||
declare module NativeClient {
|
||||
function callNative(name: string, args: string): string;
|
||||
}
|
||||
declare type RawValue = number | string | boolean | object | undefined;
|
||||
declare type WrappedValue = {
|
||||
type: "number" | "string" | "boolean" | "object" | "array" | "null";
|
||||
value: RawValue;
|
||||
};
|
||||
declare function _wrappedValue(v: RawValue): WrappedValue;
|
||||
declare function _rawValue(v: WrappedValue): RawValue;
|
||||
declare function __injectGlobalObject(name: string, args: string): void;
|
||||
declare function __injectGlobalFunction(name: string): void;
|
||||
|
@@ -1,17 +1,66 @@
|
||||
"use strict";
|
||||
/*
|
||||
* Copyright [2021] [Doric.Pub]
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
console.log("Hello,WebView");
|
||||
function _wrappedValue(v) {
|
||||
switch (typeof v) {
|
||||
case "number":
|
||||
return {
|
||||
type: "number",
|
||||
value: v
|
||||
};
|
||||
case "string":
|
||||
return {
|
||||
type: "string",
|
||||
value: v
|
||||
};
|
||||
case "boolean":
|
||||
return {
|
||||
type: "boolean",
|
||||
value: v
|
||||
};
|
||||
case "object":
|
||||
if (v instanceof Array) {
|
||||
return {
|
||||
type: "array",
|
||||
value: JSON.stringify(v)
|
||||
};
|
||||
}
|
||||
else {
|
||||
return {
|
||||
type: "object",
|
||||
value: JSON.stringify(v)
|
||||
};
|
||||
}
|
||||
default:
|
||||
return {
|
||||
type: "null",
|
||||
value: undefined
|
||||
};
|
||||
}
|
||||
}
|
||||
function _rawValue(v) {
|
||||
switch (v.type) {
|
||||
case "number":
|
||||
return v.value;
|
||||
case "string":
|
||||
return v.value;
|
||||
case "boolean":
|
||||
return v.value;
|
||||
case "object":
|
||||
case "array":
|
||||
return JSON.stringify(v.value);
|
||||
default:
|
||||
return undefined;
|
||||
}
|
||||
}
|
||||
function __injectGlobalObject(name, args) {
|
||||
Reflect.set(window, name, JSON.parse(args));
|
||||
}
|
||||
function __injectGlobalFunction(name) {
|
||||
Reflect.set(window, name, function () {
|
||||
const args = [];
|
||||
for (let i = 0; i < arguments.length; i++) {
|
||||
args.push(_wrappedValue(arguments[i]));
|
||||
}
|
||||
const ret = NativeClient.callNative(name, JSON.stringify(args));
|
||||
return _rawValue(JSON.parse(ret));
|
||||
});
|
||||
}
|
||||
|
@@ -5,7 +5,9 @@
|
||||
// "incremental": true, /* Enable incremental compilation */
|
||||
"target": "ES5", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
|
||||
"module": "es2015", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
||||
"lib": [], /* Specify library files to be included in the compilation. */
|
||||
"lib": [
|
||||
"DOM"
|
||||
], /* Specify library files to be included in the compilation. */
|
||||
// "allowJs": true, /* Allow javascript files to be compiled. */
|
||||
// "checkJs": true, /* Report errors in .js files. */
|
||||
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
||||
|
@@ -5,7 +5,9 @@
|
||||
// "incremental": true, /* Enable incremental compilation */
|
||||
"target": "ES2015", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */
|
||||
"module": "es2015", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
||||
"lib": [], /* Specify library files to be included in the compilation. */
|
||||
"lib": [
|
||||
"DOM"
|
||||
], /* Specify library files to be included in the compilation. */
|
||||
// "allowJs": true, /* Allow javascript files to be compiled. */
|
||||
// "checkJs": true, /* Report errors in .js files. */
|
||||
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|
||||
|
Reference in New Issue
Block a user