Add Back button to Watch page
This commit is contained in:
parent
a24c6ed281
commit
7f2358fdbb
3 changed files with 70 additions and 4 deletions
|
@ -1,4 +1,6 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
|
import {Icon} from '../component/common.js';
|
||||||
|
import {Link} from '../component/link.js';
|
||||||
import lbry from '../lbry.js';
|
import lbry from '../lbry.js';
|
||||||
import LoadScreen from '../component/load_screen.js'
|
import LoadScreen from '../component/load_screen.js'
|
||||||
|
|
||||||
|
@ -22,6 +24,9 @@ var WatchPage = React.createClass({
|
||||||
lbry.getStream(this.props.name);
|
lbry.getStream(this.props.name);
|
||||||
this.updateLoadStatus();
|
this.updateLoadStatus();
|
||||||
},
|
},
|
||||||
|
handleBackClicked: function() {
|
||||||
|
history.back();
|
||||||
|
},
|
||||||
updateLoadStatus: function() {
|
updateLoadStatus: function() {
|
||||||
lbry.getFileStatus(this.props.name, (status) => {
|
lbry.getFileStatus(this.props.name, (status) => {
|
||||||
if (!status || !['running', 'stopped'].includes(status.code) || status.written_bytes == 0) {
|
if (!status || !['running', 'stopped'].includes(status.code) || status.written_bytes == 0) {
|
||||||
|
@ -56,9 +61,19 @@ var WatchPage = React.createClass({
|
||||||
return (
|
return (
|
||||||
!this.state.readyToPlay
|
!this.state.readyToPlay
|
||||||
? <LoadScreen message={'Loading video...'} details={this.state.loadStatusMessage} />
|
? <LoadScreen message={'Loading video...'} details={this.state.loadStatusMessage} />
|
||||||
: <main className="full-screen">
|
: <main className="video full-screen">
|
||||||
<video controls width="100%" height="100%" id="video" ref="video">
|
<video controls width="100%" height="100%" id="video" ref="video"></video>
|
||||||
</video>
|
<div className="video__overlay">
|
||||||
|
<div className="video__back">
|
||||||
|
<Link icon="icon-arrow-circle-o-left" className="video__back-link" onClick={this.handleBackClicked}/>
|
||||||
|
<div className="video__back-label">
|
||||||
|
<Icon icon="icon-caret-left" className="video__back-label-arrow" />
|
||||||
|
<div className="video__back-label-content">
|
||||||
|
Back to LBRY
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,4 +10,5 @@
|
||||||
@import "component/_menu.scss";
|
@import "component/_menu.scss";
|
||||||
@import "component/_tooltip.scss";
|
@import "component/_tooltip.scss";
|
||||||
@import "component/_load-screen.scss";
|
@import "component/_load-screen.scss";
|
||||||
@import "page/_developer.scss";
|
@import "page/_developer.scss";
|
||||||
|
@import "page/_watch.scss";
|
50
scss/page/_watch.scss
Normal file
50
scss/page/_watch.scss
Normal file
|
@ -0,0 +1,50 @@
|
||||||
|
.video {
|
||||||
|
background: #000;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
bottom: 0px;
|
||||||
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
|
color: #fff;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back {
|
||||||
|
margin-top: 30px;
|
||||||
|
margin-left: 50px;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back-link {
|
||||||
|
font-size: 50px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back-label {
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 100ms ease-in;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back-link:hover + .video__back-label {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back-label-arrow {
|
||||||
|
color: darken($color-primary, 5%);
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.video__back-label-content {
|
||||||
|
display: inline-block;
|
||||||
|
margin-left: -2px;
|
||||||
|
font-size: 20px;
|
||||||
|
padding: 10px;
|
||||||
|
border-radius: 3px;
|
||||||
|
background-color: darken($color-primary, 5%);
|
||||||
|
color: #fff;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
Loading…
Reference in a new issue