forked from SelligentMarketingCloud/MobileSDK-ReactNative
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
233 lines (203 loc) · 7.11 KB
/
index.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
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
import { NativeModules, Platform } from 'react-native'
import SelligentConstants from './constants'
import SelligentHelpers from './helpers'
const { RNSelligent } = NativeModules
// Check if Native version of Selligent found
SelligentHelpers.isNativeSelligentFound(RNSelligent)
// to export the android methods without syntax sugar and/or javascript manipulation, use this line:
// export default RNSelligent;
// platform specific code
var platformSpecificMethods = {}
if (Platform.OS === 'android') {
platformSpecificMethods = require('./index.android.js').default
} else if (Platform.OS === 'ios') {
platformSpecificMethods = require('./index.ios.js').default
}
// or export with syntax sugar and/or javascript manipulation:
export default Object.assign(
{
// Check if the Selligent Module is loaded
_selligentLoaded: Boolean(RNSelligent),
// Basic SMManager
/**
* Returns the version of the underlying Selligent SDK.
*
* @param {function} successCallback Callback function on success.
*/
getVersionLib: function (successCallback) {
RNSelligent.getVersionLib(successCallback)
return
},
// DataTransaction
// InAppMessage
/**
* Get in app messages.
*
* @param {function} successCallback Callback function on success.
*/
getInAppMessages: function (successCallback) {
RNSelligent.getInAppMessages(successCallback)
return
},
/**
* Set in app message as seen
*
* @param {function} successCallback Callback function on success.
* @param {function} errorCallback Callback function on error.
* @param {string} messageId Message id to identify the message which has been seen.
*/
setInAppMessageAsSeen: function (successCallback, errorCallback, messageId) {
// check if required options are valid
if (!SelligentHelpers.typeMatches(messageId, 'string')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected a string.'))
return
}
// continue if options are valid
const _successCallback = () => {
successCallback(SelligentHelpers.SUCCESS)
}
RNSelligent.setInAppMessageAsSeen(messageId, _successCallback, errorCallback)
return
},
/**
* Execute action on button
*
* @param {function} successCallback Callback function on success.
* @param {function} errorCallback Callback function on error.
* @param {string} buttonId Button id to identify the message.
* @param {string} messageId Message id to identify the message.
*/
executeButtonAction: function (successCallback, errorCallback, buttonId, messageId) {
if (!SelligentHelpers.typeMatches(buttonId, 'string')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected buttonId to be a string.'))
return
}
if (!SelligentHelpers.typeMatches(messageId, 'string')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected messageId to be a string.'))
return
}
const _successCallback = () => {
successCallback(SelligentHelpers.SUCCESS)
}
RNSelligent.executeButtonAction(buttonId, messageId, _successCallback, errorCallback)
return
},
// Location
/**
* Enable/disable geolocation.
*
* @param {function} successCallback Callback function on success.
* @param {function} errorCallback Callback function on error.
* @param {boolean} enabled Boolean to enable or disable geolocation.
*/
enableGeolocation: function (successCallback, errorCallback, enabled) {
// check if required options are valid
if (!SelligentHelpers.typeMatches(enabled, 'boolean')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected a boolean.'))
return
}
// continue if options are valid
successCallback(SelligentHelpers.SUCCESS)
RNSelligent.enableGeolocation(enabled)
return
},
/**
* Check if geolocation is enabled or disabled.
*
* @param {function} successCallback Callback function on success.
*/
isGeolocationEnabled: function (successCallback) {
RNSelligent.isGeolocationEnabled(successCallback)
return
},
// Event
/**
* Send event.
*
* @param {function} successCallback Callback function on success.
* @param {function} errorCallback Callback function on error.
* @param {object} event Event to send.
*/
sendEvent: function (successCallback, errorCallback, event) {
// check if required options are valid
if (!SelligentHelpers.hasRequiredParameterAndMatchesType(event, 'type', 'number')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected an object with the required key "type".'))
return
}
// check which type is send
// When type is `CUSTOM`
if (event.type === SelligentConstants.EventType.CUSTOM) {
// check if required options are valid
if (!SelligentHelpers.hasRequiredParameterAndMatchesType(event, 'data', 'object')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected an object with the key "data".'))
return
}
// check if required options are valid
if (event.hasOwnProperty('email')) {
console.warn("Email prop is not used with \"custom\" event type and will be ignored.");
}
} else {
if (!SelligentHelpers.hasRequiredParameterAndMatchesType(event, 'email', 'string')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected an object with the key "email".'))
return
}
}
if (!SelligentHelpers.hasOptionalParameterAndMatchesType(event, 'shouldCache', 'boolean')) {
errorCallback(SelligentHelpers.createTypeErrorMessage('shouldCache', event.shouldCache, 'boolean'))
return
}
// continue if options are valid
RNSelligent.sendEvent(event, successCallback, errorCallback)
return
},
// Device Id
/**
* Returns the device id.
*
* @param {function} successCallback Callback function on success.
*/
getDeviceId: function (successCallback) {
RNSelligent.getDeviceId(successCallback)
return
},
// Remote Notifications
/**
* Enable/disable notification.
*
* @param {function} successCallback Callback function on success.
* @param {function} errorCallback Callback function on error.
* @param {boolean} enabled Boolean to enable or disable notifications.
*/
enableNotifications: function (successCallback, errorCallback, enabled) {
// check if required options are valid
if (!SelligentHelpers.typeMatches(enabled, 'boolean')) {
errorCallback(SelligentHelpers.wrongArgumentError('Expected a boolean.'))
return
}
// continue if options are valid
successCallback(SelligentHelpers.SUCCESS)
RNSelligent.enableNotifications(enabled)
return
},
/**
* Display the last received remote push notification
*
* @param {function} successCallback Callback function on success.
*/
displayLastReceivedRemotePushNotification: function (successCallback) {
successCallback(SelligentHelpers.SUCCESS)
RNSelligent.displayLastReceivedRemotePushNotification()
return
},
/**
* Get last remote push notification
*
* @param {function} successCallback Callback function on success.
*/
getLastRemotePushNotification: function (successCallback) {
RNSelligent.getLastRemotePushNotification(successCallback)
return
}
},
{ ...platformSpecificMethods }
)