UploadProgress.js
4.98 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
'use strict'
import React from 'react';
import ReactNative from 'react-native';
import * as Progress from 'react-native-progress';
import ImmutablePropTypes from 'react-immutable-proptypes';
const {
View,
Image,
Text,
TouchableOpacity,
StyleSheet,
Dimensions,
TouchableHighlight,
Animated,
CameraRoll,
} = ReactNative;
export default class UploadProgress extends React.Component {
static propTypes = {
uploadState:React.PropTypes.number,
progress:React.PropTypes.number,
image:React.PropTypes.string,
onPressRetry:React.PropTypes.func,
onPressDelete:React.PropTypes.func,
uploadSuccess:React.PropTypes.func,
};
constructor(props) {
super(props);
this.state={
fadeAnim: new Animated.Value(1),
};
this._transparent = this._transparent.bind(this);
}
componentDidMount() {
}
componentWillUnmount() {
this.timeout && clearTimeout(this.timer);
this.interval && clearInterval(this.interval);
}
render() {
let data = this.props.data.toJS();
let {image,uploadState,progress} = data;
let {width, height} = Dimensions.get('window');
let progressBarWidth = 0;
let tips = '';
switch (uploadState) {
case 0:
{
// 发布中
tips = '发布中...';
progressBarWidth = width - 106 - 15;
}
break;
case 1:
{
// 发布成功
tips = '发布成功';
progressBarWidth = 0;
this._transparent();
}
break;
case 2:
{
// 发布失败
tips = '发布失败...';
progressBarWidth = width - 106 - 45 - 40;
}
break;
default:
}
return (
<Animated.View style={[styles.container, {opacity: this.state.fadeAnim,}]}>
<Image
style={styles.image}
defaultSource={require('../../images/home/font.png')}
source={{uri: image}}/>
<Text style={styles.tips}>
{tips}
</Text>
<Progress.Bar
progress={progress}
width={progressBarWidth}
color={'black'}
unfilledColor={'#e0e0e0'}
borderWidth={0}
style={styles.bar}
/>
{this._renderButton(uploadState)}
</Animated.View>
);
}
_transparent() {
setTimeout(()=>{
this.state.fadeAnim.addListener(event=>{
if (event.value == 0) {
this.props.uploadSuccess();
}
});
Animated.timing(
this.state.fadeAnim,
{toValue: 0},
).start();
}, 2000);
}
_renderButton(uploadState) {
//根据上传状态不同返回不同按钮
if (uploadState == 2) {
return(
<View style={{flexDirection:'row', width:55,justifyContent:'space-between',marginLeft:15,}}>
<TouchableHighlight
underlayColor={'transparent'}
onPress={() => {
this.props.onPressRetry && this.props.onPressRetry();
}}
>
<Image
source={require('../../images/home/retry.png')}
style={{width:20,height:20, resizeMode: Image.resizeMode.contain}}
/>
</TouchableHighlight>
<TouchableHighlight
underlayColor={'transparent'}
onPress={() => {
this.props.onPressDelete && this.props.onPressDelete();
}}
>
<Image source={require('../../images/home/unselected.png')}/>
</TouchableHighlight>
</View>
);
} else if(uploadState == 1) {
return (
<Image
style={styles.complete}
source={require('../../images/home/ok.png')}/>
);
}
}
}
let {width, height} = Dimensions.get('window');
let styles = StyleSheet.create({
container: {
flex:1,
flexDirection: 'row',
height: 40,
backgroundColor: 'white',
alignItems: 'center',
},
tips: {
fontSize: 11,
marginRight: 15,
fontFamily: 'Helvetica Light',
},
image: {
width: 30,
height: 30,
margin:5,
},
bar: {
height: 1,
// marginTop: 20,
},
complete: {
marginLeft: width-15-20-95,
},
});