-
-
Notifications
You must be signed in to change notification settings - Fork 226
/
utils.js
182 lines (163 loc) · 4.62 KB
/
utils.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/**
* @format
* @flow strict-local
*/
import invariant from 'invariant';
import {
processColor,
Linking,
Platform,
AppState,
NativeModules,
} from 'react-native';
import type {
BrowserResult,
RedirectEvent,
RedirectResult,
AuthSessionResult,
InAppBrowserOptions,
} from './types';
export const RNInAppBrowser = NativeModules.RNInAppBrowser;
type EmitterSubscription = {
remove(): void,
};
let _redirectHandler: ?(event: RedirectEvent) => void;
let _linkingEventSubscription: ?EmitterSubscription;
// If the initial AppState.currentState is null, we assume that the first call to
// AppState#change event is not actually triggered by a real change,
// is triggered instead by the bridge capturing the current state
// (https://reactnative.dev/docs/appstate#basic-usage)
let _isAppStateAvailable = AppState.currentState !== null;
type AppStateStatus = typeof AppState.currentState;
function waitForRedirectAsync(returnUrl: string): Promise<RedirectResult> {
return new Promise(function (resolve) {
_redirectHandler = (event: RedirectEvent) => {
if (event.url && event.url.startsWith(returnUrl)) {
resolve({ url: event.url, type: 'success' });
}
};
_linkingEventSubscription = Linking.addEventListener(
'url',
_redirectHandler
);
});
}
/**
* Detect Android Activity `OnResume` event once
*/
function handleAppStateActiveOnce(): Promise<void> {
return new Promise(function (resolve) {
let appStateEventSubscription: ?EmitterSubscription;
function handleAppStateChange(nextAppState: AppStateStatus) {
if (!_isAppStateAvailable) {
_isAppStateAvailable = true;
return;
}
if (nextAppState === 'active') {
if (
appStateEventSubscription &&
appStateEventSubscription.remove !== undefined
) {
appStateEventSubscription.remove();
} else {
AppState.removeEventListener('change', handleAppStateChange);
}
resolve();
}
}
appStateEventSubscription = AppState.addEventListener(
'change',
handleAppStateChange
);
});
}
async function checkResultAndReturnUrl(
returnUrl: string,
result: AuthSessionResult
): Promise<AuthSessionResult> {
if (Platform.OS === 'android' && result.type !== 'cancel') {
try {
await handleAppStateActiveOnce();
const url = await Linking.getInitialURL();
return url && url.startsWith(returnUrl) ? { url, type: 'success' } : result;
} catch {
return result;
}
} else {
return result;
}
}
export async function openBrowserAsync(
url: string,
options?: InAppBrowserOptions = {
animated: true,
modalEnabled: true,
dismissButtonStyle: 'close',
readerMode: false,
enableBarCollapsing: false,
}
): Promise<BrowserResult> {
return RNInAppBrowser.open({
...options,
url,
preferredBarTintColor:
options.preferredBarTintColor &&
processColor(options.preferredBarTintColor),
preferredControlTintColor:
options.preferredControlTintColor &&
processColor(options.preferredControlTintColor),
});
}
export async function openAuthSessionAsync(
url: string,
redirectUrl: string,
options?: InAppBrowserOptions = {
ephemeralWebSession: false,
}
): Promise<AuthSessionResult> {
return RNInAppBrowser.openAuth(url, redirectUrl, options);
}
export async function openAuthSessionPolyfillAsync(
startUrl: string,
returnUrl: string,
options?: InAppBrowserOptions
): Promise<AuthSessionResult> {
invariant(
!_redirectHandler,
'InAppBrowser.openAuth is in a bad state. _redirectHandler is defined when it should not be.'
);
try {
return await Promise.race([
openBrowserAsync(startUrl, options).then(function (result) {
return checkResultAndReturnUrl(returnUrl, result);
}),
waitForRedirectAsync(returnUrl),
]);
} finally {
closeAuthSessionPolyfillAsync();
RNInAppBrowser.close();
}
}
export function closeAuthSessionPolyfillAsync(): void {
if (_redirectHandler) {
if (
_linkingEventSubscription &&
_linkingEventSubscription.remove !== undefined
) {
_linkingEventSubscription.remove();
_linkingEventSubscription = null;
} else {
Linking.removeEventListener('url', _redirectHandler);
}
_redirectHandler = null;
}
}
/* iOS <= 10 and Android polyfill for SFAuthenticationSession flow */
export function authSessionIsNativelySupported(): boolean {
if (Platform.OS === 'android') {
return false;
}
const versionNumber = parseInt(Platform.Version, 10);
return versionNumber >= 11;
}
export const isAndroid = Platform.OS === 'android';