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
|
import React from 'react';
import {RouteProp} from '@react-navigation/native';
import {StackNavigationProp} from '@react-navigation/stack';
import {
View,
Text,
StyleSheet,
StatusBar,
Platform,
TouchableOpacity,
} from 'react-native';
import {OnboardingStackParams} from '../../routes';
import {RegistrationWizard, Background} from '../../components';
import {BackgroundGradientType} from '../../types';
type CheckpointRouteProp = RouteProp<OnboardingStackParams, 'Checkpoint'>;
type CheckpointNavigationProp = StackNavigationProp<
OnboardingStackParams,
'Checkpoint'
>;
interface CheckpointProps {
route: CheckpointRouteProp;
navigation: CheckpointNavigationProp;
}
/**
* Checkpoint to ask user if profile setup should be done
* @param navigation react-navigation navigation object
*/
const Checkpoint: React.FC<CheckpointProps> = ({route, navigation}) => {
const {userId, username} = route.params;
const handleSkip = () => {
navigation.navigate('SocialMedia', {
userId: userId,
username: username,
});
};
const handleProceed = () => {
navigation.navigate('ProfileOnboarding', {
userId: userId,
username: username,
});
};
return (
<Background
style={styles.container}
gradientType={BackgroundGradientType.Light}>
<StatusBar barStyle="light-content" />
<RegistrationWizard style={styles.wizard} step="six" />
<View style={styles.textContainer}>
<Text style={styles.header}>You are registered!</Text>
<Text style={styles.subtext}>
We're almost there. Would you like to setup your profile now?
</Text>
<View style={styles.buttonContainer}>
<TouchableOpacity onPress={handleSkip} style={styles.skipButton}>
<Text style={styles.skipButtonLabel}>Do it later</Text>
</TouchableOpacity>
<TouchableOpacity
onPress={handleProceed}
style={styles.proceedButton}>
<Text style={styles.proceedButtonLabel}>Let's do it!</Text>
</TouchableOpacity>
</View>
</View>
</Background>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
},
textContainer: {
marginTop: '65%',
},
buttonContainer: {
flexDirection: 'row',
justifyContent: 'space-evenly',
},
wizard: {
...Platform.select({
ios: {
top: 50,
},
android: {
bottom: 40,
},
}),
},
header: {
color: '#fff',
fontSize: 22,
fontWeight: '600',
textAlign: 'center',
marginBottom: '4%',
marginHorizontal: '10%',
},
subtext: {
color: '#fff',
fontSize: 14,
fontWeight: '600',
textAlign: 'center',
marginBottom: '16%',
marginHorizontal: '10%',
},
proceedButton: {
backgroundColor: '#8F01FF',
justifyContent: 'center',
alignItems: 'center',
width: 150,
height: 40,
borderRadius: 5,
marginTop: '5%',
},
proceedButtonLabel: {
fontSize: 16,
fontWeight: '500',
color: '#fff',
},
skipButton: {
justifyContent: 'center',
alignItems: 'center',
width: 150,
height: 40,
borderRadius: 5,
borderWidth: 1,
borderColor: '#ddd',
marginTop: '5%',
},
skipButtonLabel: {
fontSize: 16,
fontWeight: '500',
color: '#ddd',
},
});
export default Checkpoint;
|