This repository has been archived by the owner on Sep 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
SGNativeComponent.js
146 lines (124 loc) · 3.96 KB
/
SGNativeComponent.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
Copyright 2017 Salathé Lab - EPFL - Boris Conforty
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.
*/
/* @flow */
/* eslint
no-underscore-dangle:
["error", { "allow": ["_commandPromiseHandler", "_nodeHandle", "_commandid"] }]
no-console:
0
*/
import { Component } from 'react';
import {
findNodeHandle,
NativeAppEventEmitter,
Platform,
UIManager,
} from 'react-native';
const eventEmitter = NativeAppEventEmitter;
type PromiseHandlerType = {
commandid: number,
resolve: Function,
reject: Function,
timeout: number,
}
function PromiseHandler() {
this.handlers = {};
eventEmitter.addListener(
'COMMAND_DONE_EVENT_NAME', (event) => {
const handler = this.handlers[event.commandid];
if (handler) {
this.remove(handler.commandid);
if (event.type === 'resolve') {
handler.resolve(event.result);
} else {
handler.reject(new Error(event.result));
}
}
},
);
this.add = function add(handler: PromiseHandlerType) {
this.handlers[handler.commandid] = { resolve: handler.resolve, reject: handler.reject };
};
this.remove = function remove(commandid) {
const handler = this.handlers[commandid];
if (handler) {
clearTimeout(handler.timeout);
delete this.handlers[commandid];
// alert('Removed handler');
} else {
// alert('No handler for commandid ' + commandid);
}
};
}
class NativeComponent extends Component {
// Android-specific code, for commands on Android don't handle promises
static _commandid: number = 0;
static _commandPromiseHandler: Object = new PromiseHandler();
_nodeHandle: Object;
nodeHandle() {
if (!this._nodeHandle) {
this._nodeHandle = findNodeHandle(this);
}
return this._nodeHandle;
}
dispatchCommand(command:any, args?: Array<any>): Promise<*> {
return new Promise((resolve, reject) => {
// if (1 === 1) return;
if (typeof command === 'undefined') {
// console.log('COMMAND ERROR! Command is "undefined".');
return;
}
// console.log('COMMAND: ' + JSON.stringify(command));
// console.log('COMMAND: ' + command);
// console.log('COMMAND TYPE: ' + typeof command);
let argArray;
if (typeof args === 'undefined') {
argArray = [];
} else if (Array.isArray(args)) {
argArray = args;
} else {
argArray = [args];
}
// if (typeof command === 'function') {
if (Platform.OS === 'ios') {
// iOS
try {
command.apply(
this,
[this.nodeHandle(), ...argArray],
)
.then((result) => { if (resolve) resolve(result); })
.catch((result) => { if (reject) reject(result); });
} catch (e) {
// In case the command does not handle promises
}
} else if (Platform.OS === 'android') {
// Android
NativeComponent._commandid += 1;
const commandid = NativeComponent._commandid;
const timeout = setTimeout(() => {
NativeComponent._commandPromiseHandler.remove(commandid);
}, 2000);
argArray.push({ commandid });
// Since dispatchViewManagerCommand does not handle promises...
NativeComponent._commandPromiseHandler.add({ commandid, resolve, reject, timeout });
UIManager.dispatchViewManagerCommand(
this.nodeHandle(),
command,
argArray,
);
}
});
}
}
export default NativeComponent;