lbry-desktop/ui/js/page/discover.js

195 lines
5.2 KiB
JavaScript
Raw Normal View History

2016-11-22 14:19:08 -06:00
import React from 'react';
import lbry from '../lbry.js';
2017-04-10 08:32:40 -04:00
import lbryio from '../lbryio.js';
2016-11-22 14:19:08 -06:00
import lighthouse from '../lighthouse.js';
2017-01-13 12:13:46 -05:00
import {FileTile} from '../component/file-tile.js';
2017-01-21 16:31:41 -05:00
import {Link} from '../component/link.js';
import {ToolTip} from '../component/tooltip.js';
import {BusyMessage} from '../component/common.js';
2016-11-22 14:19:08 -06:00
2016-08-08 00:47:48 -04:00
var fetchResultsStyle = {
2016-04-09 20:00:56 -04:00
color: '#888',
textAlign: 'center',
fontSize: '1.2em'
};
var SearchActive = React.createClass({
render: function() {
return (
<div style={fetchResultsStyle}>
<BusyMessage message="Looking up the Dewey Decimals" />
</div>
2016-04-09 20:00:56 -04: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-09 20:00:56 -04:00
</section>
);
}
});
var SearchResults = React.createClass({
render: function() {
2017-01-12 23:12:53 -05:00
var rows = [],
seenNames = {}; //fix this when the search API returns claim IDs
this.props.results.forEach(function({name, value}) {
2017-01-12 23:12:53 -05:00
if (!seenNames[name]) {
seenNames[name] = name;
rows.push(
<FileTile key={name} uri={name} sdHash={value.sources.lbry_sd_hash} />
2017-01-12 23:12:53 -05:00
);
}
2016-04-09 20:00:56 -04:00
});
return (
<div>{rows}</div>
2016-04-09 20:00:56 -04:00
);
}
});
2017-04-10 08:32:40 -04:00
const communityCategoryToolTipText = ('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," "four" and ' +
'"five" to put your content here!');
var FeaturedCategory = React.createClass({
render: function() {
2017-04-11 22:01:45 -04:00
return (<div className="card-row card-row--small">
2017-04-10 08:32:40 -04:00
{ this.props.category ?
<h3 className="card-row__header">{this.props.category}
{ this.props.category == "community" ?
<ToolTip label="What's this?" body={communityCategoryToolTipText} className="tooltip--header"/>
: '' }</h3>
: '' }
2017-04-10 10:09:48 -04:00
{ this.props.names.map((name) => { return <FileTile key={name} displayStyle="card" uri={name} /> }) }
2017-04-10 08:32:40 -04:00
</div>)
}
})
var FeaturedContent = React.createClass({
2017-02-09 15:53:19 -05:00
getInitialState: function() {
return {
2017-04-11 22:01:45 -04:00
featuredUris: {},
2017-02-09 15:53:19 -05:00
};
},
componentWillMount: function() {
2017-04-11 22:01:45 -04:00
lbryio.call('discover', 'list', { version: "early-access" } ).then(({Categories, Uris}) => {
let featuredUris = {}
Categories.forEach((category) => {
if (Uris[category] && Uris[category].length) {
featuredUris[category] = Uris[category]
}
})
this.setState({ featuredUris: featuredUris });
2017-02-09 15:53:19 -05:00
});
},
render: function() {
return (
2017-04-10 08:32:40 -04:00
<div>
{
2017-04-11 22:01:45 -04:00
Object.keys(this.state.featuredUris).map(function(category) {
return this.state.featuredUris[category].length ?
<FeaturedCategory key={category} category={category} names={this.state.featuredUris[category]} /> :
'';
2017-04-10 08:32:40 -04:00
}.bind(this))
}
</div>
);
}
});
2016-04-09 20:00:56 -04:00
2016-08-07 20:57:12 -04:00
var DiscoverPage = React.createClass({
2016-04-09 20:00:56 -04:00
userTypingTimer: null,
2017-04-01 02:51:15 -04:00
propTypes: {
showWelcome: React.PropTypes.bool.isRequired,
},
componentDidUpdate: function() {
if (this.props.query != this.state.query)
{
this.handleSearchChanged(this.props.query);
}
},
2017-04-01 02:51:15 -04:00
getDefaultProps: function() {
return {
showWelcome: false,
}
},
componentWillReceiveProps: function(nextProps, nextState) {
if (nextProps.query != nextState.query)
{
this.handleSearchChanged(nextProps.query);
}
},
handleSearchChanged: function(query) {
this.setState({
searching: true,
query: query,
});
lighthouse.search(query).then(this.searchCallback);
},
2017-04-01 02:51:15 -04:00
handleWelcomeDone: function() {
this.setState({
welcomeComplete: true,
});
},
componentWillMount: function() {
2016-08-07 20:57:12 -04:00
document.title = "Discover";
2017-04-01 02:54:56 -04:00
if (this.props.query) {
// Rendering with a query already typed
this.handleSearchChanged(this.props.query);
}
2016-08-07 20:57:12 -04:00
},
2016-04-09 20:00:56 -04:00
getInitialState: function() {
return {
2017-04-01 02:51:15 -04:00
welcomeComplete: false,
2016-04-09 20:00:56 -04:00
results: [],
2016-08-08 00:47:48 -04:00
query: this.props.query,
searching: ('query' in this.props) && (this.props.query.length > 0)
2016-04-09 20:00:56 -04:00
};
},
2016-08-08 00:47:48 -04:00
searchCallback: function(results) {
2016-04-09 20:00:56 -04: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 00:47:48 -04:00
searching: false //multiple searches can be out, we're only done if we receive one we actually care about
2016-04-09 20:00:56 -04:00
});
}
},
render: function() {
return (
2016-08-07 20:57:12 -04:00
<main>
2016-04-09 20:00:56 -04: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 }
2017-04-10 08:32:40 -04:00
{ !this.props.query && !this.state.searching ? <FeaturedContent /> : null }
2016-04-09 20:00:56 -04:00
</main>
);
}
2016-08-21 15:59:32 -05:00
});
2016-11-22 14:19:08 -06:00
export default DiscoverPage;