2016-04-21 11:51:27 +02:00
|
|
|
var WatchPage = React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
name: React.PropTypes.string,
|
|
|
|
},
|
2016-05-05 10:12:23 +02:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-05-05 12:55:15 +02:00
|
|
|
downloadStarted: false,
|
2016-05-05 10:12:23 +02:00
|
|
|
readyToPlay: false,
|
|
|
|
loadStatusMessage: "Requesting stream",
|
2016-06-03 12:05:14 +02:00
|
|
|
mimeType: null,
|
2016-05-05 10:12:23 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
|
|
lbry.getStream(this.props.name);
|
|
|
|
this.updateLoadStatus();
|
2016-05-05 14:10:19 +02:00
|
|
|
},
|
2016-05-05 10:12:23 +02:00
|
|
|
updateLoadStatus: function() {
|
|
|
|
lbry.getFileStatus(this.props.name, (status) => {
|
2016-05-05 12:55:15 +02:00
|
|
|
if (!status || status.code != 'running' || status.written_bytes == 0) {
|
|
|
|
// Download hasn't started yet, so update status message (if available) then try again
|
|
|
|
if (status) {
|
|
|
|
this.setState({
|
|
|
|
loadStatusMessage: status.message
|
|
|
|
});
|
|
|
|
}
|
2016-05-05 10:12:23 +02:00
|
|
|
setTimeout(() => { this.updateLoadStatus() }, 250);
|
|
|
|
} else {
|
|
|
|
this.setState({
|
2016-06-03 12:05:14 +02:00
|
|
|
readyToPlay: true,
|
|
|
|
mimeType: status.mime_type,
|
2016-05-13 13:46:39 +02:00
|
|
|
})
|
2016-06-06 10:51:29 +02:00
|
|
|
var player = new MediaElementPlayer(this.refs.player, {
|
2016-06-03 12:05:14 +02:00
|
|
|
mode: 'shim', // Force Flash (for now)
|
2016-06-06 10:51:29 +02:00
|
|
|
setDimensions: false,
|
2016-06-03 12:05:14 +02:00
|
|
|
});
|
2016-05-05 10:12:23 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2016-04-21 11:51:27 +02:00
|
|
|
render: function() {
|
2016-05-05 12:55:15 +02:00
|
|
|
return (
|
2016-06-03 12:05:14 +02:00
|
|
|
<main className="page full-screen">
|
2016-05-05 12:55:15 +02:00
|
|
|
<div className={this.state.readyToPlay ? 'hidden' : ''}>
|
|
|
|
<h3>Loading lbry://{this.props.name}</h3>
|
|
|
|
{this.state.loadStatusMessage}...
|
|
|
|
</div>
|
2016-06-06 10:51:29 +02:00
|
|
|
<video ref="player" width="100%" height="100%">
|
2016-07-05 00:43:55 +02:00
|
|
|
<source type={(this.state.mimeType == 'audio/m4a' || this.state.mimeType == 'audio/mp4a-latm') ? 'video/mp4' : this.state.mimeType} src={'/view?name=' + this.props.name} />
|
2016-06-03 12:05:14 +02:00
|
|
|
</video>
|
2016-05-05 12:55:15 +02:00
|
|
|
</main>
|
|
|
|
);
|
2016-04-21 11:51:27 +02:00
|
|
|
}
|
|
|
|
});
|