2016-03-14 23:05:24 +01:00
|
|
|
//component/icon.js
|
|
|
|
|
|
|
|
var Icon = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var className = 'icon ' + this.props.icon;
|
|
|
|
return <span className={className}></span>
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//component/link.js
|
|
|
|
|
|
|
|
var Link = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
console.log(this.props);
|
|
|
|
var href = this.props.href ? this.props.href : 'javascript:;',
|
|
|
|
icon = this.props.icon ? <Icon icon={this.props.icon} /> : '',
|
2016-03-25 08:31:20 +01:00
|
|
|
className = (this.props.button ? 'button-block button-' + this.props.button : 'button-text') +
|
|
|
|
(this.props.fadeIn ? ' fade-in-link' : '');
|
2016-03-14 23:05:24 +01:00
|
|
|
return (
|
2016-03-27 07:22:07 +02:00
|
|
|
<a className={className} href={href} style={this.props.style ? this.props.style : {}}>
|
2016-03-14 23:05:24 +01:00
|
|
|
{this.props.icon ? icon : '' }
|
|
|
|
{this.props.label}
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//component/splash.js
|
|
|
|
var splashStyle = {
|
|
|
|
color: 'white',
|
|
|
|
backgroundImage: 'url(' + lbry.imagePath('lbry-bg.png') + ')',
|
|
|
|
backgroundSize: 'cover',
|
|
|
|
minHeight: '100vh',
|
|
|
|
minWidth: '100vw',
|
|
|
|
display: 'flex',
|
|
|
|
flexDirection: 'column',
|
|
|
|
alignItems: 'center',
|
|
|
|
justifyContent: 'center'
|
|
|
|
}, splashMessageStyle = {
|
|
|
|
marginTop: '24px'
|
|
|
|
};
|
|
|
|
|
|
|
|
var SplashScreen = React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
message: React.PropTypes.string,
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
var imgSrc = lbry.imagePath('lbry-white-485x160.png');
|
|
|
|
return (
|
|
|
|
<div className="splash-screen" style={splashStyle}>
|
|
|
|
<img src={imgSrc} alt="LBRY"/>
|
|
|
|
<div style={splashMessageStyle}>
|
|
|
|
<h3>
|
|
|
|
{this.props.message}
|
|
|
|
<span className="busy-indicator"></span>
|
|
|
|
</h3>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//component/credit-amount.js
|
|
|
|
var creditAmountStyle = {
|
|
|
|
color: '#216C2A',
|
|
|
|
fontWeight: 'bold',
|
|
|
|
fontSize: '0.8em'
|
|
|
|
}, estimateStyle = {
|
|
|
|
marginLeft : '5px',
|
|
|
|
color: '#aaa',
|
2016-03-25 08:31:20 +01:00
|
|
|
};
|
2016-03-14 23:05:24 +01:00
|
|
|
|
|
|
|
var CreditAmount = React.createClass({
|
|
|
|
propTypes: {
|
|
|
|
amount: React.PropTypes.number,
|
|
|
|
},
|
|
|
|
render: function() {
|
|
|
|
var formattedAmount = lbry.formatCredits(this.props.amount);
|
|
|
|
return (
|
2016-03-27 07:41:36 +02:00
|
|
|
<span className="credit-amount">
|
|
|
|
<span style={creditAmountStyle}>{formattedAmount}</span>
|
|
|
|
{ this.props.isEstimate ? <span style={estimateStyle}>(est)</span> : null }
|
2016-03-14 23:05:24 +01:00
|
|
|
</span>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//component/header.js
|
|
|
|
var logoStyle = {
|
|
|
|
padding: '48px 12px',
|
|
|
|
textAlign: 'center',
|
|
|
|
maxHeight: '80px',
|
|
|
|
},
|
|
|
|
balanceStyle = {
|
2016-03-27 07:41:36 +02:00
|
|
|
// float: 'right',
|
2016-03-14 23:05:24 +01:00
|
|
|
marginTop: '3px'
|
|
|
|
},
|
|
|
|
imgStyle = { //@TODO: remove this, img should be properly scaled once size is settled
|
|
|
|
height: '80px'
|
|
|
|
};
|
|
|
|
|
|
|
|
var Header = React.createClass({
|
2016-03-27 07:41:36 +02:00
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<header>
|
|
|
|
<TopBar />
|
|
|
|
<div style={logoStyle}>
|
|
|
|
<img src="./img/lbry-dark-1600x528.png" style={imgStyle}/>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
var topBarStyle = {
|
|
|
|
'float': 'right'
|
|
|
|
};
|
|
|
|
|
|
|
|
var TopBar = React.createClass({
|
2016-03-21 07:31:25 +01:00
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
balance: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
componentDidMount: function() {
|
|
|
|
lbry.getBalance(function(balance) {
|
|
|
|
this.setState({
|
|
|
|
balance: balance
|
|
|
|
});
|
|
|
|
}.bind(this));
|
|
|
|
},
|
2016-03-27 07:41:36 +02:00
|
|
|
|
2016-03-14 23:05:24 +01:00
|
|
|
render: function() {
|
|
|
|
return (
|
2016-03-27 07:41:36 +02:00
|
|
|
<span className='top-bar' style={topBarStyle}>
|
2016-03-27 07:50:27 +02:00
|
|
|
<span style={balanceStyle}>
|
|
|
|
<CreditAmount amount={this.state.balance}/>
|
|
|
|
</span>
|
|
|
|
<Menu />
|
2016-03-27 07:41:36 +02:00
|
|
|
</span>
|
2016-03-27 07:50:27 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var menuStyle = {
|
|
|
|
position: 'relative',
|
|
|
|
top: '3px',
|
|
|
|
marginLeft: '2px'
|
|
|
|
}, menuItemStyle = {
|
|
|
|
marginLeft: '3px'
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var Menu = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
2016-03-27 07:41:36 +02:00
|
|
|
<span className='menu' style={menuStyle}>
|
|
|
|
<Link href='#' icon="icon-gear" fadeIn={true} style={menuItemStyle} />
|
|
|
|
</span>
|
2016-03-27 07:50:27 +02:00
|
|
|
)
|
2016-03-14 23:05:24 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-03-27 07:41:36 +02:00
|
|
|
|
2016-03-14 23:05:24 +01:00
|
|
|
//component/discover.js
|
|
|
|
|
|
|
|
var searchInputStyle = {
|
|
|
|
width: '400px',
|
|
|
|
display: 'block',
|
|
|
|
marginBottom: '48px',
|
|
|
|
marginLeft: 'auto',
|
|
|
|
marginRight: 'auto'
|
|
|
|
},
|
|
|
|
fetchResultsStyle = {
|
|
|
|
color: '#888',
|
|
|
|
textAlign: 'center',
|
|
|
|
fontSize: '1.2em'
|
|
|
|
};
|
|
|
|
|
|
|
|
var SearchActive = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<section style={fetchResultsStyle}>
|
|
|
|
Looking up the Dewey Decimals
|
|
|
|
<span className="busy-indicator"></span>
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var searchNoResultsStyle = {
|
|
|
|
textAlign: 'center'
|
|
|
|
}, searchNoResultsMessageStyle = {
|
|
|
|
fontStyle: 'italic',
|
|
|
|
marginRight: '5px'
|
|
|
|
};
|
|
|
|
|
|
|
|
var SearchNoResults = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<section style={searchNoResultsStyle}>
|
|
|
|
<span style={searchNoResultsMessageStyle}>No one has checked anything in for {this.props.query} yet.</span>
|
|
|
|
<Link label="Be the first" href="javascript:alert('aww I do nothing')" />
|
|
|
|
</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var SearchResults = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var rows = [];
|
|
|
|
console.log('results');
|
2016-03-27 07:22:07 +02:00
|
|
|
console.log('made it here');
|
2016-03-14 23:05:24 +01:00
|
|
|
this.props.results.forEach(function(result) {
|
|
|
|
rows.push(
|
2016-03-27 07:23:37 +02:00
|
|
|
<SearchResultRow name={result.name} title={result.stream_name} imgUrl={result.thumbnail}
|
2016-03-14 23:05:24 +01:00
|
|
|
description={result.description} cost_est={result.cost_est} />
|
|
|
|
);
|
|
|
|
});
|
|
|
|
console.log(this.props.results);
|
|
|
|
console.log(rows);
|
|
|
|
console.log('done');
|
|
|
|
return (
|
|
|
|
<section>{rows}</section>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var searchRowImgStyle = {
|
2016-03-21 17:04:46 +01:00
|
|
|
maxHeight: '100px',
|
2016-03-14 23:05:24 +01:00
|
|
|
display: 'block',
|
|
|
|
marginLeft: 'auto',
|
|
|
|
marginRight: 'auto',
|
|
|
|
float: 'left'
|
|
|
|
},
|
|
|
|
searchRowCostStyle = {
|
|
|
|
float: 'right',
|
|
|
|
marginLeft: '20px',
|
|
|
|
marginTop: '5px',
|
|
|
|
display: 'inline-block'
|
|
|
|
},
|
|
|
|
searchRowNameStyle = {
|
|
|
|
fontSize: '0.9em',
|
|
|
|
color: '#666',
|
|
|
|
marginBottom: '24px',
|
|
|
|
clear: 'both'
|
|
|
|
},
|
|
|
|
searchRowDescriptionStyle = {
|
|
|
|
color : '#444',
|
|
|
|
marginBottom: '24px',
|
|
|
|
fontSize: '0.9em'
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var SearchResultRow = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var uri = 'lbry://' + this.props.name;
|
|
|
|
return (
|
|
|
|
<div className="row-fluid">
|
|
|
|
<div className="span3">
|
|
|
|
<img src={this.props.imgUrl} alt="Photo for {this.props.title}" style={searchRowImgStyle} />
|
|
|
|
</div>
|
|
|
|
<div className="span9">
|
|
|
|
<span style={searchRowCostStyle}>
|
|
|
|
<CreditAmount amount={this.props.cost_est} isEstimate={true}/>
|
|
|
|
</span>
|
|
|
|
<h2>{this.props.title}</h2>
|
|
|
|
<div style={searchRowNameStyle}>{uri}</div>
|
|
|
|
<p style={searchRowDescriptionStyle}>{this.props.description}</p>
|
|
|
|
<div>
|
|
|
|
<Link href={uri} label="Watch" icon="icon-play" button="primary" />
|
|
|
|
<Link href={uri} label="Download" icon="icon-download" button="alt" />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
var discoverMainStyle = {
|
|
|
|
color: '#333'
|
|
|
|
};
|
|
|
|
|
|
|
|
var Discover = React.createClass({
|
|
|
|
userTypingTimer: null,
|
|
|
|
|
|
|
|
getInitialState: function() {
|
|
|
|
return {
|
|
|
|
results: [],
|
|
|
|
searching: false,
|
|
|
|
query: ''
|
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
search: function() {
|
|
|
|
if (this.state.query)
|
|
|
|
{
|
|
|
|
console.log('search');
|
|
|
|
lbry.search(this.state.query, this.searchCallback.bind(this, this.state.query));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.setState({
|
|
|
|
searching: false,
|
|
|
|
results: []
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
searchCallback: function(originalQuery, results) {
|
|
|
|
if (this.state.searching) //could have canceled while results were pending, in which case nothing to do
|
|
|
|
{
|
|
|
|
this.setState({
|
|
|
|
results: results,
|
|
|
|
searching: this.state.query != originalQuery, //multiple searches can be out, we're only done if we receive one we actually care about
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
onQueryChange: function(event) {
|
|
|
|
if (this.userTypingTimer)
|
|
|
|
{
|
|
|
|
clearTimeout(this.userTypingTimer);
|
|
|
|
}
|
|
|
|
|
|
|
|
//@TODO: Switch to React.js timing
|
|
|
|
this.userTypingTimer = setTimeout(this.search, 800); // 800ms delay, tweak for faster/slower
|
|
|
|
|
|
|
|
this.setState({
|
|
|
|
searching: event.target.value.length > 0,
|
|
|
|
query: event.target.value
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
render: function() {
|
|
|
|
console.log(this.state);
|
|
|
|
return (
|
|
|
|
<main style={discoverMainStyle}>
|
|
|
|
<section><input type="search" style={searchInputStyle} onChange={this.onQueryChange}
|
|
|
|
placeholder="Find movies, music, games, and more"/></section>
|
|
|
|
{ this.state.searching ? <SearchActive /> : null }
|
2016-03-21 17:04:46 +01:00
|
|
|
{ !this.state.searching && this.state.results.length ? <SearchResults results={this.state.results} /> : null }
|
|
|
|
{ !this.state.searching && !this.state.results.length && this.state.query ? <SearchNoResults query={this.state.query} /> : null }
|
2016-03-14 23:05:24 +01:00
|
|
|
</main>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//component/home.js
|
|
|
|
|
|
|
|
var homeStyles = {
|
|
|
|
width: '800px',
|
|
|
|
marginLeft: 'auto',
|
|
|
|
marginRight: 'auto',
|
|
|
|
};
|
|
|
|
|
|
|
|
var Home = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<div style={homeStyles}>
|
|
|
|
<Header />
|
|
|
|
<Discover />
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
//main.js
|
|
|
|
var init = function() {
|
|
|
|
var canvas = document.getElementById('canvas');
|
|
|
|
|
|
|
|
ReactDOM.render(
|
|
|
|
<SplashScreen message="Connecting"/>,
|
|
|
|
canvas
|
|
|
|
);
|
|
|
|
|
|
|
|
lbry.connect(function() {
|
|
|
|
ReactDOM.render(<Home/>, canvas);
|
|
|
|
})
|
|
|
|
};
|
|
|
|
|
|
|
|
init();
|
|
|
|
|