Show text while waiting for video to load
This commit is contained in:
parent
55fbbb3dcc
commit
663150f269
@ -10,6 +10,7 @@ type MediaContainerProps = {
|
|||||||
type MediaContainerState = {
|
type MediaContainerState = {
|
||||||
iceReady: boolean
|
iceReady: boolean
|
||||||
remoteReady: boolean
|
remoteReady: boolean
|
||||||
|
videoReady: boolean
|
||||||
}
|
}
|
||||||
|
|
||||||
export class MediaContainer extends React.Component<MediaContainerProps, MediaContainerState> {
|
export class MediaContainer extends React.Component<MediaContainerProps, MediaContainerState> {
|
||||||
@ -23,7 +24,8 @@ export class MediaContainer extends React.Component<MediaContainerProps, MediaCo
|
|||||||
this.api = props.api
|
this.api = props.api
|
||||||
this.state = {
|
this.state = {
|
||||||
iceReady: false,
|
iceReady: false,
|
||||||
remoteReady: false
|
remoteReady: false,
|
||||||
|
videoReady: false
|
||||||
}
|
}
|
||||||
|
|
||||||
this.pc = new RTCPeerConnection({
|
this.pc = new RTCPeerConnection({
|
||||||
@ -111,11 +113,24 @@ export class MediaContainer extends React.Component<MediaContainerProps, MediaCo
|
|||||||
if (!this.state.remoteReady) {
|
if (!this.state.remoteReady) {
|
||||||
return <p>Waiting for remote.</p>
|
return <p>Waiting for remote.</p>
|
||||||
}
|
}
|
||||||
return (<video ref={el => {
|
return (
|
||||||
if (el && this.ms) {
|
<>
|
||||||
el.srcObject = this.ms
|
<p id="loading-text">Waiting for video to load.</p>
|
||||||
}
|
<video ref={el => {
|
||||||
}} id="video" autoPlay muted controls />)
|
if (el && this.ms) {
|
||||||
|
el.srcObject = this.ms
|
||||||
|
el.hidden = true
|
||||||
|
el.addEventListener('loadeddata', () => {
|
||||||
|
const t = document.getElementById("loading-text")
|
||||||
|
el.hidden = false
|
||||||
|
if (t) {
|
||||||
|
t.hidden = true
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}} id="video" autoPlay muted controls />
|
||||||
|
</>
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
Loading…
Reference in New Issue
Block a user