-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
354 lines (336 loc) · 8.21 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
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
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
import React from 'react';
import {
StyleSheet,
Text,
View,
Image,
Button,
TouchableWithoutFeedback,
WebView,
KeyboardAvoidingView
} from 'react-native';
import { FormLabel, FormInput } from 'react-native-elements';
import { StackNavigator } from 'react-navigation';
import axios from 'axios';
import {
KeyAwareScrollView,
KeyboardAwareScrollView
} from 'react-native-keyboard-aware-scroll-view';
import PasswordInputText from 'react-native-hide-show-password-input';
//GOALS:
//firebase for authentication and db
//preselected categories
//ability to set timer
class SignIn extends React.Component {
constructor() {
super();
this.state = {
email: '',
password: '',
user: {}
};
}
handleLogin(evt) {
evt.preventDefault();
const email = this.state.email;
const password = this.state.password;
axios
.post('http://192.168.1.156:8080/auth/login', { email, password })
.then(res => {
const user = res.data;
this.setState({ user }, () => {
this.props.navigation.navigate('Page', { user: this.state.user });
});
})
.catch(error => console.log(error));
}
handleSignup(event) {
event.preventDefault();
const email = this.state.email;
const password = this.state.password;
axios
.post('http://192.168.1.156:8080/auth/signup', { email, password })
.then(res => {
const user = res.data;
this.setState({ user }, () => {
this.props.navigation.navigate('CategoryPage', {
user: this.state.user
});
});
})
.catch(error => console.log(error));
}
render() {
let pic = {
uri:
'http://etcalendar.its.txstate.edu/image/6722/take%20a%20study%20break.jpg'
};
return (
<KeyboardAvoidingView
style={styles.container}
behavior="position"
enabled
>
<View style={styles.logo}>
<Image source={pic} style={styles.image} />
</View>
<View style={styles.form}>
<FormLabel>Email</FormLabel>
<FormInput
onChangeText={value =>
this.setState({ email: value.toLowerCase() })
}
/>
<View style={styles.password}>
<PasswordInputText
value={this.state.password}
onChangeText={password => this.setState({ password })}
/>
</View>
<View style={styles.loginSignupBtns}>
<Button
onPress={this.handleLogin.bind(this)}
title="log in"
color="darkgrey"
accessibilityLabel="login"
/>
<Button
onPress={this.handleSignup.bind(this)}
title="sign up"
color="darkgrey"
accessibilityLabel="signup"
/>
</View>
</View>
</KeyboardAvoidingView>
);
}
}
//USER PAGE
class UserPage extends React.Component {
constructor(props) {
super(props);
const { params } = props.navigation.state;
this.state = {
user: params.user || {},
url: '',
catArr: params.user.categories || []
};
this.nextSite = this.nextSite.bind(this);
}
componentDidMount() {
this.nextSite();
}
nextSite() {
catArr = this.state.catArr;
let category = catArr[Math.floor(Math.random() * catArr.length)];
let index = Math.floor(Math.random() * 100);
console.log('category is..', category);
fetch(
`https://www.googleapis.com/customsearch/v1?key=AIzaSyCpNig0xgMK0kBUvS063nd8EPvc4NTEJ9o&cx=011206717166158345436:d6qgvrrgtnq&q=${category}&num=1&start=${index}`
)
.then(res => res.json())
.then(site => {
let url = site.items[0].link;
this.setState({ url });
})
.catch(err => console.log(err));
}
render() {
return (
<View style={styles.container}>
<WebView source={{ uri: this.state.url }} style={styles.webview} />
<Button onPress={this.nextSite} title="Next" />
</View>
);
}
}
//ADD CATEGORIES PAGE
class CategorySelectPage extends React.Component {
constructor(props) {
super(props);
const { params } = props.navigation.state;
this.state = {
catOne: '',
catTwo: '',
catThree: '',
user: params.user || {}
};
}
handleSubmit(event) {
event.preventDefault();
const catsToAdd = [];
if (this.state.catOne !== '') catsToAdd.push(this.state.catOne);
if (this.state.catTwo !== '') catsToAdd.push(this.state.catTwo);
if (this.state.catThree !== '') catsToAdd.push(this.state.catThree);
const userId = this.state.user.id;
axios
.post(`http://192.168.1.156:8080/api/users/${userId}/categories`, {
catsToAdd
})
.then(res => {
const user = res.data;
this.setState({ user }, () => {
this.props.navigation.navigate('Page', {
user: this.state.user
});
});
})
.catch(error => console.log(error));
}
render() {
return (
<KeyboardAwareScrollView
style={styles.categories}
resetScrollToCoords={{ x: 0, y: 0 }}
contentContainerStyle={styles.container}
scrollEnabled={false}
>
<View style={styles.textHeader}>
<Text style={styles.categoriestText}>add some things you like!</Text>
</View>
<View style={styles.form}>
<FormLabel>1.</FormLabel>
<FormInput
onChangeText={value =>
this.setState({ catOne: value.toLowerCase() })
}
/>
<FormLabel>2.</FormLabel>
<FormInput
onChangeText={value =>
this.setState({ catTwo: value.toLowerCase() })
}
/>
<FormLabel>3.</FormLabel>
<FormInput
onChangeText={value =>
this.setState({ catThree: value.toLowerCase() })
}
/>
<View style={styles.catSubmitBtn}>
<Button
onPress={this.handleSubmit.bind(this)}
title="onwards >"
color="darkorange"
accessibilityLabel="submit"
/>
</View>
</View>
</KeyboardAwareScrollView>
);
}
}
const RootStack = StackNavigator(
{
Home: {
screen: SignIn
},
Page: {
screen: UserPage
},
CategoryPage: {
screen: CategorySelectPage
}
},
{
initialRouteName: 'Home'
}
);
export default class App extends React.Component {
constructor() {
super();
this.state = {
rendering: true
};
}
//UNCOMMENT BELOW FOR TIMER FUNCTIONALITY
// componentDidMount() {
// setTimeout(() => {
// this.setState({ rendering: false })
// }, 10000)
// }
render() {
return this.state.rendering ? (
<RootStack />
) : (
<View style={styles.kickedOut}>
<Image
source={{
uri:
'https://pbs.twimg.com/profile_images/633129398699360256/0tQX81_2_400x400.png'
}}
style={styles.image}
/>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center'
//justifyContent: 'center'
},
logo: {
alignItems: 'center',
paddingTop: 40,
paddingBottom: 60
},
buttons: {},
kickedOut: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center'
},
kickedOutText: {
fontSize: 30,
padding: 10,
color: 'darkgrey'
},
form: {
width: 300
},
loginSignupBtns: {
paddingTop: 20,
flexDirection: 'row',
alignItems: 'center',
justifyContent: 'space-around'
},
textHeader: {
flexDirection: 'row',
justifyContent: 'center',
alignItems: 'center',
marginTop: 20,
marginBottom: 20,
paddingTop: 20,
paddingBottom: 20,
backgroundColor: 'darkorange',
borderRadius: 30,
width: 300
},
catSubmitBtn: {
paddingTop: 50
},
image: {
width: 262,
height: 150
},
password: {
margin: 20
},
webview: {
marginTop: 20,
width: 300,
height: 300
},
categories: {
backgroundColor: 'bisque'
},
categoriestText: {
color: 'white',
fontSize: 20
}
});