|
@@ -44,6 +44,7 @@ export default class CusVideo extends React.Component {
|
|
duration: 0.0,
|
|
duration: 0.0,
|
|
currentTime: 0.0,
|
|
currentTime: 0.0,
|
|
paused: true,
|
|
paused: true,
|
|
|
|
+ onBuffer: true,
|
|
wheel: false,
|
|
wheel: false,
|
|
isFull: false,
|
|
isFull: false,
|
|
needback: this.props.needback,
|
|
needback: this.props.needback,
|
|
@@ -142,15 +143,11 @@ export default class CusVideo extends React.Component {
|
|
}
|
|
}
|
|
|
|
|
|
componentWillMount() {
|
|
componentWillMount() {
|
|
- if (this.state.pause) {
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
this.videotouch = PanResponder.create({
|
|
this.videotouch = PanResponder.create({
|
|
onStartShouldSetPanResponder: (evt, gestureState) => true,
|
|
onStartShouldSetPanResponder: (evt, gestureState) => true,
|
|
onStartShouldSetPanResponderCapture: (evt, gestureState) => true,
|
|
onStartShouldSetPanResponderCapture: (evt, gestureState) => true,
|
|
onMoveShouldSetPanResponder: (evt, gestureState) => true,
|
|
onMoveShouldSetPanResponder: (evt, gestureState) => true,
|
|
onMoveShouldSetPanResponderCapture: (evt, gestureState) => true,
|
|
onMoveShouldSetPanResponderCapture: (evt, gestureState) => true,
|
|
-
|
|
|
|
onPanResponderGrant: (evt, gestureState) => {
|
|
onPanResponderGrant: (evt, gestureState) => {
|
|
this.pressStatus = true;
|
|
this.pressStatus = true;
|
|
this.config.changeY = evt.nativeEvent.pageY;
|
|
this.config.changeY = evt.nativeEvent.pageY;
|
|
@@ -189,16 +186,6 @@ export default class CusVideo extends React.Component {
|
|
return false;
|
|
return false;
|
|
}
|
|
}
|
|
});
|
|
});
|
|
- if (this.state.show_controller) {
|
|
|
|
- this.time_hideController = setTimeout(() => {
|
|
|
|
- this.setState({
|
|
|
|
- show_controller: false
|
|
|
|
- // needback: false
|
|
|
|
- });
|
|
|
|
- this.bottomcontroller.setBottom(-50);
|
|
|
|
- this.topcontroller.setTop(-50);
|
|
|
|
- }, 5000);
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
|
|
|
|
loadStart() {
|
|
loadStart() {
|
|
@@ -208,9 +195,16 @@ export default class CusVideo extends React.Component {
|
|
onBuffer({ isBuffering }: { isBuffering: boolean }) {
|
|
onBuffer({ isBuffering }: { isBuffering: boolean }) {
|
|
//true为正在加载,false为没有加载,此处给loading提示
|
|
//true为正在加载,false为没有加载,此处给loading提示
|
|
this.setState({
|
|
this.setState({
|
|
|
|
+ onBuffer: isBuffering,
|
|
show_loading: isBuffering
|
|
show_loading: isBuffering
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
+ isPlaying() {
|
|
|
|
+ if (this.state.onBuffer == false && this.state.paused == false) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+ return false;
|
|
|
|
+ }
|
|
onLoad = data => {
|
|
onLoad = data => {
|
|
//获取的是秒数
|
|
//获取的是秒数
|
|
this.setState({ duration: data.duration });
|
|
this.setState({ duration: data.duration });
|
|
@@ -227,10 +221,16 @@ export default class CusVideo extends React.Component {
|
|
};
|
|
};
|
|
|
|
|
|
onError() {
|
|
onError() {
|
|
- this.props.onError();
|
|
|
|
|
|
+ if (this.props.onEnd == undefined) {
|
|
|
|
+ } else {
|
|
|
|
+ this.props.onError();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
onEnd() {
|
|
onEnd() {
|
|
- this.props.onEnd();
|
|
|
|
|
|
+ if (this.props.onEnd == undefined) {
|
|
|
|
+ } else {
|
|
|
|
+ this.props.onEnd();
|
|
|
|
+ }
|
|
}
|
|
}
|
|
play() {
|
|
play() {
|
|
//controller的play点击无法换图...
|
|
//controller的play点击无法换图...
|
|
@@ -253,6 +253,16 @@ export default class CusVideo extends React.Component {
|
|
player_status_icon: require("../images/video/pause.png")
|
|
player_status_icon: require("../images/video/pause.png")
|
|
});
|
|
});
|
|
this.player_icon_index = 0;
|
|
this.player_icon_index = 0;
|
|
|
|
+ if (this.state.show_controller) {
|
|
|
|
+ this.time_hideController = setTimeout(() => {
|
|
|
|
+ this.setState({
|
|
|
|
+ show_controller: false
|
|
|
|
+ // needback: false
|
|
|
|
+ });
|
|
|
|
+ this.bottomcontroller.setBottom(-50);
|
|
|
|
+ this.topcontroller.setTop(-50);
|
|
|
|
+ }, 5000);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
seekTo(progress) {
|
|
seekTo(progress) {
|