-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathApp.tsx
126 lines (119 loc) · 3.04 KB
/
App.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
import React, {useState} from 'react';
import {SafeAreaView, Text, Button, View, StyleSheet} from 'react-native';
import ElementsExample from './Elements';
import FuturePaymentsExample from './FuturePayments';
import PaymentSheetExample from './PaymentSheet';
import PaymentSheetSubscriptionExample from './PaymentSheetSubscription';
import {API_URL} from './Constants';
type Mode =
| 'PaymentSheet'
| 'FuturePayments'
| 'Elements'
| 'PaymentSheetSubscription'
| null;
const App = () => {
const [key, setKey] = React.useState('');
const [mode, setMode] = useState<Mode>(null);
React.useEffect(() => {
(async () => {
try {
const response = await fetch(`${API_URL}/stripe-key`);
const {publishableKey} = await response.json();
setKey(publishableKey);
} catch (e) {
throw new Error(
'Unable to fetch publishable key. Is your server running?',
);
}
})();
});
switch (mode) {
case 'Elements':
return (
<ElementsExample
publishableKey={key}
goBack={() => {
setMode(null);
}}
/>
);
case 'FuturePayments':
return (
<FuturePaymentsExample
publishableKey={key}
goBack={() => {
setMode(null);
}}
/>
);
case 'PaymentSheet':
return (
<PaymentSheetExample
publishableKey={key}
goBack={() => {
setMode(null);
}}
/>
);
case 'PaymentSheetSubscription':
return (
<PaymentSheetSubscriptionExample
publishableKey={key}
goBack={() => {
setMode(null);
}}
/>
);
default:
return (
<SafeAreaView style={styles.container}>
<Text style={styles.center}>
Welcome to the React Native Video Series example app! Check out some
of the examples below:
</Text>
<View style={styles.buttonsContainer}>
<Button
title="Payment Sheet example"
onPress={() => {
setMode('PaymentSheet');
}}
/>
<Button
title="Payment Sheet Subscription example"
onPress={() => {
setMode('PaymentSheetSubscription');
}}
/>
<Button
title="Future Payments example"
onPress={() => {
setMode('FuturePayments');
}}
/>
<Button
title="Elements example"
onPress={() => {
setMode('Elements');
}}
/>
</View>
</SafeAreaView>
);
}
};
const styles = StyleSheet.create({
container: {
alignSelf: 'center',
flex: 1,
justifyContent: 'space-around',
width: '80%',
},
center: {textAlign: 'center'},
buttonsContainer: {
alignSelf: 'center',
justifyContent: 'space-around',
width: '80%',
height: '50%',
},
});
export default App;