Browse Source

初始化

HW 4 years ago
parent
commit
7225a49628

+ 146 - 0
src/components/audio/index.jsx

@@ -0,0 +1,146 @@
+import React,{Component} from "react";
+import Taro from '@tarojs/taro';
+import {View,Image} from '@tarojs/components';
+import {AtSlider} from 'taro-ui'
+import './index.less';
+import audioPlay from '../../assets/images/audioPlay.png';
+import autioSuspend from '../../assets/images/autioSuspend.png';
+
+class Audio extends Component{
+  innerAudioContext = Taro.createInnerAudioContext()
+
+  constructor(props) {
+    super(props);
+    this.state={
+      audioPlay: false,
+      audioPercent: 0,
+      nowTime:'0:00',
+      durationTime: '0:00',
+    }
+  }
+
+  componentDidMount() {
+    this.innerAudioContext.src = this.props.audioFile;
+    this.innerAudioContext.autoplay = true;
+    this.innerAudioContext.onPlay(() => {
+      this.setState({
+        audioPlay: true
+      })
+    })
+    this.innerAudioContext.onPause(() => {
+      this.setState({
+        audioPlay: false
+      })
+    })
+    //播放结束
+    this.innerAudioContext.onEnded(() => {
+      this.innerAudioContext.stop();
+      this.setState({
+        audioPlay: false,
+        audioPercent: this.innerAudioContext.duration,
+        nowTime:this.format(Math.round(this.innerAudioContext.duration)),
+      },()=>{
+        setTimeout(()=>{
+          this.setState({
+            audioPercent: 0,
+            nowTime:this.format(0),
+          })
+        },200)
+      })
+    })
+    this.innerAudioContext.onError((res) => {
+      console.log(res.errMsg)
+      console.log(res.errCode)
+      Taro.showToast({title:'语音文件错误,请下拉页面刷新后重试',icon:'none'});
+
+    })
+    this.innerAudioContext.onTimeUpdate(() => {
+      this.setState({
+        audioPercent: this.innerAudioContext.currentTime,
+        duration: this.innerAudioContext.duration,
+        nowTime:this.format(Math.round(this.innerAudioContext.currentTime)),
+        durationTime: this.format(Math.round(this.innerAudioContext.duration)),
+      })
+    })
+  }
+
+  componentWillUnmount(){
+    this.innerAudioContext.destroy();
+  }
+
+  format(value) {
+    let theTime = parseInt(value);// 秒
+    let middle= 0;// 分
+    let hour= 0;// 小时
+    if(theTime > 60) {
+      middle= parseInt(theTime/60);
+      theTime = parseInt(theTime%60);
+      if(middle> 60) {
+        hour= parseInt(middle/60);
+        middle= parseInt(middle%60);
+      }
+    }
+    let result = ''
+    if(parseInt(theTime)>=10){
+      result = "0"+":"+parseInt(theTime);
+    }else{
+      result= "0"+":"+"0"+parseInt(theTime);
+    }
+    if(middle >= 0 && parseInt(theTime)>=10) {
+      result = parseInt(middle)+":"+parseInt(theTime);
+    }else{
+      result = parseInt(middle)+":"+"0"+parseInt(theTime);
+    }
+    return result;
+  }
+
+
+  render() {
+    return (
+      <View className='audioComponents'>
+        {this.state.audioPlay ?
+          <Image
+            src={autioSuspend}
+            className='suspend'
+            onClick={()=>{
+              this.innerAudioContext.pause()
+            }}/> :
+          <Image
+            src={audioPlay}
+            className='play'
+            onClick={()=>{
+              this.innerAudioContext.play()
+            }}
+          />}
+        <View className='atProgress'>
+          <AtSlider
+            min={0}
+            step={0.1}
+            max={this.state.duration}
+            value={this.state.audioPercent}
+            onChange={(value)=>{
+              this.setState({
+                audioPercent: parseFloat(value.toFixed(2)),
+                nowTime:this.format(Math.round(value)),
+              })
+              this.innerAudioContext.seek(parseFloat(value.toFixed(2)));
+            }}
+            onChanging={(value)=>{
+              this.innerAudioContext.pause();
+              this.setState({
+                audioPercent: parseFloat(value.toFixed(2)),
+                nowTime:this.format(Math.round(value)),
+              })
+            }}
+          />
+          {
+            this.state.nowTime+'/'+ this.state.durationTime
+          }
+        </View>
+      </View>
+
+    )
+  }
+}
+
+export default Audio

+ 25 - 0
src/components/audio/index.less

