lbry-desktop/js/page/discover.js

228 lines
6.1 KiB
JavaScript
Raw Normal View History

2016-08-08 06:47:48 +02:00
var fetchResultsStyle = {
2016-04-10 02:00:56 +02:00
color: '#888',
textAlign: 'center',
fontSize: '1.2em'
};
var SearchActive = React.createClass({
render: function() {
return (
<div style={fetchResultsStyle}>
2016-04-10 02:00:56 +02:00
Looking up the Dewey Decimals
<span className="busy-indicator"></span>
</div>
2016-04-10 02:00:56 +02:00
);
}
});
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 (
<div>{rows}</div>
2016-04-10 02:00:56 +02:00
);
}
});
var
2016-08-08 06:47:48 +02:00
searchRowStyle = {
2016-08-08 06:53:38 +02:00
height: (24 * 7) + 'px',
2016-08-08 06:47:48 +02:00
overflowY: 'hidden'
},
searchRowImgStyle = {
maxWidth: '100%',
2016-08-08 06:53:38 +02:00
maxHeight: (24 * 7) + 'px',
2016-04-10 02:00:56 +02:00
display: 'block',
marginLeft: 'auto',
2016-08-08 06:53:38 +02:00
marginRight: 'auto'
2016-04-10 02:00:56 +02:00
},
searchRowTitleStyle = {
fontWeight: 'bold'
},
2016-04-10 02:00:56 +02:00
searchRowCostStyle = {
float: 'right',
},
searchRowDescriptionStyle = {
color : '#444',
2016-08-08 06:47:48 +02:00
marginTop: '12px',
2016-04-10 02:00:56 +02:00
fontSize: '0.9em'
};
var SearchResultRow = React.createClass({
getInitialState: function() {
return {
downloading: false
}
},
2016-04-10 02:00:56 +02:00
render: function() {
return (
2016-08-08 06:47:48 +02:00
<section className="card">
2016-08-08 06:47:48 +02:00
<div className="row-fluid" style={searchRowStyle}>
<div className="span3">
<img src={this.props.imgUrl} alt={'Photo for ' + (this.props.title || this.props.name)} style={searchRowImgStyle} />
</div>
<div className="span9">
<span style={searchRowCostStyle}>
<CreditAmount amount={this.props.cost_est} isEstimate={true}/>
</span>
2016-08-08 06:47:48 +02:00
<div className="meta">lbry://{this.props.name}</div>
<h3 style={searchRowTitleStyle}><a href={'/?show=' + this.props.name}>{this.props.title}</a></h3>
<div>
<WatchLink streamName={this.props.name} button="primary" />
2016-08-08 06:47:48 +02:00
<DownloadLink streamName={this.props.name} button="text" />
</div>
2016-08-08 06:47:48 +02:00
<p style={searchRowDescriptionStyle}>{this.props.description}</p>
2016-04-10 02:00:56 +02:00
</div>
</div>
</section>
2016-04-10 02:00:56 +02:00
);
}
});
2016-08-08 06:47:48 +02:00
var FeaturedContentItem = React.createClass({
propTypes: {
name: React.PropTypes.string,
},
2016-08-08 06:47:48 +02:00
getInitialState: function() {
return {
metadata: null,
title: null,
2016-07-05 03:55:58 +02:00
amount: 0.0,
};
},
2016-08-08 06:47:48 +02:00
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
});
});
},
2016-08-08 06:47:48 +02:00
render: function() {
if (this.state.metadata == null) {
// Still waiting for metadata
return null;
}
2016-08-08 06:47:48 +02:00
return <SearchResultRow name={this.props.name} title={this.state.title} imgUrl={this.state.metadata.thumbnail}
description={this.state.metadata.description} cost_est={this.state.amount} />;
}
});
var featuredContentLegendStyle = {
fontSize: '12px',
color: '#aaa',
verticalAlign: '15%',
};
var FeaturedContent = React.createClass({
render: function() {
return (
<div className="row-fluid">
<div className="span6">
<h3>Featured Content</h3>
<FeaturedContentItem name="what" />
<FeaturedContentItem name="itsadisaster" />
<FeaturedContentItem name="keynesvhayek" />
<FeaturedContentItem name="meetlbry1" />
</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>
2016-07-27 12:24:10 +02:00
<FeaturedContentItem name="one" />
<FeaturedContentItem name="two" />
<FeaturedContentItem name="three" />
<FeaturedContentItem name="four" />
</div>
</div>
);
}
});
2016-04-10 02:00:56 +02:00
2016-08-08 02:57:12 +02:00
var DiscoverPage = React.createClass({
2016-04-10 02:00:56 +02:00
userTypingTimer: null,
componentDidUpdate: function() {
if (this.props.query != this.state.query)
{
this.setState({
searching: true,
query: this.props.query,
});
2016-08-08 06:47:48 +02:00
lbry.search(this.props.query, this.searchCallback);
}
},
2016-08-08 02:57:12 +02:00
componentDidMount: function() {
document.title = "Discover";
},
2016-04-10 02:00:56 +02:00
getInitialState: function() {
return {
results: [],
2016-08-08 06:47:48 +02:00
query: this.props.query,
searching: this.props.query && this.props.query.length > 0
2016-04-10 02:00:56 +02:00
};
},
2016-08-08 06:47:48 +02:00
searchCallback: function(results) {
console.log('results:', results)
console.log('search callback');
console.log(this.state);
2016-08-08 06:47:48 +02:00
console.log(this.props);
2016-04-10 02:00:56 +02:00
if (this.state.searching) //could have canceled while results were pending, in which case nothing to do
{
this.setState({
results: results,
2016-08-08 06:47:48 +02:00
searching: false //multiple searches can be out, we're only done if we receive one we actually care about
2016-04-10 02:00:56 +02:00
});
}
},
render: function() {
return (
2016-08-08 02:57:12 +02:00
<main>
2016-04-10 02:00:56 +02:00
{ this.state.searching ? <SearchActive /> : null }
{ !this.state.searching && this.props.query && this.state.results.length ? <SearchResults results={this.state.results} /> : null }
{ !this.state.searching && this.props.query && !this.state.results.length ? <SearchNoResults query={this.props.query} /> : null }
{ !this.props.query && !this.state.searching ? <FeaturedContent /> : null }
2016-04-10 02:00:56 +02:00
</main>
);
}
2016-08-08 02:57:12 +02:00
});