forked from d-a-n/react-native-webbrowser
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBackButton.js
74 lines (57 loc) · 1.3 KB
/
BackButton.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
'use strict';
import React, {
PropTypes,
} from 'react';
import ReactNative, {
Image,
} from 'react-native';
import BaseComponent from './BaseComponent'
import styles from './styles'
import Button from './Button';
class BackButton extends BaseComponent {
constructor(props) {
super(props);
this.state = {
visible: props.visible,
};
this._bind(
'onBackPress'
);
}
componentWillReceiveProps(nextProps) {
this.setState({
visible: nextProps.visible
});
}
buttonStyle() {
return [styles.backButton, this.props.foregroundColor && {tintColor:this.props.foregroundColor}];
}
onBackPress() {
const { onPress } = this.props;
onPress && onPress();
}
render() {
const { visible } = this.props;
if (!visible) {
return false;
}
return (
<Button
onPress={ this.onBackPress.bind(this) }>
<Image
style={this.buttonStyle()}
source={require('./assets/images/arrow-left.png')}
/>
</Button>
);
}
}
BackButton.propTypes = {
visible: PropTypes.bool,
onPress: PropTypes.func,
foregroundColor: PropTypes.string
};
BackButton.defaultProps = {
visible: true,
};
module.exports = BackButton;