forked from davebeehively/react-native-communications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAKCommunications.js
181 lines (146 loc) · 4.3 KB
/
AKCommunications.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
'use strict';
import {
Linking,
Platform,
} from 'react-native';
export const phonecall = function(phoneNumber, prompt) {
if(arguments.length !== 2) {
console.log('you must supply exactly 2 arguments');
return;
}
if(!isCorrectType('String', phoneNumber)) {
console.log('the phone number must be provided as a String value');
return;
}
if(!isCorrectType('Boolean', prompt)) {
console.log('the prompt parameter must be a Boolean');
return;
}
let url;
if(Platform.OS !== 'android') {
url = prompt ? 'telprompt:' : 'tel:';
}
else {
url = 'tel:';
}
url += phoneNumber;
LaunchURL(url);
}
export const email = function(to, cc, bcc, subject, body) {
let url = 'mailto:';
let argLength = arguments.length;
switch(argLength) {
case 0:
LaunchURL(url);
return;
case 5:
break;
default:
console.log('you must supply either 0 or 5 arguments. You supplied ' + argLength);
return;
}
// we use this Boolean to keep track of when we add a new parameter to the querystring
// it helps us know when we need to add & to separate parameters
let valueAdded = false;
if(isCorrectType('Array', arguments[0])) {
let validAddresses = getValidArgumentsFromArray(arguments[0], 'String');
if(validAddresses.length > 0) {
url += encodeURIComponent(validAddresses.join(','));
}
}
url += '?';
if(isCorrectType('Array', arguments[1])) {
let validAddresses = getValidArgumentsFromArray(arguments[1], 'String');
if(validAddresses.length > 0) {
valueAdded = true;
url += 'cc=' + encodeURIComponent(validAddresses.join(','));
}
}
if(isCorrectType('Array', arguments[2])) {
if(valueAdded) {
url += '&';
}
let validAddresses = getValidArgumentsFromArray(arguments[2], 'String');
if(validAddresses.length > 0) {
valueAdded = true;
url += 'bcc=' + encodeURIComponent(validAddresses.join(','));
}
}
if(isCorrectType('String', arguments[3])) {
if(valueAdded) {
url += '&';
}
valueAdded = true;
url += 'subject=' + encodeURIComponent(arguments[3]);
}
if(isCorrectType('String', arguments[4])) {
if(valueAdded) {
url += '&';
}
url += 'body=' + encodeURIComponent(arguments[4]);
}
LaunchURL(url);
}
export const text = function(phoneNumber = null, body = null) {
if(arguments.length > 2) {
console.log('you supplied too many arguments. You can either supply 0 or 1 or 2');
return;
}
let url = 'sms:';
if(phoneNumber) {
if(isCorrectType('String', phoneNumber)) {
url += phoneNumber;
} else {
console.log('the phone number should be provided as a string. It was provided as '
+ Object.prototype.toString.call(phoneNumber).slice(8, -1)
+ ',ignoring the value provided');
}
}
if(body) {
if(isCorrectType('String', body)) {
// for some strange reason android seems to have issues with ampersands in the body unless it is encoded twice!
// iOS only needs encoding once
if(Platform.OS === 'android') body = encodeURIComponent(body);
url += Platform.OS === 'ios' ? `&body=${encodeURIComponent(body)}` : `?body=${encodeURIComponent(body)}`;
} else {
console.log('the body should be provided as a string. It was provided as '
+ Object.prototype.toString.call(body).slice(8, -1)
+ ',ignoring the value provided');
}
}
LaunchURL(url);
}
export const web = function(address) {
if(!address) {
console.log('Missing address argument');
return;
}
if(!isCorrectType('String', address)) {
console.log('address was not provided as a string, it was provided as '
+ Object.prototype.toString.call(address).slice(8, -1));
return;
}
LaunchURL(address);
}
const LaunchURL = function(url) {
Linking.canOpenURL(url).then(supported => {
if(!supported) {
console.log('Can\'t handle url: ' + url);
} else {
return Linking.openURL(url);
}
}).catch(err => console.error('An unexpected error happened', err));
};
const getValidArgumentsFromArray = function(array, type) {
var validValues = [];
array.forEach(function(value) {
if(isCorrectType(type, value)) {
validValues.push(value);
}
});
return validValues;
};
const isCorrectType = function(expected, actual) {
return Object.prototype.toString.call(actual).slice(8, -1) === expected;
};
export default { phonecall, text, email, web }