2016-11-22 14:19:08 -06:00
|
|
|
import React from 'react';
|
|
|
|
import lbry from '../lbry.js';
|
|
|
|
import MediaElementPlayer from 'mediaelement';
|
|
|
|
|
2016-04-21 05:51:27 -04:00
|
|
|
var WatchPage = React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
name: React.PropTypes.string,
|
|
|
|
},
|
2016-05-05 04:12:23 -04:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
2016-05-05 06:55:15 -04:00
|
|
|
downloadStarted: false,
|
2016-05-05 04:12:23 -04:00
|
|
|
readyToPlay: false,
|
|
|
|
loadStatusMessage: "Requesting stream",
|
2016-06-03 06:05:14 -04:00
|
|
|
mimeType: null,
|
2016-05-05 04:12:23 -04:00
|
|
|
};
|
|
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
|
|
lbry.getStream(this.props.name);
|
|
|
|
this.updateLoadStatus();
|
2016-05-05 08:10:19 -04:00
|
|
|
},
|
2016-05-05 04:12:23 -04:00
|
|
|
updateLoadStatus: function() {
|
|
|
|
lbry.getFileStatus(this.props.name, (status) => {
|
2016-05-05 06:55:15 -04: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 04:12:23 -04:00
|
|
|
setTimeout(() => { this.updateLoadStatus() }, 250);
|
|
|
|
} else {
|
|
|
|
this.setState({
|
2016-06-03 06:05:14 -04:00
|
|
|
readyToPlay: true,
|
|
|
|
mimeType: status.mime_type,
|
2016-05-13 07:46:39 -04:00
|
|
|
})
|
2016-06-06 04:51:29 -04:00
|
|
|
var player = new MediaElementPlayer(this.refs.player, {
|
2016-09-28 05:42:38 -04:00
|
|
|
mode: 'auto_plugin',
|
|
|
|
plugins: ['flash'],
|
2016-06-06 04:51:29 -04:00
|
|
|
setDimensions: false,
|
2016-06-03 06:05:14 -04:00
|
|
|
});
|
2016-05-05 04:12:23 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2016-04-21 05:51:27 -04:00
|
|
|
render: function() {
|
2016-05-05 06:55:15 -04:00
|
|
|
return (
|
2016-09-21 01:37:43 -04:00
|
|
|
!this.state.readyToPlay
|
2016-09-24 15:27:07 -04:00
|
|
|
? <LoadScreen message={'Loading video...'} details={this.state.loadStatusMessage} />
|
2016-09-21 01:37:43 -04:00
|
|
|
: <main className="full-screen">
|
|
|
|
<video ref="player" width="100%" height="100%">
|
2016-12-06 14:58:51 -05:00
|
|
|
<source type={(this.state.mimeType == 'audio/m4a' || this.state.mimeType == 'audio/mp4a-latm') ? 'video/mp4' : this.state.mimeType} src={lbry.webUiUri + '/view?name=' + this.props.name} />
|
2016-09-21 01:37:43 -04:00
|
|
|
</video>
|
|
|
|
</main>
|
2016-05-05 06:55:15 -04:00
|
|
|
);
|
2016-04-21 05:51:27 -04:00
|
|
|
}
|
|
|
|
});
|
2016-11-22 14:19:08 -06:00
|
|
|
|
|
|
|
export default WatchPage;
|