-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathApp.js
75 lines (62 loc) · 1.57 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
import React, { Component } from 'react';
import {
AppRegistry,
StyleSheet,
Text,
View,
WebView
} from 'react-native';
import Relay from 'react-relay';
Relay.injectNetworkLayer(
new Relay.DefaultNetworkLayer('http://localhost:3000/graphql')
);
import { Reducer } from 'react-native-router-flux';
import { Router, Scene, Actions } from 'react-native-router-flux';
import RelayRenderer from 'rnrf-relay-renderer';
import PageOne from './PageOne';
import PageTwo from './PageTwo';
const reducerCreate = params=>{
const defaultReducer = Reducer(params);
return (state, action)=>{
console.log("ACTION:", action);
return defaultReducer(state, action);
}
};
class App extends Component {
render() {
return (
<Router createReducer={reducerCreate} sceneStyle={{flex: 1}} wrapBy={RelayRenderer()}>
<Scene key="root">
<Scene
key="pageOne"
component={PageOne}
title="PageOne"
initial={true}
queries={{viewer: () => Relay.QL`query { viewer } `,}}
/>
<Scene
key="pageTwo"
component={PageTwo}
title="PageTwo"
queries={{node: () => Relay.QL`query { node(id: $nodeID) } `,}}
/>
</Scene>
</Router>
)
}
}
export default () => {
return (
<View style={styles.container}>
<App />
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'stretch',
backgroundColor: '#F5FCFF',
},
});