Merge pull request #348 from akinwale/issue333
Issue #333 media switch fix
This commit is contained in:
commit
7c7bbcd064
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() {
|
||||
this.setState({
|
||||
isPlaying: true,
|
||||
|
|
Loading…
Reference in a new issue