errorPost.js 16.1 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 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
/**
 * Created by Cassie on 2018/03/21
 */
import React, { Component } from 'react';
import {
    StyleSheet,
    View,
    Text,
    TouchableOpacity,
    Image,
    TextInput,
    Animated,
    ActivityIndicator,
    NativeModules,
    NativeEventEmitter,
    DeviceEventEmitter,
    Alert,
    Modal,
    Platform,
    BackHandler,
    AsyncStorage,
    Button,
    FlatList,
    ScrollView,
    StatusBar,
    Keyboard
} from 'react-native';
import { withNavigationFocus } from 'react-navigation-is-focused-hoc';

import {zoomW,zoomH,width,height} from '../../utils/getSize';
import {getHeaderHeight,getHeaderPadding,clock,xnToast,timeReduce,timePlus,timeEvery,getDay} from '../../utils/utils';
import xnService from "../../service/AppService";
import moment from 'moment';

const nativeBridge = NativeModules.BlueToolManage;
const NativeModule = new NativeEventEmitter(nativeBridge);

var ImagePicker = require('react-native-image-picker');
var options = {
    title: null,
    cancelButtonTitle:'取消',
    takePhotoButtonTitle:'拍照',
    chooseFromLibraryButtonTitle:'从手机相册中选取',
    storageOptions: {
        skipBackup: true,
        path: 'images'
    }
};

class errorPost extends Component {
    static navigationOptions = ({navigation}) => ({
        header:null
    });

    constructor(props){
        super(props);
        this.keyboardShow = null;
        this.keyboardHide = null;
        this._gestureHandlers = {
            onStartShouldSetResponder: () => {
                return false;
            },
            // 对触摸进行响应
            onMoveShouldSetResponder: () => {
                Keyboard.dismiss();
                return false;
            },
        };
        let _this = this;

        this.state = {
            itemList:[],
            bottom:new Animated.Value(-157),
            imgType:['bmp','jpeg','jp2','gif','tiff','png','exif','wbmp','mbm','jpg','heic'],
            keyboardSpace: 0,
            loading:false,
            isAble:false,
            showSelect:false
        };
    };

    componentWillMount(){

        this.keyboardShow = Platform.OS === 'ios' ?
            Keyboard.addListener('keyboardWillShow', this.updateKeyboardSpace.bind(this)) : Keyboard.addListener('keyboardDidShow', this.updateKeyboardSpace.bind(this));
        this.keyboardHide = Platform.OS === 'ios' ?
            Keyboard.addListener('keyboardWillHide', this.resetKeyboardSpace.bind(this)) : Keyboard.addListener('keyboardDidHide', this.resetKeyboardSpace.bind(this));
    };

    componentDidMount(){

    }

    componentWillUnmount(){
        this.closeSelect();

        // 卸载键盘弹出事件监听
        if (this.keyboardShow !== null) {
            this.keyboardShow.remove();
        }
        // 卸载键盘隐藏事件监听
        if (this.keyboardHide !== null) {
            this.keyboardHide.remove();
        }
    }




    doPost(){

        let _this = this;
        if (_this.state.describe==''||_this.state.describe==undefined){
            xnToast('描述不能为空');
            return;
        }

        _this.setState({
            loading:true
        });

        let itemList=[];
        for (let i=0;i<_this.state.itemList.length;i++){
            if (_this.state.itemList[i].url){
                itemList.push(_this.state.itemList[i].url);
            }
        }
        let parms ={
            content:_this.state.describe,
            title:'软件异常',
            commitTime:moment(Number(new Date().getTime())).format('YYYY-MM-DD HH:mm:ss'),
            appAttachementAddressList:itemList
    };


        xnService.phoneErrorPost(parms).then((data) => {
            _this.setState({
                loading:false
            });
            if(data.message){
                xnToast(data.message);
                return;
            }
            if(data.errors.length > 0){
                xnToast(data.errors[0].message);
            }else{
                xnToast('异常上报成功');

                this.props.navigation.goBack()

            }
        })
    }

    // 检测是否可以上报
    testCanPost(){

        if ( this.state.describe=='' || this.state.describe==undefined){

            this.setState({
                isAble:false
            });
        }else{
            this.setState({
                isAble:true
            });
        }

    }

    // 打开键盘
    updateKeyboardSpace(frames) {

        if (!frames.endCoordinates) {
            return;
        }
        const keyboardHeight = frames.endCoordinates.height;// 获取键盘高度
        this.setState({
            keyboardSpace: keyboardHeight,
        });
    }

    // 关闭键盘
    resetKeyboardSpace() {
        this.setState({
            keyboardSpace: 0,
        });
    }

    /*打开和关闭选择图片*/
    selectPic(){
        this.setState({
            showSelect:true,
        });
        Animated.timing(
            this.state.bottom,
            {toValue:0}
        ).start();
    };

    closeSelect(){
        this.setState({
            showSelect:false,
            bottom:new Animated.Value(-157)
        });
    };

