-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCounterApp.js
78 lines (70 loc) · 1.67 KB
/
CounterApp.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
import React from 'react';
import { bindActionCreators } from 'redux';
import { StyleSheet, Text, View, Button } from 'react-native';
import { connect } from 'react-redux';
class CounterApp extends React.Component {
constructor(props) {
super(props);
}
render() {
const {count, actions} = this.props;
return (
<View style={styles.container}>
<Text>{count}</Text>
<Button
onPress={actions.increment}
title='+'
/>
<Button
onPress={actions.incrementAsync}
title='+ (after 1sec.)'
/>
<Button
onPress={actions.decrement}
title='-'
/>
</View>
);
}
}
// Increment action creator.
function increment() {
return {
type: "INCREMENT"
}
}
// Async increment.
function incrementAsync() {
return dispatch => {
setTimeout(() => {
// Yay! Can invoke sync or async actions with `dispatch`
dispatch(increment());
}, 1000);
};
}
// Decrement action creator.
function decrement() {
return {
type: "DECREMENT"
}
}
// Map store to component's props.
function mapStateToProps(state) {
return { count: state.count}
}
// Map action creators to component's props so that the actions to be generated/ dispatched when event occurs.
function mapDispatchToProps(dispatch) {
return { actions: bindActionCreators(
{increment, incrementAsync, decrement},
dispatch) }
}
// react-redux connect function.
export default connect(mapStateToProps, mapDispatchToProps)(CounterApp);
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});