Issue #333 media switch fix #348
1 changed files with 15 additions and 0 deletions
|
@ -14,6 +14,21 @@ class Video extends React.PureComponent {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps(nextProps) {
|
||||||
|
// reset playing state upon change path action
|
||||||
|
if (!this.isMediaSame(nextProps) && this.state.isPlaying) {
|
||||||
|
this.state.isPlaying = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
isMediaSame(nextProps) {
|
||||||
|
return (
|
||||||
|
this.props.fileInfo &&
|
||||||
|
nextProps.fileInfo &&
|
||||||
|
this.props.fileInfo.outpoint === nextProps.fileInfo.outpoint
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
startPlaying() {
|
startPlaying() {
|
||||||
this.setState({
|
this.setState({
|
||||||
isPlaying: true,
|
isPlaying: true,
|
||||||
|
|
Loading…
Reference in a new issue