-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
86 lines (75 loc) · 1.92 KB
/
main.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
import Exponent from 'exponent';
import _ from 'lodash';
import React from 'react';
import { AppRegistry, StyleSheet, Navigator } from 'react-native';
import InstanceList from './components/InstanceList';
import InstanceForm from './components/InstanceForm';
import {getInstanceList, createInstance, deleteInstance} from './api/syncano';
const SyncanoExample = React.createClass({
getInitialState() {
return {
instances: []
};
},
componentDidMount() {
getInstanceList().then((list) => {
instances = _.map(list, (instance) => {
return { name: instance.name }
})
this.setState({ instances });
})
},
onAddPress() {
this.nav.push({
name: 'instanceform'
})
},
onCancel() {
this.nav.pop();
},
onDelete(name) {
deleteInstance(name)
.then(() => {
const instances = _.filter(this.state.instances, (i) => i.name !== name);
this.setState({instances});
});
},
onAdd(name) {
createInstance(name)
.then((instance) => {
this.setState({ instances: [...this.state.instances, { name: instance.name}]});
});
this.nav.pop();
},
renderScene(route, nav) {
switch(route.name) {
case 'instanceform':
return (
<InstanceForm onAdd={this.onAdd} onCancel={this.onCancel} />
);
break;
default:
return(
<InstanceList
onAddPress={this.onAddPress}
onDelete={this.onDelete}
instances={this.state.instances}
/>
);
}
},
configureScene() {
return Navigator.SceneConfigs.VerticalUpSwipeJump;
},
render() {
return(
<Navigator
configureScene={this.configureScene}
initialRoute={{ name: 'instanceList', index: 0}}
ref={(nav) => { this.nav = nav; }}
renderScene={this.renderScene}
/>
);
}
});
AppRegistry.registerComponent('main', () => SyncanoExample);