Skip to content
Snippets Groups Projects
Commit f4150c6f authored by Tainan Felipe's avatar Tainan Felipe
Browse files

hide connecting icon when video is loaded

parent 32c2dfd2
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,14 @@ import React from 'react';
import { styles } from './styles';
export default class ScreenshareComponent extends React.Component {
constructor() {
super();
this.state = {
hideConnecting: false,
};
this.hideConnectingIcon = this.hideConnectingIcon.bind(this);
}
componentDidMount() {
this.props.presenterScreenshareHasStarted();
}
......@@ -15,11 +23,14 @@ export default class ScreenshareComponent extends React.Component {
this.props.presenterScreenshareHasEnded();
this.props.unshareScreen();
}
hideConnectingIcon() {
this.setState({ hideConnecting: true });
}
render() {
return (
[(<div className={styles.connecting} />),
(<video id="screenshareVideo" style={{ maxHeight: '100%', width: '100%' }} autoPlay playsInline />)]
[(<div className={styles.connecting} hidden={this.state.hideConnecting}/>),
(<video id="screenshareVideo" style={{ maxHeight: '100%', width: '100%' }} autoPlay playsInline onLoadedData={this.hideConnectingIcon} />)]
);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment