forked from ladjs/react-native-phone-verification
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ios.js
336 lines (272 loc) · 7.56 KB
/
index.ios.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/**
* Sample React Native App
* https://github.com/facebook/react-native
* @flow
*/
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
TextInput,
TouchableOpacity,
View,
Platform,
Alert
} from 'react-native';
import Frisbee from 'frisbee';
import Spinner from 'react-native-loading-spinner-overlay';
import Form from 'react-native-form';
import CountryPicker from 'react-native-country-picker-modal';
const api = new Frisbee({
baseURI: 'http://localhost:3000',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
}
});
const MAX_LENGTH_CODE = 6;
const MAX_LENGTH_NUMBER = 20;
// if you want to customize the country picker
const countryPickerCustomStyles = {};
// your brand's theme primary color
const brandColor = '#744BAC';
const styles = StyleSheet.create({
countryPicker: {
alignItems: 'center',
justifyContent: 'center'
},
container: {
flex: 1
},
header: {
textAlign: 'center',
marginTop: 60,
fontSize: 22,
margin: 20,
color: '#4A4A4A',
},
form: {
margin: 20
},
textInput: {
padding: 0,
margin: 0,
flex: 1,
fontSize: 20,
color: brandColor
},
button: {
marginTop: 20,
height: 50,
backgroundColor: brandColor,
alignItems: 'center',
justifyContent: 'center',
borderRadius: 5,
},
buttonText: {
color: '#fff',
fontFamily: 'Helvetica',
fontSize: 16,
fontWeight: 'bold'
},
wrongNumberText: {
margin: 10,
fontSize: 14,
textAlign: 'center'
},
disclaimerText: {
marginTop: 30,
fontSize: 12,
color: 'grey'
},
callingCodeView: {
alignItems: 'center',
justifyContent: 'center'
},
callingCodeText: {
fontSize: 20,
color: brandColor,
fontFamily: 'Helvetica',
fontWeight: 'bold',
paddingRight: 10
}
});
export default class example extends Component {
constructor(props) {
super(props);
this.state = {
enterCode: false,
spinner: false,
country: {
cca2: 'US',
callingCode: '1'
}
};
}
_getCode = () => {
this.setState({ spinner: true });
setTimeout(async () => {
try {
const res = await api.post('/v1/verifications', {
body: {
...this.refs.form.getValues(),
...this.state.country
}
});
if (res.err) throw res.err;
this.setState({
spinner: false,
enterCode: true,
verification: res.body
});
this.refs.form.refs.textInput.setNativeProps({ text: '' });
setTimeout(() => {
Alert.alert('Sent!', "We've sent you a verification code", [{
text: 'OK',
onPress: () => this.refs.form.refs.textInput.focus()
}]);
}, 100);
} catch (err) {
// <https://github.com/niftylettuce/react-native-loading-spinner-overlay/issues/30#issuecomment-276845098>
this.setState({ spinner: false });
setTimeout(() => {
Alert.alert('Oops!', err.message);
}, 100);
}
}, 100);
}
_verifyCode = () => {
this.setState({ spinner: true });
setTimeout(async () => {
try {
const res = await api.put('/v1/verifications', {
body: {
...this.refs.form.getValues(),
...this.state.country
}
});
if (res.err) throw res.err;
this.refs.form.refs.textInput.blur();
// <https://github.com/niftylettuce/react-native-loading-spinner-overlay/issues/30#issuecomment-276845098>
this.setState({ spinner: false });
setTimeout(() => {
Alert.alert('Success!', 'You have successfully verified your phone number');
}, 100);
} catch (err) {
// <https://github.com/niftylettuce/react-native-loading-spinner-overlay/issues/30#issuecomment-276845098>
this.setState({ spinner: false });
setTimeout(() => {
Alert.alert('Oops!', err.message);
}, 100);
}
}, 100);
}
_onChangeText = (val) => {
if (!this.state.enterCode) return;
if (val.length === MAX_LENGTH_CODE)
this._verifyCode();
}
_tryAgain = () => {
this.refs.form.refs.textInput.setNativeProps({ text: '' })
this.refs.form.refs.textInput.focus();
this.setState({ enterCode: false });
}
_getSubmitAction = () => {
this.state.enterCode ? this._verifyCode() : this._getCode();
}
_changeCountry = (country) => {
this.setState({ country });
this.refs.form.refs.textInput.focus();
}
_renderFooter = () => {
if (this.state.enterCode)
return (
<View>
<Text style={styles.wrongNumberText} onPress={this._tryAgain}>
Enter the wrong number or need a new code?
</Text>
</View>
);
return (
<View>
<Text style={styles.disclaimerText}>By tapping "Send confirmation code" above, we will send you an SMS to confirm your phone number. Message & data rates may apply.</Text>
</View>
);
}
_renderCountryPicker = () => {
if (this.state.enterCode)
return (
<View />
);
return (
<CountryPicker
ref={'countryPicker'}
closeable
style={styles.countryPicker}
onChange={this._changeCountry}
cca2={this.state.country.cca2}
styles={countryPickerCustomStyles}
translation='eng'/>
);
}
_renderCallingCode = () => {
if (this.state.enterCode)
return (
<View />
);
return (
<View style={styles.callingCodeView}>
<Text style={styles.callingCodeText}>+{this.state.country.callingCode}</Text>
</View>
);
}
render() {
let headerText = `What's your ${this.state.enterCode ? 'verification code' : 'phone number'}?`
let buttonText = this.state.enterCode ? 'Verify confirmation code' : 'Send confirmation code';
let textStyle = this.state.enterCode ? {
height: 50,
textAlign: 'center',
fontSize: 40,
fontWeight: 'bold',
fontFamily: 'Courier'
} : {};
return (
<View style={styles.container}>
<Text style={styles.header}>{headerText}</Text>
<Form ref={'form'} style={styles.form}>
<View style={{ flexDirection: 'row' }}>
{this._renderCountryPicker()}
{this._renderCallingCode()}
<TextInput
ref={'textInput'}
name={this.state.enterCode ? 'code' : 'phoneNumber' }
type={'TextInput'}
underlineColorAndroid={'transparent'}
autoCapitalize={'none'}
autoCorrect={false}
onChangeText={this._onChangeText}
placeholder={this.state.enterCode ? '_ _ _ _ _ _' : 'Phone Number'}
keyboardType={Platform.OS === 'ios' ? 'number-pad' : 'numeric'}
style={[ styles.textInput, textStyle ]}
returnKeyType='go'
autoFocus
placeholderTextColor={brandColor}
selectionColor={brandColor}
maxLength={this.state.enterCode ? 6 : 20}
onSubmitEditing={this._getSubmitAction} />
</View>
<TouchableOpacity style={styles.button} onPress={this._getSubmitAction}>
<Text style={styles.buttonText}>{ buttonText }</Text>
</TouchableOpacity>
{this._renderFooter()}
</Form>
<Spinner
visible={this.state.spinner}
textContent={'One moment...'}
textStyle={{ color: '#fff' }} />
</View>
);
}
}
AppRegistry.registerComponent('example', () => example);