@@ -0,0 +1,25 @@
+.audioComponents{
+  .play{
+    width: 100px;
+    height: 100px;
+  }
+  .suspend{
+    width: 100px;
+    height: 100px;
+  }
+  .atProgress{
+    position: absolute;
+    left: 0;
+    right: 0;
+    bottom: 0;
+    background: #ffffff8a;
+    padding: 20px 20px;
+    width: 100%;
+    display: flex;
+    flex-flow: row nowrap;
+    align-items: center;
+    .at-slider{
+      width: 100%;
+    }
+  }
+}

+ 5 - 96
src/pages/details/index.jsx

@@ -1,7 +1,7 @@
 import { Component } from 'react';
 import Taro from '@tarojs/taro';
-import {View, Image, Video, Button} from '@tarojs/components'
-import {AtProgress, AtSlider, message} from 'taro-ui'
+import {View, Image, Video} from '@tarojs/components'
+import AudioPlayer from '../../components/audio';
 
 import API from '../../utils/API';
 import { pay,payClose,getSelectProject,wxQuery,login } from '../../utils/servers/servers';
@@ -14,25 +14,18 @@ import "taro-ui/dist/style/components/icon.scss";
 import "taro-ui/dist/style/components/slider.scss";
 
 import background from '../../assets/images/background.png';
