May 2018
Intermediate to advanced
470 pages
13h 54m
English
In the PlayMedia component, we will check for data passed from the server and set the values to state so the media details are rendered in the view.
mern-mediastream/client/media/PlayMedia.js:
...render() { if (this.props.data && this.props.data[0] != null) { this.state.media = this.props.data[0] this.state.relatedMedia = [] }...}
This will produce server-generated markup with media data injected in the PlayMedia view.
Read now
Unlock full access