-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
84 lines (79 loc) · 1.98 KB
/
index.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
81
82
83
84
import React from 'react'
import {
StyleSheet,
ActivityIndicator,
View,
Text,
Platform,
} from 'react-native'
const styles = StyleSheet.create({
container: {
position: 'absolute',
backgroundColor: 'transparent',
justifyContent: 'center',
alignItems: 'center',
top: 0,
bottom: 0,
left: 0,
right: 0,
},
})
export default class Loading extends React.Component {
constructor(props) {
super(props)
this.state = {
isLoading: false,
}
}
static propTypes = {
loadingShow: React.PropTypes.bool.isRequired,
size: React.PropTypes.string,
color: React.PropTypes.string,
overlayWidth: React.PropTypes.number,
overlayHeight: React.PropTypes.number,
overlayColor: React.PropTypes.string,
text: React.PropTypes.string,
textColor: React.PropTypes.string,
textFontSize: React.PropTypes.number,
}
static defaultProps = {
isDismissible: false,
overlayWidth: 80,
overlayHeight: 80,
overlayColor: 'rgba(0,0,0,0.6)',
size: (Platform.OS === 'ios') ? 'large' : 'SmallInverse',
color: (Platform.OS === 'ios') ? 'gray' : 'white',
text: 'Loading',
textColor: '#eeeeee',
textFontSize: 14,
}
render() {
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,
marginTop: 8,
},
})
if (!this.props.loadingShow) {
return (<View />)
} else {
return (
<View style={styles.container}>
<View style={customStyles.overlay}>
<ActivityIndicator color={this.props.color} size={this.props.size} />
<Text style={customStyles.text}>{this.props.text}</Text>
</View>
</View>
)
}
}
}