    /*打开相机*/
    openCamera(){
        NativeModules.BlueToolManage.openCameraWithpassportId(global.passport.id).then((data) => {
            this.closeSelect();
            let res = JSON.parse(data);
            let url = res.url;
            let fileType = '';
            if(res.type == 'IMAGE'){
                fileType = 'IMAGE';
            }
            let params = {
                type:fileType,
                name:url.substring(url.lastIndexOf('/')+1,url.lastIndexOf('.')),
                extension:url.substring(url.lastIndexOf('.')+1),
                storagePath:url,
            };

            let imgList = this.state.itemList;
            imgList.push({url:url,name:params.name,type:fileType});
            this.setState({
                itemList:imgList
            });
        })
    };

    toAlbum(){
        global.openImg = true;
        ImagePicker.launchImageLibrary({},(response) => {
            this.closeSelect();
            if(response.didCancel){

            }else if (response.error){
                xnToast('相册访问失败,请重新尝试或检查是否开启相册权限');
            }
            else{
                this.setState({
                    loading:true
                });
                let timestamp = (new Date()).getTime();
                let fileName = response.fileName ? global.user.id+timestamp+response.fileName : global.user.id+timestamp+response.uri.substring(response.uri.lastIndexOf('/')+1);
                xnService.getAccess({name:fileName}).then((data) => {
                    if(data.message){
                        xnToast(data.message);
                        return;
                    }
                    if(data.errors.length > 0) {
                        xnToast(data.errors[0].message);
                    }else{
                        NativeModules.BlueToolManage.simpleUpload(data.accessKeyId,data.accessKeySecret,data.securityToken,data.info.endpoint,data.info.bucket,data.info.fileUrl,response.path || response.uri).then((res) => {
                            let extension = res.substring(res.lastIndexOf('.')+1).toLowerCase();
                            let fileType = '';
                            if(this.state.imgType.indexOf(extension) != -1){
                                fileType = 'IMAGE'
                            }
                            let params = {
                                type:fileType,
                                name:res.substring(res.lastIndexOf('/')+1,res.lastIndexOf('.')),
                                extension:extension,
                                storagePath:res,                            };

                            this.setState({
                                loading:false
                            });

                            let imgList = this.state.itemList;
                            imgList.push({url:res,name:params.name,type:fileType});
                            this.setState({
                                itemList:imgList
                            });

                        })
                    }
                })
            }
        });
    };

    delegate(rowID){
        let imgList = this.state.itemList;
        imgList.splice(rowID,1);
        this.setState({
            itemList:imgList
        });
    }

    //图片渲染
    renderItem = (item,rowID) => {
        return(
            <View style={[styles.innerViewStyle,{position:"relative",marginLeft:rowID==0?0:11/zoomW}]} key={rowID}>
                <Image style={{width:'100%',height:'100%'}} source={{uri:item.url+'?x-oss-process=image/resize,w_1000'}} resizeMode='cover' />
                <TouchableOpacity style={{position:"absolute",right:0,top:0,width:20/zoomW,height:20/zoomW}} onPress={()=>this.delegate(rowID)}>
                    <Image style={{width:'100%',height:'100%'}} source={require('../../img/deleteIcon.png')} resizeMode="contain" ></Image>
                </TouchableOpacity>
            </View>
        )
    };

