-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ios.js
More file actions
255 lines (223 loc) · 7.91 KB
/
index.ios.js
File metadata and controls
255 lines (223 loc) · 7.91 KB
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
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
Image
} from 'react-native';
import { NativeRouter, Route, Link, Redirect } from 'react-router-native'
import AllProfiles from './components/AllProfiles'
import NewProfile from './components/NewProfile'
import EditProfile from './components/EditProfile'
import ReactCalendar from './components/Calendar'
import LogDose from './components/LogDose'
import About from './components/About'
import styles from './styles'
import SignIn from './components/SignIn'
import UserModel from './models/UserModel'
import SignOut from './components/SignOut'
import STORE from './store'
import Registration from './components/Registration'
import NewLogDose from './components/NewLogDose'
import Home from './components/Home'
import ACTIONS from './actions/Actions'
var HalfLifeMobile = React.createClass({
getInitialState: function(){
return {
currentUser: null,
currentProfile: null,
profiles: [],
redirectTo: false
}
},
componentWillMount: function(){
STORE.on('dataUpdated', () => {
this.setState({
currentUser: STORE.data.currentUser,
currentProfile: STORE.data.currentProfile,
profiles: STORE.data.profiles,
redirectTo: STORE.data.redirectTo
})
})
},
render: function(){
if (!!!this.state.currentUser){
return this.renderSignInPage()
}
if (!!!this.state.currentProfile){
return this.renderSelectProfile()
}
return this.renderSignedIn()
},
renderSignInPage: function(){
return (
<NativeRouter>
<View style={styles.routes}>
<Route exact path="/" render={() => {
return <SignIn
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/sign-up" render={() => {
return <Registration
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/signout" render={() => {
return <Redirect to={{
pathname: "/"
}}/>
}}/>
</View>
</NativeRouter>
)
},
renderSelectProfile: function(){
return (
<NativeRouter>
<View style={styles.mainContainer}>
<View style={styles.topNav}>
</View>
<View style={styles.routes}>
<Route exact path="/" render={() => {
return <AllProfiles
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/profiles/new" render={() => {
return <NewProfile
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
</View>
<View>
</View>
</View>
</NativeRouter>
)
},
renderRedirect: function(){
ACTIONS.clearRedirection()
return (
<Redirect to={{
pathname: "/"
}}/>
)
},
renderSignedIn: function() {
var whatToRender = null
if (this.state.redirectTo !== false) {
whatToRender = this.renderRedirect()
} else {
whatToRender = this.renderMainApp()
}
return (
<NativeRouter>
{whatToRender}
</NativeRouter>
)
},
renderMainApp: function() {
return (
<View style={styles.mainContainer}>
<View style={styles.topNav}>
<Link to="/profiles"><Text style={styles.titleText}>{this.state.currentProfile.profileName}</Text></Link>
</View>
<View style={styles.routes}>
<Route exact path="/" render={() => {
return <Home
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/calendar" render={() => {
return <ReactCalendar
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route exact path="/profiles" render={() => {
return <AllProfiles
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route exact path="/profile/edit" render={() => {
return <EditProfile
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/profiles/new" render={() => {
return <NewProfile
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route exact path="/logdose" render={() => {
return <LogDose
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/logdose/new" render={() => {
return <NewLogDose
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/about" render={() => {
return <About
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
<Route path="/signout" render={() => {
return <SignOut
currentProfile={this.state.currentProfile}
profiles={this.state.profiles}
currentUser={this.state.currentUser} />
}}/>
</View>
<View style={styles.nav}>
<Link
to="/profile/edit"
underlayColor='#f0f4f7'
style={styles.navItem}>
<Image source={ require("./images/profile.png")} style={styles.navImage} />
</Link>
<Link
to="/logdose"
underlayColor='#f0f4f7'
style={styles.navItem}>
<Image source={ require("./images/log.png")} style={styles.navImage} />
</Link>
<Link
to="/"
underlayColor='#f0f4f7'
style={styles.navItem}>
<Image source={ require("./images/percent.png")} style={styles.navImagePercent} />
</Link>
<Link
to="/about"
underlayColor='#f0f4f7'
style={styles.navItem}>
<Image source={ require("./images/about.png")} style={styles.navImage} />
</Link>
<Link
to="/signout"
underlayColor='#f0f4f7'
style={styles.navItem}>
<Image source={ require("./images/signout.png")} style={styles.navImage} />
</Link>
</View>
</View>
);
}
})
AppRegistry.registerComponent('halfLifeMobile', () => HalfLifeMobile);