-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.android.js
401 lines (382 loc) · 12.4 KB
/
index.android.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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/**
* Sample React Native App
* https://github.com/facebook/react-native
*/
'use strict';
import React, {
AppRegistry,
Component,
StyleSheet,
Text,
TextInput,
View,
ScrollView,
Navigator,
BackAndroid,
TouchableOpacity
} from 'react-native';
import { connect, Provider } from 'react-redux';
import { Map, List } from 'immutable';
import Icon from 'react-native-vector-icons/FontAwesome';
import IonIcon from 'react-native-vector-icons/Ionicons';
import Button from 'react-native-button';
import watch from 'redux-watch';
import store from './app/createStore';
import { addBeacon } from './app/actions/beacons';
import { addLight, fetchLights, toggleLight } from './app/actions/light';
import { addHeater, fetchHeaters } from './app/actions/heater';
import { addDoor, fetchDoors } from './app/actions/door';
import { addSchedule, fetchSchedule } from './app/actions/schedules';
import { setField } from './app/actions/addForm';
import { api_url } from './app/constants/config';
import nearestBeacon from './app/selectors/nearestBeacon';
import cordova from 'react-native-cordova-plugin';
import DeviceInfo from 'react-native-device-info';
/*
* This application is written using the React/Redux combo.
* React is used as the V part of MVC. Redux is the C and M.
* Redux is split in "actions" and "reducers". The idea is that actions
* are sent to the redux store, which will update its storage in a reducer.
* You can think of it as an infinite List on which we apply a reduce algorithm.
*
* Each time the Redux store is updated, a new render will be called thanks to
* the "connect" function.
*/
function Schedule(props) {
return (<View>
<Text>At : {props.at}</Text>
<Text>To : {props.to}</Text>
<Text>Lights: {props.lights}</Text>
</View>);
}
class AddSchedule extends Component {
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => store.dispatch(addSchedule(
store.getState().get("addForm").get("at"),
store.getState().get("addForm").get("to"),
store.getState().get("addForm").get("lights").split(","))) && navigator.pop()}
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Done
</Text>
</TouchableOpacity>);
}
render() {
return (<View>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("at", text))}
value={this.props.addForm.get("at")}
/>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("to", text))}
value={this.props.addForm.get("to")}
/>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("lights", text))}
value={this.props.addForm.get("lights")}
/>
</View>);
}
}
AddSchedule = connect(state => ({ "addForm": state.get("addForm", Map()) }))(AddSchedule);
// TODO: Convert state to redux
class Schedules extends Component {
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => navigator.push({ title: 'Add Schedule', component: AddSchedule }) }
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Add
</Text>
</TouchableOpacity>);
}
componentDidMount() {
this.props.dispatch(fetchSchedule());
}
render() {
const schedules = this.props.schedules.map(function(v) {
return (<Schedule key={v.get("id")} name={v.get("name")} at={v.get("at")} to={v.get("to")} lights={v.get("lights")} />);
});
return (<ScrollView>
{schedules}
</ScrollView>);
}
}
Schedules = connect(state => ({ "schedules": state.get("schedules", List()) }))(Schedules);
function Light(props) {
return (<View style={{flexDirection: "row"}}>
<IonIcon name={props.state ? "ios-lightbulb" : "ios-lightbulb-outline"} size={70} />
<Text style={{alignSelf: "center", marginLeft: 60}}>ID {props.id}</Text>
<Text style={{alignSelf: "center", marginLeft: 60}}>GPIO {props.gpioPin}</Text>
</View>);
}
class ManualLight extends Component {
componentDidMount() {
this.props.dispatch(fetchLights());
}
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => navigator.push({ title: 'Add Light', component: AddLight }) }
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Add
</Text>
</TouchableOpacity>);
}
render() {
var lights = this.props.lights.valueSeq().map((v) => {
return (<TouchableOpacity
key={v.get("id")}
onPress={() => this.props.dispatch(toggleLight(v.get("id"), !v.get("state")))}>
<Light id={v.get("id")} gpioPin={v.get("gpio_pin")} state={v.get("state")} />
</TouchableOpacity>);
});
return (<ScrollView>
{lights}
</ScrollView>);
}
}
ManualLight = connect(state => ({ "lights": state.get("lights", List()) }))(ManualLight);
class AddLight extends Component {
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => store.dispatch(addLight(store.getState().get("addForm").get("gpio_pin"))) && navigator.pop()}
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Done
</Text>
</TouchableOpacity>);
}
render() {
return (<View>
<Text>GPIO :</Text>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("gpio_pin", text))}
value={this.props.addForm.get("gpio_pin")}
/>
<Text>Beacon ID :</Text>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("beacon_id", text))}
value={this.props.addForm.get("beacon_id")}
/>
</View>);
}
}
AddLight = connect(state => ({ "addForm": state.get("addForm", Map()) }))(AddLight);
function Door(props) {
return (<View>
<Icon name={props.state ? "lock" : "unlock"} size={70} />
<Text>{props.name}</Text>
</View>);
}
class ManualDoor extends Component {
componentDidMount() {
this.props.dispatch(fetchDoors());
}
static renderRightBtn() {
return (<TouchableOpacity
onPress={() => store.dispatch(addDoor())}
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Add
</Text>
</TouchableOpacity>);
}
render() {
var doors = this.props.doors.map(function(v, i) {
return (<Door key={i} name={v.name} state={v.state} />);
});
return (<View>
{doors}
</View>);
}
}
ManualDoor = connect(state => ({ "doors": state.get("doors", List()) }))(ManualDoor);
class AddHeater extends Component {
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => store.dispatch(addHeater(store.getState().get("addForm").get("gpio_pin"))) && navigator.pop()}
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Done
</Text>
</TouchableOpacity>);
}
render() {
return (<View>
<TextInput
onChangeText={(text) => this.props.dispatch(setField("gpio_pin", text))}
value={this.props.addForm.get("gpio_pin")}
/>
</View>);
}
}
AddHeater = connect(state => ({ "addForm": state.get("addForm", Map()) }))(AddHeater);
function Heater(props) {
return (<View style={{flexDirection: "row"}}>
<Icon name={"server"} color={props.state ? "red" : "blue"} size={70} />
<Text style={{alignSelf: "center", marginLeft: 60}}>GPIO {props.gpioPin}</Text>
</View>);
}
class ManualHeater extends Component {
componentDidMount() {
this.props.dispatch(fetchHeaters());
}
static renderRightBtn(_, navigator) {
return (<TouchableOpacity
onPress={() => navigator.push({ title: 'Add Heater', component: AddHeater }) }
style={styles.navBarRightButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
Add
</Text>
</TouchableOpacity>);
}
render() {
var heaters = this.props.heaters.valueSeq().map((v) => {
return (<TouchableOpacity
key={v.get("id")}
onPress={() => this.props.dispatch(toggleHeater(v.get("id"), !v.get("state")))}>
<Heater gpioPin={v.get("gpio_pin")} state={v.get("state")} />
</TouchableOpacity>);
});
return (<ScrollView>
{heaters}
</ScrollView>);
}
}
ManualHeater = connect(state => ({ "heaters": state.get("heaters", List()) }))(ManualHeater);
// The Home page. Contains links to the other pages.
class Home extends Component {
schedulesOnClick() {
this.props.navigator.push({
title: 'Schedules',
component: Schedules
});
}
manualLightOnClick() {
this.props.navigator.push({
title: 'Manual Light',
component: ManualLight
});
}
manualHeaterOnClick() {
this.props.navigator.push({
title: 'Manual Heater',
component: ManualHeater
});
}
manualDoorOnClick() {
this.props.navigator.push({
title: 'Manual Door',
component: ManualDoor
});
}
render() {
return (<View>
<Icon.Button name="calendar" onPress={this.schedulesOnClick.bind(this)} size={70}>Schedules</Icon.Button>
<Icon.Button name="lightbulb-o" onPress={this.manualLightOnClick.bind(this)} size={70}>Manual Light</Icon.Button>
<Icon.Button name="server" onPress={this.manualHeaterOnClick.bind(this)} size={70}>Manual Heater</Icon.Button>
<Icon.Button name="lock" onPress={this.manualDoorOnClick.bind(this)} size={70}>Manual Door</Icon.Button>
</View>);
}
}
// The configuration for the top navigation bar.
const NavigationBarRouteMapper = {
LeftButton(route, navigator, index, navState) {
if (index <= 0)
return null;
const previousRoute = navState.routeStack[index - 1];
return (
<TouchableOpacity
onPress={navigator.pop}
style={styles.navBarLeftButton}>
<Text style={[styles.navBarText, styles.navBarButtonText]}>
{previousRoute.title}
</Text>
</TouchableOpacity>
);
},
RightButton(route, navigator, index, navState) {
if (route.component && route.component.renderRightBtn)
return route.component.renderRightBtn(route, navigator, index, navState);
},
Title(route, navigator, index, navState) {
return (<Text style={[styles.navBarText, styles.navBarTitleText]}>{route.title}</Text>);
}
};
// The top-level component. Wraps Provider
class domotic extends Component {
render() {
// The provider allows access to the Redux store
// thanks the the connect() function.
return (
<Provider store={store}>
<Navigator
initialRoute={{ title: 'Home', component: Home }}
renderScene={(route, navigator) => {
if (route.component)
return (<View style={styles.scene}>
{React.createElement(route.component, { navigator })}
</View>);
else
return <Text style={styles.scene}>No such route</Text>;
}}
navigationBar={<Navigator.NavigationBar
routeMapper={NavigationBarRouteMapper}
style={styles.navBar}
/>}
/>
</Provider>
);
}
}
const styles = StyleSheet.create({
navBar: {
backgroundColor: 'white'
},
navBarLeftButton: {
paddingLeft: 10
},
navBarText: {
fontSize: 16,
marginVertical: 10,
},
navBarButtonText: {
color: require('cssVar')('fbui-accent-blue'),
},
navBarTitleText: {
color: require('cssVar')('fbui-bluegray-60'),
fontWeight: '500',
marginVertical: 9
},
scene: {
flex: 1,
paddingTop: 60,
backgroundColor: '#EAEAEA'
}
});
cordova.evothings.eddystone.startScan(function(beacon) {
// Update beacon data.
beacon.timeStamp = Date.now();
store.dispatch(addBeacon(beacon));
}, function(error) {
console.error('Eddystone scan error: ', error);
});
const watchNearestBeacon = watch(() => {
if (nearestBeacon(store.getState()) != null)
return nearestBeacon(store.getState()).get("address");
else
return null;
});
store.subscribe(watchNearestBeacon(newVal => {
const form = new FormData();
form.append('beacon', newVal);
form.append('device', DeviceInfo.getUniqueID());
fetch(`${api_url}/nearestBeacon`, {
method: 'POST',
body: form
});
}));
// domotic is the root Component that will be shown
AppRegistry.registerComponent('domotic', () => domotic);