forked from FaridSafi/react-native-gifted-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathErrorButton.js
80 lines (70 loc) · 1.63 KB
/
ErrorButton.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
80
import React from 'react';
import { View, Text, TouchableHighlight, StyleSheet } from 'react-native';
import GiftedSpinner from 'react-native-gifted-spinner';
const styles = StyleSheet.create({
errorButtonContainer: {
marginLeft: 8,
alignSelf: 'center',
justifyContent: 'center',
backgroundColor: '#e6e6eb',
borderRadius: 15,
width: 30,
height: 30,
},
errorButton: {
fontSize: 22,
textAlign: 'center',
},
});
export default class ErrorButton extends React.Component {
constructor(props) {
super(props);
this.state = {
isLoading: false,
};
this.onPress = this.onPress.bind(this);
}
componentWillMount() {
Object.assign(styles, this.props.styles);
}
onPress() {
this.setState({
isLoading: true,
});
this.props.onErrorButtonPress(this.props.rowData);
}
render() {
if (this.state.isLoading === true) {
return (
<View
style={[styles.errorButtonContainer, {
backgroundColor: 'transparent',
borderRadius: 0,
}]}
>
<GiftedSpinner />
</View>
);
}
return (
<View style={styles.errorButtonContainer}>
<TouchableHighlight
underlayColor="transparent"
onPress={this.onPress}
>
<Text style={styles.errorButton}>↻</Text>
</TouchableHighlight>
</View>
);
}
}
ErrorButton.propTypes = {
styles: React.PropTypes.object,
onErrorButtonPress: React.PropTypes.func,
rowData: React.PropTypes.object,
};
ErrorButton.defaultProps = {
onErrorButtonPress: () => {},
rowData: {},
styles: {},
};