-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathIterableInboxMessageDisplay.tsx
257 lines (230 loc) · 6.3 KB
/
IterableInboxMessageDisplay.tsx
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
import { useEffect, useState } from 'react';
import {
Linking,
ScrollView,
StyleSheet,
Text,
TouchableWithoutFeedback,
View,
} from 'react-native';
import Icon from 'react-native-vector-icons/Ionicons';
import { WebView, type WebViewMessageEvent } from 'react-native-webview';
import {
Iterable,
IterableAction,
IterableActionContext,
IterableActionSource,
IterableEdgeInsets,
} from '../../core';
import {
IterableHtmlInAppContent,
IterableInAppCloseSource,
IterableInAppLocation,
} from '../../inApp';
import { type IterableInboxRowViewModel } from '../types';
// TODO: Comment
export interface IterableInboxMessageDisplayProps {
rowViewModel: IterableInboxRowViewModel;
inAppContentPromise: Promise<IterableHtmlInAppContent>;
returnToInbox: (
/** Callback to be executed after returning to the inbox */
callback?: () => void
) => void;
deleteRow: (
/** Id of the row to be deleted */
id: string
) => void;
contentWidth: number;
isPortrait: boolean;
}
// TODO: Comment
export const IterableInboxMessageDisplay = ({
rowViewModel,
inAppContentPromise,
returnToInbox,
deleteRow,
contentWidth,
isPortrait,
}: IterableInboxMessageDisplayProps) => {
const messageTitle = rowViewModel.inAppMessage.inboxMetadata?.title;
const [inAppContent, setInAppContent] = useState<IterableHtmlInAppContent>(
new IterableHtmlInAppContent(new IterableEdgeInsets(0, 0, 0, 0), '')
);
const styles = StyleSheet.create({
messageDisplayContainer: {
height: '100%',
width: contentWidth,
backgroundColor: 'whitesmoke',
flexDirection: 'column',
justifyContent: 'flex-start',
},
header: {
flexDirection: 'row',
justifyContent: 'center',
width: '100%',
},
returnButtonContainer: {
flexDirection: 'row',
justifyContent: 'flex-start',
alignItems: 'center',
width: '25%',
marginLeft: 0,
marginTop: 0,
},
returnButton: {
flexDirection: 'row',
alignItems: 'center',
},
returnButtonIcon: {
color: 'deepskyblue',
fontSize: 40,
paddingLeft: 0,
},
returnButtonText: {
color: 'deepskyblue',
fontSize: 20,
},
messageTitleContainer: {
flexDirection: 'row',
justifyContent: 'flex-start',
alignItems: 'center',
width: '75%',
marginTop: 0,
},
messageTitle: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
width: 0.5 * contentWidth,
},
messageTitleText: {
fontWeight: 'bold',
fontSize: 20,
backgroundColor: 'whitesmoke',
},
contentContainer: {
flex: 1,
},
});
const {
header,
returnButton,
returnButtonIcon,
returnButtonText,
messageTitleContainer,
messageTitleText,
messageDisplayContainer,
} = styles;
let { returnButtonContainer } = styles;
// orientation dependent styling
returnButtonContainer = !isPortrait
? { ...returnButtonContainer, marginLeft: 80 }
: returnButtonContainer;
const JS = `
const links = document.querySelectorAll('a')
links.forEach(link => {
link.class = link.href
link.href = "javascript:void(0)"
link.addEventListener("click", () => {
window.ReactNativeWebView.postMessage(link.class)
})
})
`;
useEffect(() => {
let mounted = true;
inAppContentPromise.then((value) => {
if (mounted) {
setInAppContent(value);
}
});
return () => {
mounted = false;
};
});
function handleInAppLinkAction(event: WebViewMessageEvent) {
const URL = event.nativeEvent.data;
const action = new IterableAction('openUrl', URL, '');
const source = IterableActionSource.inApp;
const context = new IterableActionContext(action, source);
Iterable.trackInAppClick(
rowViewModel.inAppMessage,
IterableInAppLocation.inbox,
URL
);
Iterable.trackInAppClose(
rowViewModel.inAppMessage,
IterableInAppLocation.inbox,
IterableInAppCloseSource.link,
URL
);
//handle delete action
if (URL === 'iterable://delete') {
returnToInbox(() => deleteRow(rowViewModel.inAppMessage.messageId));
//handle dismiss action
} else if (URL === 'iterable://dismiss') {
returnToInbox();
//handle external link
} else if (URL.slice(0, 4) === 'http') {
returnToInbox(() => Linking.openURL(URL));
//handle custom action
} else if (URL.slice(0, 9) === 'action://') {
action.type = URL.replace('action://', '');
returnToInbox(() => {
if (Iterable.savedConfig.customActionHandler) {
Iterable.savedConfig.customActionHandler(action, context);
}
});
//handle deep link or error link
} else {
returnToInbox(() => {
if (Iterable.savedConfig.urlHandler) {
Iterable.savedConfig.urlHandler(URL, context);
}
});
}
}
return (
<View style={messageDisplayContainer}>
<View style={header}>
<View style={returnButtonContainer}>
<TouchableWithoutFeedback
onPress={() => {
returnToInbox();
Iterable.trackInAppClose(
rowViewModel.inAppMessage,
IterableInAppLocation.inbox,
IterableInAppCloseSource.back
);
}}
>
<View style={returnButton}>
<Icon name="chevron-back-outline" style={returnButtonIcon} />
<Text style={returnButtonText}>Inbox</Text>
</View>
</TouchableWithoutFeedback>
</View>
<View style={messageTitleContainer}>
<View style={styles.messageTitle}>
<Text
numberOfLines={1}
ellipsizeMode="tail"
style={messageTitleText}
>
{messageTitle}
</Text>
</View>
</View>
</View>
<ScrollView contentContainerStyle={styles.contentContainer}>
<WebView
originWhiteList={['*']}
source={{ html: inAppContent.html }}
style={{ width: contentWidth }}
onMessage={(event) => handleInAppLinkAction(event)}
injectedJavaScript={JS}
/>
</ScrollView>
</View>
);
};
export default IterableInboxMessageDisplay;