Toast.js
2.88 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
'use strict';
import React, {Component} from 'react'
import {
StyleSheet,
View,
Text,
Dimensions,
ActivityIndicator,
Platform,
} from 'react-native';
import TimerMixin from 'react-timer-mixin';
import PropTypes from 'prop-types';
export default class Toast extends Component {
static propTypes = {
isVisible: PropTypes.bool.isRequired,
size: PropTypes.string,
color: PropTypes.string,
overlayWidth: PropTypes.number,
overlayHeight: PropTypes.number,
overlayColor: PropTypes.string,
text: PropTypes.string,
textColor: PropTypes.string,
textFontSize: PropTypes.number,
};
static defaultProps = {
isDismissible: false,
overlayWidth: 100,
overlayHeight: 50,
overlayColor: 'rgba(0,0,0,0.6)',
size: (Platform.OS === 'ios') ? 'large' : 'small',
color: (Platform.OS === 'ios') ? 'white' : 'gray',
text: '...',
textColor: '#eeeeee',
textFontSize: 14,
};
constructor(props) {
super(props);
// this.show = this.show.bind(this);
this.state = {
isVisible: this.props.isVisible,
};
}
// show(){
// this.setState({isVisible: true,});
// this.timer = TimerMixin.setTimeout(() => {
// this.setState({
// isVisible: false,
// });
// }, 3000);
// }
componentWillUnmount() {
this.timer && TimerMixin.clearTimeout(this.timer);
}
render() {
if (!this.state.isVisible) {
return null;
}
else{
this.timer = TimerMixin.setTimeout(() => {
this.setState({
isVisible: false,
});
}, 3000);
}
let customStyles = StyleSheet.create({
overlay: {
alignItems: 'center',
justifyContent: 'center',
borderRadius: 10,
backgroundColor: this.props.overlayColor,
width: this.props.overlayWidth,
height: this.props.overlayHeight,
},
text: {
color: this.props.textColor,
fontSize: this.props.textFontSize,
},
});
return (
<View style={styles.container}>
<View style={customStyles.overlay}>
<Text style={customStyles.text}>{this.props.text}</Text>
</View>
</View>
);
}
}
let {width, height} = Dimensions.get('window');
let navbarHeight = (Platform.OS === 'android') ? 50 : 64;
const styles = StyleSheet.create({
container: {
position: 'absolute',
backgroundColor: 'transparent',
justifyContent: 'center',
alignItems: 'center',
top: -navbarHeight,
bottom: 0,
left: 0,
right: 0,
},
});