forked from osdio/noder-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMarkAsReadOverlay.js
More file actions
82 lines (68 loc) · 1.22 KB
/
MarkAsReadOverlay.js
File metadata and controls
82 lines (68 loc) · 1.22 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
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
81
82
import React, {
View,
StyleSheet,
Component,
Text,
PropTypes
} from 'react-native';
import OverlayButton from './base/OverlayButton';
import Spinner from './base/Spinner';
const overlaySize = 45;
class MarkAsReadOverlay extends Component {
static propTypes = {
hasNotRead: PropTypes.array,
markAsRead: PropTypes.func,
pending: PropTypes.bool
};
_onPress() {
if (this.props.hasNotRead.length == 0) {
window.alert('暂无未读消息!')
}
else {
this.props.markAsRead()
}
}
_renderContent() {
if (this.props.pending) {
return (
<Spinner
style={{width:overlaySize}}/>
)
}
return (
<Text style={[styles.text]}>
已读
</Text>
)
}
render() {
return (
<OverlayButton
position={styles.position}
onPress={this._onPress.bind(this)}>
<View style={styles.content}>
{this._renderContent()}
</View>
</OverlayButton>
)
}
}
const styles = StyleSheet.create({
position: {
right: 20,
bottom: 20
},
text: {
textAlign: 'center',
color: 'white',
fontSize: 12
},
content: {
height: overlaySize,
width: overlaySize,
borderRadius: overlaySize / 2,
flexDirection: 'column',
justifyContent: 'center'
}
});
export default MarkAsReadOverlay;