-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathAddTodoScene.js
executable file
·79 lines (69 loc) · 1.8 KB
/
AddTodoScene.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
import NavigationBar from 'react-native-navbar';
import React, { Component } from 'react';
import {
View,
ScrollView,
} from 'react-native';
import { connect } from 'react-redux';
import { themeable } from '../themes';
import { addTodo } from '../actions';
import AddTodo from '../components/AddTodo';
class NewTodo extends Component {
constructor(props) {
super(props);
this.cancel = this.backToList.bind(this);
this.done = this.backToList.bind(this);
this.save = this.save.bind(this);
}
backToList() {
this.props.navigator.pop();
}
save(text) {
this.props.saveTodo(text);
this.backToList();
}
render() {
const {
style,
navBarStyle,
statusBarTintColor,
statusBarStyle,
navBarBtnTextColor,
} = this.props;
return (
<View style={style}>
<NavigationBar
statusBar={{tintColor: statusBarTintColor, style: statusBarStyle}}
title={{ title: 'Add a new task' }}
leftButton={{ title: 'Cancel', handler: this.cancel, tintColor: navBarBtnTextColor }}
style={navBarStyle}
/>
<ScrollView horizontal={false}>
<AddTodo saveTodo={this.save} onFinish={this.done} />
</ScrollView>
</View>
);
}
}
const mapDispatchToProps = (dispatch) => {
return {
saveTodo: (title) => {
dispatch(addTodo(title));
}
};
};
const NewTodoContainer = connect(
() => ({}),
mapDispatchToProps
)(NewTodo);
const ThemableAddTodo = themeable(NewTodoContainer, (theme) => {
const {styles, variables} = theme;
return {
style: styles.container,
navBarStyle: styles.navBar,
statusBarTintColor: variables.colorNavBg,
statusBarStyle: variables.statusBarStyle,
navBarBtnTextColor: variables.colorNavbarText
};
});
export default ThemableAddTodo;