    render(){

        const _this = this;

        return (
            <View style={styles.background} {...this._gestureHandlers}>
                <StatusBar barStyle={this.state.statusBarColor}/>
                <View style={[styles.headerWrap]}>
                    <TouchableOpacity style={styles.renderLeft} onPress={() => this.props.navigation.goBack()}>
                        <Image source={require('../../img/back_gray.png')} resizeMode="contain" />
                    </TouchableOpacity>
                    {/*<TouchableOpacity style={[styles.renderLeft,{backgroundColor:'#ff7700'}]} onPress={() => this.doPost()}>*/}
                    {/*    <Text style={{ color:'#fff', fontSize:14 }}>上报</Text>*/}
                    {/*</TouchableOpacity>*/}

                    <Text style={styles.title}>APP异常上报</Text>
                    {this.state.isAble&&<TouchableOpacity style={[styles.renderRight,{backgroundColor:'#ff7700'}]} onPress={() => this.doPost()}>
                        <Text style={{ color:'#fff', fontSize:14 }}>上报</Text>
                    </TouchableOpacity>}
                    {!this.state.isAble&&<View style={[styles.renderRight,{backgroundColor:'#D8D8D8'}]}>
                        <Text style={{ color:'#fff', fontSize:14 }}>上报</Text>
                    </View>}


                </View>
                <ScrollView
                    keyboardShouldPersistTaps="always"
                    contentInset = {{ bottom:this.state.keyboardSpace }}
                    style={{ flex: 1 ,width:width}}
                    alwaysBounceVertical={false}
                    automaticallyAdjustContentInsets={false}
                    scrollEventThrottle={200}
                >
                    <View style={styles.top}>
                        <TextInput style={{fontSize:18,height:86/zoomH,maxHeight:86/zoomH,marginBottom:11/zoomH}} underlineColorAndroid="transparent" multiline={true} value={this.state.describe} onChangeText={(text)=>{
                            this.setState({describe:text},function(){
                                this.testCanPost();
                            })

                        }} placeholder='APP异常描述'></TextInput>

                        <ScrollView horizontal={true} contentContainerStyle={{flex:1,alignItems:'center'}} style={{width:'100%',height:98/zoomH}} scrollEventThrottle={200}>
                            {this.state.itemList.map((v, i) => this.renderItem(v, i))}
                            {this.state.itemList.length < 3 && <TouchableOpacity style={{ marginLeft:this.state.itemList.length ==0?0: 11/zoomW }} onPress={()=>this.selectPic()}>
                                <View style={{width:98/zoomW, height:98/zoomW,backgroundColor:'#ededed',justifyContent:'center',alignItems:'center'}}>
                                    <Image style={{width:32/zoomW,height:32/zoomW}} source={require('../../img/add.png')}/>
                                </View>
                            </TouchableOpacity>}
                        </ScrollView>
                    </View>

                </ScrollView>

                <Modal animationType={'none'} transparent={true} visible={this.state.showSelect} onRequestClose={() => {}}>
                    <TouchableOpacity activeOpacity={1} style={styles.modalBg} onPress={() => this.closeSelect()}>
                        <Animated.View style={[styles.selectContent,{bottom:this.state.bottom}]}>
                            <View style={{marginBottom:7}}>
                                <TouchableOpacity activeOpacity={.9} onPress={() => this.openCamera()}>
                                    <View style={styles.selectModal}>
                                        <Text style={{color:'#333',fontSize:18,marginBottom:(5/zoomH)}}>拍摄</Text>
                                        <Text style={{color:'#999',fontSize:10}}>照片或视频</Text>
                                    </View>
                                </TouchableOpacity>
                                <TouchableOpacity activeOpacity={.9} onPress={() => this.toAlbum()}>
                                    <View style={styles.selectModal}>
                                        <Text style={{color:'#333',fontSize:18}}>从手机相册选择</Text>
                                    </View>
                                </TouchableOpacity>
                            </View>
                            <TouchableOpacity activeOpacity={.9} onPress={() => this.closeSelect()}>
                                <View style={styles.selectModal}>
                                    <Text style={{color:'#333',fontSize:18}}>取消</Text>
                                </View>
                            </TouchableOpacity>
                        </Animated.View>
                    </TouchableOpacity>
                </Modal>


                {this.state.loading && <View style={styles.loadingBg}>
                    <ActivityIndicator size="large" />
                </View>}

            </View>
        );
    }
}

export default withNavigationFocus(errorPost)

const styles = StyleSheet.create({
    background:{
        flex:1,
        backgroundColor:'#fff',
        display:'flex',
        alignItems:'center',
    },
    headerWrap: {
        width: '100%',
        height:getHeaderHeight(),
        paddingTop:getHeaderPadding(),
        backgroundColor:'#fff',
        justifyContent: 'center',
        alignItems: 'center',
        position: 'relative',
    },
    title: {
        color:'#000',
        fontSize:18,
        fontWeight:'bold',
    },
    renderLeft: {
        position: 'absolute',
        left: 0,
        top: getHeaderPadding()+10,
        width:57/zoomW,height:32/zoomH
        ,justifyContent:'center',alignItems:'center',borderRadius:4
    },
    renderRight: {
        position: 'absolute',
        right: 0,
        top: getHeaderPadding()+5,
        width:57/zoomW,height:32/zoomH
        ,justifyContent:'center',alignItems:'center',marginRight: 16/zoomW,borderRadius:4
    },
    icon:{
        width:40,
        height:40,
        marginBottom:5,
        borderRadius:20,
        backgroundColor:'white',
        alignItems:'center',
        justifyContent:'center'
    },
    top:{
        // maxHeight:224/zoomH,
        width:'100%',
        height:237/zoomH,
        backgroundColor:'#fff',
        paddingLeft:20/zoomW,
        paddingRight:20/zoomW,
        paddingTop:11/zoomH,
        marginBottom:10/zoomH
    },
    innerViewStyle:{
        width:98/zoomW,
        height:98/zoomW,
        justifyContent:'center',
    },
    contentContainer:{
        width:60/zoomW,
        height:60/zoomW
    },
    modalBg:{
        width:'100%',
        height:'100%',
        backgroundColor:'rgba(0,0,0,.5)'
    },
    selectContent:{
        width:'100%',
        position:'absolute'
    },
    selectModal:{
        width:'100%',
        height:50,
        display:'flex',
        alignItems:'center',
        justifyContent:'center',
        backgroundColor:'#fff',
        borderBottomWidth:1,
        borderBottomColor:'#ddd'
    },
    loadingBg:{
        width:'100%',
        height:'100%',
        position:'absolute',
        display:'flex',
        alignItems:'center',
        justifyContent:'center'
    },
});