-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
275 lines (252 loc) · 6.63 KB
/
App.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
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
*/
// import React, {Component} from 'react';
// import {Platform, StyleSheet, Text, View} from 'react-native';
// const instructions = Platform.select({
// ios: 'Press Cmd+R to reload,\n' + 'Cmd+D or shake for dev menu',
// android:
// 'Double tap R on your keyboard to reload,\n' +
// 'Shake or press menu button for dev menu',
// });
// type Props = {};
// export default class App extends Component<Props> {
// render() {
// return (
// <View style={styles.container}>
// <Text style={styles.welcome}>Welcome to React Native!</Text>
// <Text style={styles.instructions}>To get started, edit App.js</Text>
// <Text style={styles.instructions}>{instructions}</Text>
// </View>
// );
// }
// }
// const styles = StyleSheet.create({
// container: {
// flex: 1,
// justifyContent: 'center',
// alignItems: 'center',
// backgroundColor: '#F5FCFF',
// },
// welcome: {
// fontSize: 20,
// textAlign: 'center',
// margin: 10,
// },
// instructions: {
// textAlign: 'center',
// color: '#333333',
// marginBottom: 5,
// },
// });
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow
* @lint-ignore-every XPLATJSCOPYRIGHT1
*/
import React, { Component } from "react";
import {
Button,
Text,
ImageBackground,
ActivityIndicator,
StatusBar,
StyleSheet,
View,
Image,
Linking
} from "react-native";
import AsyncStorage from "@react-native-community/async-storage";
import {
createStackNavigator,
createDrawerNavigator,
createSwitchNavigator,
DrawerItems,
createAppContainer
} from "react-navigation";
import SignIn from "./screens/SignIn";
import Main from "./screens/Main";
import Demo from "./screens/Demo";
import FAQ from "./screens/Faq";
import Login from "./screens/Login";
import Details from "./screens/Details";
import Onboarding1 from "./screens/Onboarding1";
import Onboarding2 from "./screens/Onboarding2";
import Onboarding3 from "./screens/Onboarding3";
import { TouchableHighlight } from "react-native-gesture-handler";
import walletGenerator from "react-native-ethereum-wallets";
//global.Buffer = require('buffer').Buffer;
// AuthLoadingScreen checks if a wallet already exists
// - if yes -> redirects to the app main view
// - if no -> redirects to the CreateWallet view
class AuthLoadingScreen extends React.Component {
constructor(props) {
super(props);
this._bootstrapAsync();
}
// Fetch the token from storage then navigate to our appropriate place
_bootstrapAsync = async () => {
// check if a wallet was already created
const walletCreated = await AsyncStorage.getItem("walletcreatedpk");
if (!walletCreated) {
walletGenerator.createPrivateKey().then(privateKey => {
AsyncStorage.setItem("walletcreatedpk", privateKey);
});
}
AsyncStorage.setItem("exchangeparams", "100CHF-" + new Date());
// This will switch to the App screen or Auth screen and this loading
// screen will be unmounted and thrown away.
// this.props.navigation.navigate(walletCreated ? 'App' : 'Auth');
// this.props.navigation.navigate(walletCreated ? 'App' : 'Auth');
this.props.navigation.navigate(walletCreated ? "App" : "App");
// this.props.navigation.navigate(walletCreated ? 'Auth' : 'Auth');
};
// Render any loading content that you like here
render() {
return (
<View>
<ActivityIndicator />
</View>
);
}
}
const CustomDrawerContentComponent = props => (
<View style={{ flex: 2, backgroundColor: "#273040" }}>
<View style={{ flex: 1, paddingTop: 100 }}>
<DrawerItems {...props} />
</View>
<View
style={{
flex: 1,
alignSelf: "center",
justifyContent: "flex-end",
bottom: 30
}}
>
<TouchableHighlight
onPress={() => {
props.navigation.navigate("SignIn");
}}
underlayColor={"#273040"}
>
<Image
source={require("./resources/images/relai_logo.png")}
resizeMode={"contain"}
style={{ width: 150, height: 150 }}
/>
</TouchableHighlight>
</View>
</View>
);
// The Stack for modals
const MainStack = createStackNavigator(
{
Main: {
path: "/",
screen: Main
},
Details: {
path: "/",
screen: Details
}
},
{
headerMode: "none"
}
);
// MainDrawerMenu
const MainDrawerMenu = createDrawerNavigator(
{
// TransactionsHistory : {
// path: '/',
// screen: TxStack,
// navigationOptions: {
// drawerLabel: 'WALLET',
// drawerIcon: ({ tintColor }) => (
// <Image source={require('./resources/images/wallet_icon.png')} resizeMode={"contain"} style={{width:45, height:45}}/>
// ),
// // drawerLabel: 'Settings',
// // drawerIcon: ({ tintColor }) => <Icon name="cog" size={17} />,
// },
// },
Learn: { screen: FAQ },
Simulate: { screen: Demo },
Invest: {
screen: MainStack,
navigationOptions: {
drawerIcon: ({ tintColor }) => (
<Image
source={require("./resources/images/wallet_menu.png")}
resizeMode={"contain"}
style={{ width: 45, height: 45 }}
/>
)
// drawerLabel: 'Settings',
// drawerIcon: ({ tintColor }) => <Icon name="cog" size={17} />,
}
}
},
{
initialRouteName: "Invest",
drawerPosition: "left",
contentComponent: CustomDrawerContentComponent,
contentOptions: {
labelStyle: {
color: "white",
fontWeight: "normal",
fontSize: 20,
alignItems: "center"
},
itemStyle: {
height: 70,
paddingLeft: 10
}
}
}
);
// The Stack for modals
const RootStack = createStackNavigator(
{
MainDrawer: {
screen: MainDrawerMenu
}
},
{
mode: "modal",
headerMode: "none"
}
);
// Stack Navigator for wallet creation process
const AuthStack = createStackNavigator(
{
SignIn: { screen: SignIn },
Login: { screen: Login },
Onboarding1: { screen: Onboarding1 },
Onboarding2: { screen: Onboarding2 },
Onboarding3: { screen: Onboarding3 }
},
{
initialRouteName: "SignIn",
headerMode: "none"
}
);
// const AuthStack = StackNavigator({ SignIn: CreateWallet });
const AppNavigator = createSwitchNavigator(
{
AuthLoading: AuthLoadingScreen,
App: RootStack,
Auth: AuthStack
},
{
initialRouteName: "AuthLoading"
}
);
const AppContainer = createAppContainer(AppNavigator);
export default AppContainer;