This repository was archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathbase.js
64 lines (54 loc) · 1.33 KB
/
base.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* @Author: dmyang
* @Date: 2016-01-15 10:44:29
* @Last Modified by: dmyang
* @Last Modified time: 2016-06-21 19:57:06
* @Description: hybridjs公共api
*/
'use strict'
import HybridJS from '../lib/core'
const HANDLER_ROOT = 'com.companyName.hybridSDK.handler.'
const $ = HybridJS
/**
* launch another app via package name
* usage:
* HybridJS.view.openUrl('./detail.html')
**/
$.wrapAPI('view.openUrl', (url) => {
if($.isInApp) $.invokeApp(`${HANDLER_ROOT}ForwardHandler/startPage`, { url })
else location.href = url
})
/**
* launch another app via package name
* usage:
* HybridJS.view.launchApp('com.tencent.weixin')
**/
$.wrapAPI('view.launchApp', (pkg) => {
$.invokeApp(`${HANDLER_ROOT}ForwardHandler/startApp`, { pkg })
})
/**
* webview back
* usage:
* HybridJS.view.back()
**/
$.wrapAPI('view.back', (value = 1) => {
if($.isInApp) $.invokeApp(`${HANDLER_ROOT}MBack/back`, {value})
else window.history.back()
})
/**
* get device sn
* usage:
* HybridJS.device.getSN((sn) => console.log(sn))
**/
$.wrapAPI('device.getSN', (callback) => {
$.invokeApp(`${HANDLER_ROOT}DeviceInfoHandler/getSN`, {callback})
})
/**
* Native UI component
* usage:
* HybridJS.ui.toast('msg ...')
**/
$.wrapAPI('ui.toast', (msg) => {
if(msg) $.invokeApp(`${HANDLER_ROOT}InteractHandler/toast`, { msg })
})
module.exports = $