react-native-gizwits-sdk-v5 1.0.6 → 1.0.8
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/ios/GizRNCallbackManager.swift +1 -1
- package/ios/GizwitsiOSSDK.framework/GizwitsiOSSDK +0 -0
- package/ios/GizwitsiOSSDK.framework/Modules/GizwitsiOSSDK.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/ios/GizwitsiOSSDK.framework/Modules/GizwitsiOSSDK.swiftmodule/arm64-apple-ios.swiftdoc +0 -0
- package/ios/GizwitsiOSSDK.framework/Modules/GizwitsiOSSDK.swiftmodule/arm64-apple-ios.swiftmodule +0 -0
- package/ios/RNGizSDKManagerModule.swift +31 -7
- package/lib/Base.d.ts +1 -1
- package/lib/index.d.ts +22 -28
- package/lib/index.js +57 -1
- package/lib/index.js.map +1 -1
- package/lib/types.d.ts +92 -0
- package/lib/types.js +2 -0
- package/lib/types.js.map +1 -0
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ public class GizRNCallbackManager {
|
|
|
15
15
|
}
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
public static func convertToDictionary<T:
|
|
18
|
+
public static func convertToDictionary<T: Encodable>(object: T) -> [String: Any]? {
|
|
19
19
|
let encoder = JSONEncoder()
|
|
20
20
|
guard let data = try? encoder.encode(object) else {
|
|
21
21
|
return nil
|
|
Binary file
|
|
Binary file
|
package/ios/GizwitsiOSSDK.framework/Modules/GizwitsiOSSDK.swiftmodule/arm64-apple-ios.swiftdoc
CHANGED
|
Binary file
|
package/ios/GizwitsiOSSDK.framework/Modules/GizwitsiOSSDK.swiftmodule/arm64-apple-ios.swiftmodule
CHANGED
|
Binary file
|
|
@@ -6,20 +6,44 @@
|
|
|
6
6
|
//
|
|
7
7
|
|
|
8
8
|
import Foundation
|
|
9
|
+
import React
|
|
9
10
|
import GizwitsiOSSDK
|
|
10
11
|
|
|
11
12
|
@objc(RNGizSDKManagerModule)
|
|
12
|
-
class RNGizSDKManagerModule:
|
|
13
|
+
class RNGizSDKManagerModule: RCTEventEmitter, GizSdkEventHandlerDelegate {
|
|
14
|
+
|
|
15
|
+
override func supportedEvents() -> [String]! {
|
|
16
|
+
return ["DeviceDataListener", "DeviceListListener", "DeviceStateListener"]
|
|
17
|
+
}
|
|
18
|
+
|
|
13
19
|
func onDeviceListUpdate(devices: Array<GizwitsiOSSDK.GizDevice>) {
|
|
14
20
|
|
|
21
|
+
var devicesDict: Array<Any> = []
|
|
22
|
+
devices.forEach { d in
|
|
23
|
+
let dev = GizRNCallbackManager.convertToDictionary(object: d)
|
|
24
|
+
if (dev != nil) {
|
|
25
|
+
devicesDict.append(dev!)
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
sendEvent(withName: "DeviceListListener", body: devicesDict)
|
|
15
29
|
}
|
|
16
30
|
|
|
17
|
-
func onDeviceData(device: GizwitsiOSSDK.
|
|
18
|
-
|
|
31
|
+
func onDeviceData(device: GizwitsiOSSDK.GizBaseProfile, result: GizwitsiOSSDK.GizJSON, type: GizwitsiOSSDK.GizCapability) {
|
|
32
|
+
let data = [
|
|
33
|
+
"device": GizRNCallbackManager.convertToDictionary(object: device) ?? [:],
|
|
34
|
+
"data": result,
|
|
35
|
+
"type": type.rawValue
|
|
36
|
+
] as [String : Any]
|
|
37
|
+
sendEvent(withName: "DeviceDataListener", body: data)
|
|
19
38
|
}
|
|
20
39
|
|
|
21
|
-
func onDeviceState(device: GizwitsiOSSDK.
|
|
22
|
-
|
|
40
|
+
func onDeviceState(device: GizwitsiOSSDK.GizBaseProfile, state: GizwitsiOSSDK.GizWifiDeviceNetStatus, type: GizwitsiOSSDK.GizCapability) {
|
|
41
|
+
let data = [
|
|
42
|
+
"device": GizRNCallbackManager.convertToDictionary(object: device),
|
|
43
|
+
"state": state.rawValue,
|
|
44
|
+
"type": type.rawValue
|
|
45
|
+
] as [String : Any]
|
|
46
|
+
sendEvent(withName: "DeviceStateListener", body: data)
|
|
23
47
|
}
|
|
24
48
|
override init() {
|
|
25
49
|
super.init()
|
|
@@ -44,7 +68,7 @@ class RNGizSDKManagerModule: NSObject, GizSdkEventHandlerDelegate {
|
|
|
44
68
|
}
|
|
45
69
|
|
|
46
70
|
@objc
|
|
47
|
-
public func getDevices(result: @escaping RCTResponseSenderBlock) {
|
|
71
|
+
public func getDevices(_ options: NSDictionary, result: @escaping RCTResponseSenderBlock) {
|
|
48
72
|
Task {
|
|
49
73
|
let data = await GizSDKManager.sharedInstance.getDevices()
|
|
50
74
|
GizRNCallbackManager.callbackWithResult(callback: result, result: GizResult<Array<GizDevice>?, GizAPIException?>(data: data, success: true))
|
|
@@ -53,7 +77,7 @@ class RNGizSDKManagerModule: NSObject, GizSdkEventHandlerDelegate {
|
|
|
53
77
|
}
|
|
54
78
|
|
|
55
79
|
@objc
|
|
56
|
-
static func requiresMainQueueSetup() -> Bool {
|
|
80
|
+
override static func requiresMainQueueSetup() -> Bool {
|
|
57
81
|
return true
|
|
58
82
|
}
|
|
59
83
|
}
|
package/lib/Base.d.ts
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,33 +1,27 @@
|
|
|
1
1
|
import Base from './Base';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
export interface TRNGizSDKManagerModule {
|
|
5
|
-
initSDK: (config: GizConfigStruct) => Promise<GizResult<any, any>>;
|
|
6
|
-
getDevices: () => Promise<GizResult<[IDevice], any>>;
|
|
7
|
-
}
|
|
8
|
-
export interface GizResult<T, E> {
|
|
9
|
-
success: boolean;
|
|
10
|
-
message: string;
|
|
11
|
-
data?: T;
|
|
12
|
-
error?: E;
|
|
13
|
-
}
|
|
14
|
-
export declare type GizCallback<T, E> = (error: GizResult<T, E>, data: GizResult<T, E>) => void;
|
|
15
|
-
export interface ServerInfoStruct {
|
|
16
|
-
openAPIInfo: string;
|
|
17
|
-
}
|
|
18
|
-
export interface ProductInfoStruct {
|
|
19
|
-
productKey: string;
|
|
20
|
-
productSecret: string;
|
|
21
|
-
}
|
|
22
|
-
export interface GizConfigStruct {
|
|
23
|
-
appID: string;
|
|
24
|
-
appSecret: string;
|
|
25
|
-
productInfos: ProductInfoStruct[];
|
|
26
|
-
serverInfo?: ServerInfoStruct;
|
|
27
|
-
}
|
|
2
|
+
import { DeviceDataCallback, DeviceDataRes, DeviceListCallback, DeviceStateCallback, DeviceStateRes, GizConfigStruct, IDevice, TRNGizSDKManagerModule } from './types';
|
|
3
|
+
import * as Types from './types';
|
|
28
4
|
declare class RNGizSDKManagerModule extends Base implements TRNGizSDKManagerModule {
|
|
29
|
-
|
|
30
|
-
|
|
5
|
+
deviceDataCallbacks: DeviceDataCallback[];
|
|
6
|
+
deviceListCallbacks: DeviceListCallback[];
|
|
7
|
+
deviceStateCallbacks: DeviceStateCallback[];
|
|
8
|
+
constructor();
|
|
9
|
+
deviceDataCallback: (data: DeviceDataRes) => void;
|
|
10
|
+
deviceListCallback: (data: IDevice[]) => void;
|
|
11
|
+
deviceStateCallback: (data: DeviceStateRes) => void;
|
|
12
|
+
initSDK(config: GizConfigStruct): Promise<Types.GizResult<any, any>>;
|
|
13
|
+
/**
|
|
14
|
+
* 查询设备列表
|
|
15
|
+
*/
|
|
16
|
+
getDevices(): Promise<Types.GizResult<any, any>>;
|
|
17
|
+
addDeviceDataListener(callback: DeviceDataCallback): void;
|
|
18
|
+
addDeviceListListener(callback: DeviceListCallback): void;
|
|
19
|
+
addDeviceStateListener(callback: DeviceStateCallback): void;
|
|
20
|
+
removeDeviceDataListener(callback: DeviceDataCallback): void;
|
|
21
|
+
removeDeviceListListener(callback: DeviceListCallback): void;
|
|
22
|
+
removeDeviceStateListener(callback: DeviceStateCallback): void;
|
|
23
|
+
private deleteCallBack;
|
|
31
24
|
}
|
|
32
25
|
declare const _default: RNGizSDKManagerModule;
|
|
33
26
|
export default _default;
|
|
27
|
+
export { Types };
|
package/lib/index.js
CHANGED
|
@@ -1,16 +1,72 @@
|
|
|
1
|
-
import { NativeModules } from 'react-native';
|
|
1
|
+
import { NativeEventEmitter, NativeModules } from 'react-native';
|
|
2
2
|
import Base from './Base';
|
|
3
|
+
import * as Types from './types';
|
|
4
|
+
const eventEmitter = new NativeEventEmitter(NativeModules.RNGizSDKManagerModule);
|
|
3
5
|
class RNGizSDKManagerModule extends Base {
|
|
6
|
+
constructor() {
|
|
7
|
+
super();
|
|
8
|
+
this.deviceDataCallbacks = [];
|
|
9
|
+
this.deviceListCallbacks = [];
|
|
10
|
+
this.deviceStateCallbacks = [];
|
|
11
|
+
this.deviceDataCallback = (data) => {
|
|
12
|
+
this.deviceDataCallbacks.map((item) => {
|
|
13
|
+
item(data);
|
|
14
|
+
});
|
|
15
|
+
};
|
|
16
|
+
this.deviceListCallback = (data) => {
|
|
17
|
+
this.deviceListCallbacks.map((item) => {
|
|
18
|
+
item(data);
|
|
19
|
+
});
|
|
20
|
+
};
|
|
21
|
+
this.deviceStateCallback = (data) => {
|
|
22
|
+
this.deviceStateCallbacks.map((item) => {
|
|
23
|
+
item(data);
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
this.deleteCallBack = (callbacks, callback) => {
|
|
27
|
+
const index = callbacks.findIndex((item) => item === callback);
|
|
28
|
+
if (index !== -1) {
|
|
29
|
+
callbacks.splice(index, 1);
|
|
30
|
+
}
|
|
31
|
+
};
|
|
32
|
+
eventEmitter.addListener('DeviceDataListener', this.deviceDataCallback);
|
|
33
|
+
eventEmitter.addListener('DeviceListListener', this.deviceListCallback);
|
|
34
|
+
eventEmitter.addListener('DeviceStateListener', this.deviceStateCallback);
|
|
35
|
+
}
|
|
4
36
|
async initSDK(config) {
|
|
5
37
|
return this.callbackWapper((callback) => {
|
|
6
38
|
NativeModules.RNGizSDKManagerModule.initSDK(config, callback);
|
|
7
39
|
});
|
|
8
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* 查询设备列表
|
|
43
|
+
*/
|
|
9
44
|
async getDevices() {
|
|
10
45
|
return this.callbackWapper((callback) => {
|
|
11
46
|
NativeModules.RNGizSDKManagerModule.getDevices({}, callback);
|
|
12
47
|
});
|
|
13
48
|
}
|
|
49
|
+
// 添加监听
|
|
50
|
+
addDeviceDataListener(callback) {
|
|
51
|
+
this.deviceDataCallbacks.push(callback);
|
|
52
|
+
}
|
|
53
|
+
addDeviceListListener(callback) {
|
|
54
|
+
this.deviceListCallbacks.push(callback);
|
|
55
|
+
}
|
|
56
|
+
addDeviceStateListener(callback) {
|
|
57
|
+
this.deviceStateCallbacks.push(callback);
|
|
58
|
+
}
|
|
59
|
+
// 解除
|
|
60
|
+
removeDeviceDataListener(callback) {
|
|
61
|
+
this.deleteCallBack(this.deviceDataCallbacks, callback);
|
|
62
|
+
}
|
|
63
|
+
removeDeviceListListener(callback) {
|
|
64
|
+
this.deleteCallBack(this.deviceListCallbacks, callback);
|
|
65
|
+
}
|
|
66
|
+
removeDeviceStateListener(callback) {
|
|
67
|
+
this.deleteCallBack(this.deviceStateCallbacks, callback);
|
|
68
|
+
}
|
|
14
69
|
}
|
|
15
70
|
export default new RNGizSDKManagerModule();
|
|
71
|
+
export { Types };
|
|
16
72
|
//# sourceMappingURL=index.js.map
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,cAAc,CAAA;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.tsx"],"names":[],"mappings":"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"}
|
package/lib/types.d.ts
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
export declare type AuthenticationMethod = 0 | 1;
|
|
2
|
+
export interface GizBaseCapability {
|
|
3
|
+
name: string;
|
|
4
|
+
isActive: boolean;
|
|
5
|
+
}
|
|
6
|
+
export interface GizBaseProfile {
|
|
7
|
+
id: string;
|
|
8
|
+
mac: string;
|
|
9
|
+
productKey: string;
|
|
10
|
+
did?: string;
|
|
11
|
+
protocolVersion: number;
|
|
12
|
+
supportOTA: boolean;
|
|
13
|
+
requiresAuthentication: boolean;
|
|
14
|
+
authenticationMethod: AuthenticationMethod;
|
|
15
|
+
rootDid?: string;
|
|
16
|
+
moduleSoftVer?: string;
|
|
17
|
+
configured: boolean;
|
|
18
|
+
mcuSoftVer?: string;
|
|
19
|
+
isBind: boolean;
|
|
20
|
+
name: string;
|
|
21
|
+
}
|
|
22
|
+
export declare type BlueToothType = 'Mesh' | 'Beacon' | 'Voice' | 'GATT';
|
|
23
|
+
export declare type BlueToothVersion = 'BLE4' | 'BLE42' | 'BLE50';
|
|
24
|
+
export interface GizLanProfile {
|
|
25
|
+
ip: string;
|
|
26
|
+
port: number;
|
|
27
|
+
cTime: number;
|
|
28
|
+
}
|
|
29
|
+
export interface GizBleProfile {
|
|
30
|
+
deviceId: string;
|
|
31
|
+
cTime: number;
|
|
32
|
+
RSSI: number;
|
|
33
|
+
blueToothType: BlueToothType;
|
|
34
|
+
blueToothVersion: BlueToothVersion;
|
|
35
|
+
}
|
|
36
|
+
export interface GizMQTTProfile {
|
|
37
|
+
host: string;
|
|
38
|
+
port: number;
|
|
39
|
+
}
|
|
40
|
+
export interface GizBleCapability extends GizBaseCapability {
|
|
41
|
+
profile: GizBleProfile;
|
|
42
|
+
}
|
|
43
|
+
export interface GizLanCapability extends GizBaseCapability {
|
|
44
|
+
profile: GizLanProfile;
|
|
45
|
+
}
|
|
46
|
+
export interface GizMQTTCapability extends GizBaseCapability {
|
|
47
|
+
profile: GizMQTTProfile;
|
|
48
|
+
}
|
|
49
|
+
export interface IDevice extends GizBaseProfile {
|
|
50
|
+
bleCapability: GizBleCapability;
|
|
51
|
+
lanCapability: GizLanCapability;
|
|
52
|
+
mqttCapability: GizMQTTCapability;
|
|
53
|
+
}
|
|
54
|
+
export interface TRNGizSDKManagerModule {
|
|
55
|
+
initSDK: (config: GizConfigStruct) => Promise<GizResult<any, any>>;
|
|
56
|
+
getDevices: () => Promise<GizResult<[IDevice], any>>;
|
|
57
|
+
}
|
|
58
|
+
export interface GizResult<T, E> {
|
|
59
|
+
success: boolean;
|
|
60
|
+
message: string;
|
|
61
|
+
data?: T;
|
|
62
|
+
error?: E;
|
|
63
|
+
}
|
|
64
|
+
export declare type GizCallback<T, E> = (error: GizResult<T, E>, data: GizResult<T, E>) => void;
|
|
65
|
+
export interface ServerInfoStruct {
|
|
66
|
+
openAPIInfo: string;
|
|
67
|
+
}
|
|
68
|
+
export interface ProductInfoStruct {
|
|
69
|
+
productKey: string;
|
|
70
|
+
productSecret: string;
|
|
71
|
+
}
|
|
72
|
+
export interface GizConfigStruct {
|
|
73
|
+
appID: string;
|
|
74
|
+
appSecret: string;
|
|
75
|
+
productInfos: ProductInfoStruct[];
|
|
76
|
+
serverInfo?: ServerInfoStruct;
|
|
77
|
+
}
|
|
78
|
+
export declare type GizWifiDeviceNetStatus = 0 | 1 | 2 | 3;
|
|
79
|
+
export declare type GizCapability = 0 | 1 | 2;
|
|
80
|
+
export interface DeviceDataRes {
|
|
81
|
+
device: GizBaseProfile;
|
|
82
|
+
data: any;
|
|
83
|
+
type: GizCapability;
|
|
84
|
+
}
|
|
85
|
+
export interface DeviceStateRes {
|
|
86
|
+
device: GizBaseProfile;
|
|
87
|
+
state: GizWifiDeviceNetStatus;
|
|
88
|
+
type: GizCapability;
|
|
89
|
+
}
|
|
90
|
+
export declare type DeviceDataCallback = (data: DeviceDataRes) => void;
|
|
91
|
+
export declare type DeviceStateCallback = (data: DeviceStateRes) => void;
|
|
92
|
+
export declare type DeviceListCallback = (data: IDevice[]) => void;
|
package/lib/types.js
ADDED
package/lib/types.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""}
|