-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoolbar.js
More file actions
54 lines (50 loc) · 1.15 KB
/
toolbar.js
File metadata and controls
54 lines (50 loc) · 1.15 KB
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
'use strict';
var React = require('react-native');
var {
ToolbarAndroid,
} = React;
class Toolbar extends React.Component {
constructor(props) {
super(props);
this.state = {};
}
actions() {
var actions = [];
if (this.props.actions) {
actions = this.props.actions;
}
return actions.concat([
{
icon: require('image!ic_local_pizza_white_24dp'),
title: 'Log out',
onActionSelected: () => this.props.logout(),
}
]);
}
onActionSelected(position) {
var action = this.actions()[position];
if (action.onActionSelected) {
action.onActionSelected();
}
}
render() {
return (
<ToolbarAndroid
title="brdg.me"
actions={this.actions()}
onActionSelected={(position) => this.onActionSelected(position)}
navIcon={require('image!ic_local_pizza_white_24dp')}
onIconClicked={() => console.log('moo')}
style={{
height: 56,
backgroundColor: '#607D8B',
}}
/>
)
}
}
Toolbar.propTypes = {
logout: React.PropTypes.func.isRequired,
actions: React.PropTypes.array,
};
module.exports = Toolbar;