forked from tadasr/react-native-iot-wifi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
69 lines (60 loc) · 1.67 KB
/
index.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
65
66
67
68
69
"use strict";
import { NativeModules } from "react-native";
function connect(...args) {
if (args.length < 2 || args.length > 3) {
throw new TypeError("invalid arguments");
} else if (args.length === 2) {
NativeModules.IOTWifi.connect(args[0], false, args[1]);
} else {
NativeModules.IOTWifi.connect(...args);
}
}
function connectSecure(...args) {
if (args.length < 4 || args.length > 5) {
throw new TypeError("invalid arguments");
} else if (args.length === 4) {
NativeModules.IOTWifi.connectSecure(
args[0],
args[1],
args[2],
false,
args[3]
);
} else {
NativeModules.IOTWifi.connectSecure(...args);
}
}
function removeSSID(...args) {
if (args.length < 2 || args.length > 3) {
throw new TypeError("invalid arguments");
} else if (args.length === 2) {
NativeModules.IOTWifi.removeSSID(args[0], false, args[1]);
} else {
NativeModules.IOTWifi.removeSSID(...args);
}
}
function getSSID(...args) {
NativeModules.IOTWifi.getSSID(...args);
}
function isApiAvailable(...args) {
NativeModules.IOTWifi.isApiAvailable(...args);
}
function forceWifiUsage(...args) {
NativeModules.IOTWifi.forceWifiUsage(...args);
}
module.exports = {
connect,
connectSecure,
getSSID,
isApiAvailable,
removeSSID,
forceWifiUsage
};
/**
* (un)bindNetwork only affects Android
* isApiAvailable(Callback callback)
* connect(String ssid, Boolean bindNetwork = false, Callback callback)
* todo: connectSecure(String ssid, String passphrase, Boolean isWEP, Boolean bindNetwork = false, Callback callback)
* removeSSID(String ssid, Boolean unbindNetwork = false, Callback callback)
* getSSID(Callback callback)
*/