-import audioPlay from '../../assets/images/audioPlay.png';
-import autioSuspend from '../../assets/images/autioSuspend.png';
 
 class Details extends Component {
 
   inst = Taro.getCurrentInstance()
 
-  innerAudioContext = Taro.createInnerAudioContext()
-
   constructor(props) {
     super(props);
     this.state={
       projectInfor: {},
-      audioPlay: false,
-      audioPercent: 0,
     }
     this.pay= this.pay.bind(this);
     this.payClose= this.payClose.bind(this);
-    this.createAudio= this.createAudio.bind(this);
     this.wxQuery= this.wxQuery.bind(this);
     this.login= this.login.bind(this);
   }
@@ -45,10 +38,6 @@ class Details extends Component {
     this.getSelectProject();
   }
 
-  componentWillUnmount(){
-    this.innerAudioContext.destroy();
-  }
-
   pay(){
     let token = Taro.getStorageSync('token');
     if(!token){
@@ -135,7 +124,7 @@ class Details extends Component {
       orderNo,
     }).then(v => {
       if(v.error.length === 0){
-        // console.log(v);
+        Taro.showToast({title:'已取消支付',icon:'none'});
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -150,7 +139,6 @@ class Details extends Component {
       orderNo:orderNo,
     }).then(v => {
       if(v.error.length === 0){
-        // console.log(v);
         this.getSelectProject();
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
@@ -161,47 +149,6 @@ class Details extends Component {
     })
   }
 
-  createAudio(commodityUrl){
-    this.innerAudioContext.src = resourceAddress + commodityUrl;
-    // this.innerAudioContext.autoplay = true
-    this.innerAudioContext.onPlay(() => {
-      this.setState({
-        audioPlay: true
-      })
-    })
-    this.innerAudioContext.onPause(() => {
-      this.setState({
-        audioPlay: false
-      })
-    })
-    //播放结束
-    this.innerAudioContext.onEnded(() => {
-      this.innerAudioContext.stop();
-      this.setState({
-        audioPlay: false,
-        audioPercent: 100
-      },()=>{
-        setTimeout(()=>{
-          this.setState({
-            audioPercent: 0
-          })
-        },800)
-      })
-    })
-    this.innerAudioContext.onError((res) => {
-      console.log(res.errMsg)
-      console.log(res.errCode)
-      Taro.showToast({title:'语音文件错误,请下拉页面刷新后重试',icon:'none'});
-
-    })
-    this.innerAudioContext.onTimeUpdate(() => {
-      this.setState({
-        audioPercent: parseInt(this.innerAudioContext.currentTime/this.innerAudioContext.duration*100),
-        // duration: this.innerAudioContext.duration
-      })
-    })
-  }
-
   getSelectProject(){
     getSelectProject({
       id:this.inst.router.params.id,
@@ -210,9 +157,6 @@ class Details extends Component {
         this.setState({
           projectInfor: v.data
         })
-        if(v.data.commodityType === 2 && v.data.buy === 1){
-          this.createAudio(v.data.commodityUrl);
-        }
       }else{
         Taro.showToast({title:v.error[0].message,icon:'none'})
       }
@@ -255,43 +199,10 @@ class Details extends Component {
                   <View className='audio'>
                     <Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='audioImg'/>
                     <View className='operation'>
-                      {this.state.audioPlay ?
-                        <Image
-                          src={autioSuspend}
-                          className='suspend'
-                          onClick={()=>{
-                            this.innerAudioContext.pause()
-                          }}/> :
-                        <Image
-                          src={audioPlay}
-                          className='play'
-                          onClick={()=>{
-                            this.innerAudioContext.play()
-                          }}
-                        />}
-                        <View className='atProgress'>
-                          {/*<AtSlider*/}
-                          {/*  min={0}*/}
-                          {/*  max={this.state.duration}*/}
-                          {/*  step={0.1}*/}
-                          {/*  value={this.state.audioPercent}*/}
-                          {/*  onChange={(value)=>{*/}
-                          {/*    this.setState({*/}
-                          {/*      audioPercent: value*/}
-                          {/*    })*/}
-                          {/*    this.innerAudioContext.seek(value);*/}
-                          {/*    this.innerAudioContext.pause();*/}
-                          {/*  }}*/}
-                          {/*  onChanging={()=>{*/}
-                          {/*    this.innerAudioContext.pause();*/}
-                          {/*  }}*/}
-                          {/*/>*/}
-                          <AtProgress percent={this.state.audioPercent} />
-                        </View>
+                      <AudioPlayer audioFile={resourceAddress + projectInfor.commodityUrl}/>
                     </View>
-                  </View> : <Image objectFit='contain' src={resourceAddress + projectInfor.thumbnailUrl} className='img'/>
+                  </View> : <Image objectFit='contain' src={resourceAddress + projectInfor.commodityUrl} className='img'/>
             }
-
           </View>
           <View className='infor'>
             <View className='title'>{projectInfor.name}</View>
@@ -305,8 +216,6 @@ class Details extends Component {
                 <View className='typeName'>
                   {projectInfor.typeName}
                 </View>
-                {/*<Image className='avater' src={resourceAddress + projectInfor.thumbnailUrl}/>*/}
-                {/*<View className='name'>黄老师</View>*/}
               </View>
             </View>
           </View>

+ 0 - 25
src/pages/details/index.less

@@ -46,21 +46,6 @@
           flex-flow: column nowrap;
           align-items: center;
           justify-content: center;
-          .play{
-            width: 100px;
-            height: 100px;
-          }
-          .suspend{
-            width: 100px;
-            height: 100px;
-          }
-          .atProgress{
-            position: absolute;
-            bottom: 0;
-            background: #ffffff8a;
-            width: 100%;
-            padding: 20px 20px;
-          }
         }
       }
     }
@@ -95,16 +80,6 @@
             color: #4564DC;
             border: 1px #A7B6F1 solid;
           }
-          .avater{
-             width: 18px;
-             height: 18px;
-            border-radius: 18px;
-          }
-          .name{
-            padding-left: 6px;
-            color: #FFFFFF;
-            font-size: 15px;
-          }
         }
       }
     }

+ 1 - 28
src/pages/index/index.jsx

@@ -3,7 +3,7 @@ import Taro from '@tarojs/taro';
 import { connect } from 'react-redux'
 import { View, Image } from '@tarojs/components'
 import { set } from '../../actions/counter'
-import { login,getProjecList } from '../../utils/servers/servers'
+import { getProjecList } from '../../utils/servers/servers'
 import {resourceAddress} from '../../utils/config';
 
 import NavBar from '../../components/NavBar';
@@ -31,7 +31,6 @@ class Index extends Component {
       pageNo: 0,
       listState: 'LOADING',
     }
-    this.login= this.login.bind(this);
     this.getProjecList= this.getProjecList.bind(this);
   }
 
@@ -41,7 +40,6 @@ class Index extends Component {
   }
 
   async componentDidMount() {
-    // await this.login();
     await this.getProjecList();
   }
 
@@ -53,31 +51,6 @@ class Index extends Component {
     this.getProjecList(this.state.pageNo+1);
   }
 
-  async login(){
-    let token = Taro.getStorageSync('token');
-    if(!token){
-      let loginMsg = await Taro.login();
-      if (loginMsg.code) {
-        try{
-          let msg = await login({
-            code:loginMsg.code
-          });
-          if(msg.error.length === 0){
-            Taro.setStorageSync('token', msg.token)
-          }else{
-            Taro.showToast({title:msg.error[0].message,icon:'none'})
-          }
-        }catch (err) {
-          Taro.showToast({title:'系统错误,请稍后重试',icon:'none'});
-          console.log(err)
-        }
-      } else {
-        Taro.showToast({title:loginMsg.errMsg,icon:'none'})
-        console.log('登录失败!' + loginMsg.errMsg)
-      }
-    }
-  }
-
   async getProjecList (pageNo = 1){
     this.setState({
       listState: 'LOADING'

+ 2 - 2
src/utils/config.js

@@ -1,3 +1,3 @@
-// export const resourceAddress = 'http://172.16.0.188:3000/upload'
-export const resourceAddress = 'http://kedejs.jishutao.com/upload'
+export const resourceAddress = 'http://172.16.0.188:3000/upload'
+// export const resourceAddress = 'http://kedejs.jishutao.com/upload'