forked from reactnativecn/react-native-qq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
79 lines (65 loc) · 2 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
70
71
72
73
74
75
/**
* Created by Yun on 2015-12-12.
*/
import { NativeModules, NativeEventEmitter } from 'react-native';
const { QQAPI } = NativeModules;
const QQAPIEmitter = new NativeEventEmitter(QQAPI);
function translateError(err, result) {
if (!err) {
return this.resolve(result);
}
if (typeof err === 'object') {
if (err instanceof Error) {
return this.reject(ret);
}
return this.reject(Object.assign(new Error(err.message), { errCode: err.errCode }));
} else if (typeof err === 'string') {
return this.reject(new Error(err));
}
this.reject(Object.assign(new Error(), { origin: err }));
}
export const isQQInstalled = QQAPI.isQQInstalled;
export const isQQSupportApi = QQAPI.isQQSupportApi;
// Save callback and wait for future event.
let savedCallback = undefined;
function waitForResponse(type) {
return new Promise((resolve, reject) => {
if (savedCallback) {
savedCallback('User canceled.');
}
savedCallback = result => {
if (result.type !== type) {
return;
}
savedCallback = undefined;
if (result.errCode !== 0) {
const err = new Error(result.errMsg);
err.errCode = result.errCode;
reject(err);
} else {
const {type, ...r} = result
resolve(r);
}
};
});
}
QQAPIEmitter.addListener('QQ_Resp', resp => {
const callback = savedCallback;
savedCallback = undefined;
callback && callback(resp);
});
export function login(scopes) {
return QQAPI.login(scopes)
.then(() => waitForResponse("QQAuthorizeResponse"));
}
export function shareToQQ(data={}) {
return QQAPI.shareToQQ(data)
.then(() => waitForResponse("QQShareResponse"));
}
export function shareToQzone(data={}) {
return QQAPI.shareToQzone(data)
.then(() => waitForResponse("QQShareResponse"));
}
export function logout(){
QQAPI.logout()
}