lbry-desktop/js/page/home.js

351 lines
9.4 KiB
JavaScript
Raw Normal View History

var searchInputStyle = {
width: '400px',
2016-04-10 02:00:56 +02:00
display: 'block',
marginBottom: '48px',
marginLeft: 'auto',
marginRight: 'auto'
2016-04-10 02:00:56 +02:00
},
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="?publish" />
2016-04-10 02:00:56 +02:00
</section>
);
}
});
var SearchResults = React.createClass({
render: function() {
var rows = [];
this.props.results.forEach(function(result) {
rows.push(
2016-08-07 17:27:00 +02:00
<SearchResultRow key={result.name} name={result.name} title={result.title} imgUrl={result.thumbnail}
2016-04-10 02:00:56 +02:00
description={result.description} cost_est={result.cost_est} />
);
});
return (
<section>{rows}</section>
);
}
});
var
searchRowImgStyle = {
maxWidth: '100%',
maxHeight: '250px',
2016-04-10 02:00:56 +02:00
display: 'block',
marginLeft: 'auto',
marginRight: 'auto',
float: 'left'
},
searchRowTitleStyle = {
fontWeight: 'bold'
},
2016-04-10 02:00:56 +02:00
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({
getInitialState: function() {
return {
downloading: false
}
},
2016-04-10 02:00:56 +02:00
render: function() {
return (
<section className="row-fluid">
2016-04-10 02:00:56 +02:00
<div className="span3">
2016-04-25 12:58:40 +02:00
<img src={this.props.imgUrl} alt={'Photo for ' + (this.props.title || this.props.name)} style={searchRowImgStyle} />
2016-04-10 02:00:56 +02:00
</div>
<div className="span9">
<span style={searchRowCostStyle}>
<CreditAmount amount={this.props.cost_est} isEstimate={true}/>
</span>
2016-07-18 18:22:45 +02:00
<h2 style={searchRowTitleStyle}><a href={'/?show=' + this.props.name}>{this.props.title}</a></h2>
<div style={searchRowNameStyle}>lbry://{this.props.name}</div>
2016-08-08 11:40:47 +02:00
<p style={searchRowDescriptionStyle}><TruncatedText>{this.props.description}</TruncatedText></p>
2016-04-10 02:00:56 +02:00
<div>
<WatchLink streamName={this.props.name} button="primary" />
{ ' ' }
<DownloadLink streamName={this.props.name} button="alt" />
2016-04-10 02:00:56 +02:00
</div>
</div>
</section>
2016-04-10 02:00:56 +02:00
);
}
});
var featuredContentItemStyle = {
fontSize: '0.95em',
2016-07-05 07:39:53 +02:00
marginTop: '10px',
maxHeight: '220px'
}, featuredContentItemImgStyle = {
maxWidth: '100%',
maxHeight: '100%',
display: 'block',
marginLeft: 'auto',
marginRight: 'auto',
marginTop: '5px',
}, featuredContentHeaderStyle = {
fontWeight: 'bold',
marginBottom: '5px'
}, featuredContentSubheaderStyle = {
marginBottom: '10px',
fontSize: '0.9em'
}, featuredContentItemDescriptionStyle = {
color: '#444',
marginBottom: '5px',
fontSize: '0.9em',
}, featuredContentItemCostStyle = {
float: 'right'
};
var FeaturedContentItem = React.createClass({
_maxDescriptionLength: 250,
propTypes: {
name: React.PropTypes.string,
},
getInitialState: function() {
return {
metadata: null,
title: null,
2016-07-05 03:55:58 +02:00
amount: 0.0,
};
},
componentWillMount: function() {
lbry.resolveName(this.props.name, (metadata) => {
this.setState({
metadata: metadata,
2016-08-07 17:27:00 +02:00
title: metadata && metadata.title ? metadata.title : ('lbry://' + this.props.name),
})
});
lbry.getCostEstimate(this.props.name, (amount) => {
2016-07-05 03:55:58 +02:00
this.setState({
amount: amount,
2016-07-05 03:55:58 +02:00
});
});
},
render: function() {
if (this.state.metadata == null) {
// Still waiting for metadata
return null;
}
var metadata = this.state.metadata;
2016-07-05 07:39:53 +02:00
if ('narrow' in this.props) {
// Workaround -- narrow thumbnails look a bit funky without some extra left margin.
// Find a way to do this in CSS.
var thumbStyle = Object.assign({}, featuredContentItemImgStyle, {
position: 'relative',
maxHeight: '102px',
left: '13px',
});
} else {
var thumbStyle = featuredContentItemImgStyle;
}
return (
<div className="row-fluid" style={featuredContentItemStyle}>
<div className="span4">
2016-07-05 07:39:53 +02:00
<img src={metadata.thumbnail} alt={'Photo for ' + this.state.title} style={thumbStyle} />
</div>
<div className="span8">
<h4 style={featuredContentHeaderStyle}><a href={'/?show=' + this.props.name}>{this.state.title}</a></h4>
<div style={featuredContentSubheaderStyle}>
<div style={featuredContentItemCostStyle}><CreditAmount amount={this.state.amount} isEstimate={true}/></div>
<WatchLink streamName={this.props.name} />
&nbsp;&nbsp;&nbsp;
<DownloadLink streamName={this.props.name} />
</div>
<p style={featuredContentItemDescriptionStyle}><TruncatedText>{metadata.description}</TruncatedText></p>
</div>
</div>);
}
});
var featuredContentStyle = {
width: '100%',
2016-07-05 07:39:53 +02:00
marginTop: '-8px',
}, featuredContentLegendStyle = {
fontSize: '12px',
color: '#aaa',
verticalAlign: '15%',
};
var FeaturedContent = React.createClass({
render: function() {
return (<section style={featuredContentStyle}>
<div className="row-fluid">
<div className="span6">
<h3>Featured Content</h3>
</div>
<div className="span6">
<h3>Community Content <ToolTipLink style={featuredContentLegendStyle} label="What's this?"
tooltip='Community Content is a public space where anyone can share content with the rest of the LBRY community. Bid on the names "one," "two," "three" and "four" to put your content here!' /></h3>
</div>
</div>
<div className="row-fluid">
2016-07-05 03:55:58 +02:00
<div className="span6">
<FeaturedContentItem name="what" />
</div>
<div className="span6">
2016-07-27 12:24:10 +02:00
<FeaturedContentItem name="one" />
</div>
</div>
<div className="row-fluid">
<div className="span6">
2016-07-27 12:24:10 +02:00
<FeaturedContentItem name="itsadisaster" narrow />
</div>
<div className="span6">
<FeaturedContentItem name="two" />
</div>
</div>
<div className="row-fluid">
<div className="span6">
<FeaturedContentItem name="keynesvhayek" />
</div>
<div className="span6">
<FeaturedContentItem name="three" />
</div>
</div>
<div className="row-fluid">
<div className="span6">
2016-07-05 03:55:58 +02:00
<FeaturedContentItem name="meetlbry1" />
</div>
<div className="span6">
<FeaturedContentItem name="four" />
</div>
</div>
</section>);
}
});
2016-04-10 02:00:56 +02:00
var discoverMainStyle = {
color: '#333'
};
var Discover = React.createClass({
userTypingTimer: null,
getInitialState: function() {
return {
results: [],
searching: false,
query: ''
};
},
search: function() {
if (this.state.query)
{
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() {
return (
<main style={discoverMainStyle}>
<section><input type="search" style={searchInputStyle} onChange={this.onQueryChange}
placeholder="Find movies, music, games, and more"/></section>
2016-04-10 02:00:56 +02:00
{ this.state.searching ? <SearchActive /> : null }
{ !this.state.searching && this.state.query && this.state.results.length ? <SearchResults results={this.state.results} /> : null }
{ !this.state.searching && this.state.query && !this.state.results.length ? <SearchNoResults query={this.state.query} /> : null }
2016-07-05 03:55:58 +02:00
{ !this.state.query && !this.state.searching ? <FeaturedContent /> : null }
2016-04-10 02:00:56 +02:00
</main>
);
}
});
var HomePage = React.createClass({
componentDidMount: function() {
2016-08-07 23:05:04 +02:00
document.title = "Discover";
lbry.getStartNotice(function(notice) {
if (notice) {
alert(notice);
}
});
},
2016-04-10 02:00:56 +02:00
render: function() {
return (
<Discover />
2016-04-10 02:00:56 +02:00
);
}
});