-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTrustlyWebView.js
87 lines (75 loc) · 2.3 KB
/
TrustlyWebView.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
import React from "react";
import { Linking } from "react-native";
import { WebView } from "react-native-webview";
export const NativeEventTypes = {
SUCCESS: "onTrustlyCheckoutSuccess",
ERROR: "onTrustlyCheckoutError",
REDIRECT: "onTrustlyCheckoutRedirect",
ABORT: "onTrustlyCheckoutAbort",
};
export const trustlyApplicationName = "TrustlyReactNativeWebView/v1";
export const trustlyCustomBridge = `
window.addEventListener('message', (e) => {
try {
const data = e.data;
const message = typeof data !== 'string' ? JSON.stringify(data) : data;
if (window.ReactNativeWebView) {
window.ReactNativeWebView.postMessage(message, '*');
}
} catch (e) {
console.log('An error occurred while trying to handle message from Trustly SDK listener: ', e.message);
}
});
/*
NOTE: this is required, or you'll sometimes
get silent failures
*/
true;
`;
const onMessage = (data, onSuccess, onError) => {
try {
const { type, url, eventType } = JSON.parse(data);
const isCheckoutEvent = eventType === "checkout-event";
if (isCheckoutEvent) {
if (type === NativeEventTypes.REDIRECT) {
try {
Linking.openURL(url);
} catch (e) {
console.log(`There was an error opening URL: ${url}. Error: ${e}`);
onError();
}
}
if (type === NativeEventTypes.ABORT || type === NativeEventTypes.ERROR) {
onError();
}
if (type === NativeEventTypes.SUCCESS) {
onSuccess();
}
}
} catch (e) {
const error = typeof error === "object" ? JSON.stringify(e) : e;
console.error(
`Something unexpected happen when trying to map Trustly Checkout events. Error: ${error}`
);
}
};
const TrustlyWebView = ({ uri, onSuccess, onError }) => {
return (
<WebView
source={{ uri }}
injectedJavaScriptForMainFrameOnly={false}
injectedJavaScript={trustlyCustomBridge}
applicationNameForUserAgent={trustlyApplicationName}
onMessage={({ nativeEvent }) => {
try {
onMessage(nativeEvent.data, onSuccess, onError);
} catch (e) {
console.error(
`Format of nativeEvent.data does not match Trustly API. Data sent: ${nativeEvent.data}`
);
}
}}
/>
);
};
export default TrustlyWebView;