-
Notifications
You must be signed in to change notification settings - Fork 12
/
index.ios.js
48 lines (38 loc) · 1.18 KB
/
index.ios.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
/**
* @providesModule RCTSFSafariViewController
* @flow
*/
'use strict';
var React = require('react-native');
var {
NativeModules: {
SFSafariViewController,
},
NativeAppEventEmitter,
DeviceEventEmitter,
processColor,
} = React;
var RCTSFSafariViewControllerExport = {
open: function(url, options={}) {
var parsedOptions = {};
if(options.tintColor)
parsedOptions.tintColor = processColor(options.tintColor);
SFSafariViewController.openURL(url, parsedOptions);
},
close: function() {
SFSafariViewController.close();
},
addEventListener(eventName, listener) {
if(eventName == 'onLoad')
return NativeAppEventEmitter.addListener('SFSafariViewControllerDidLoad', listener);
if(eventName == 'onDismiss')
return NativeAppEventEmitter.addListener('SFSafariViewControllerDismissed', listener);
},
removeEventListener(eventName, listener) {
if(eventName == 'onLoad')
NativeAppEventEmitter.removeListener('SFSafariViewControllerDidLoad', listener);
if(eventName == 'onDismiss')
NativeAppEventEmitter.removeListener('SFSafariViewControllerDismissed', listener);
}
};
module.exports = RCTSFSafariViewControllerExport;