2016-11-22 21:19:08 +01:00
import React from 'react' ;
import lbry from '../lbry.js' ;
import lighthouse from '../lighthouse.js' ;
2016-12-23 07:57:01 +01:00
import FileTile from '../component/file-tile.js' ;
2016-11-22 21:19:08 +01:00
import { Link , ToolTipLink , DownloadLink , WatchLink } from '../component/link.js' ;
2016-12-30 13:40:07 +01:00
import { Thumbnail , CreditAmount , TruncatedText , BusyMessage } from '../component/common.js' ;
2016-11-22 21:19:08 +01:00
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 (
2016-08-08 04:48:45 +02:00
< div style = { fetchResultsStyle } >
2016-08-21 16:55:32 +02:00
< BusyMessage message = "Looking up the Dewey Decimals" / >
2016-08-08 04:48:45 +02:00
< / d i v >
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 . < / s p a n >
2016-08-03 11:55:53 +02:00
< Link label = "Be the first" href = "?publish" / >
2016-04-10 02:00:56 +02:00
< / s e c t i o n >
) ;
}
} ) ;
var SearchResults = React . createClass ( {
render : function ( ) {
var rows = [ ] ;
2017-01-06 12:37:59 +01:00
this . props . results . forEach ( function ( { name , sources , value } ) {
2016-08-22 22:56:52 +02:00
rows . push (
2017-01-06 12:37:59 +01:00
< FileTile key = { name } name = { name } sdHash = { sources . lbry _sd _hash } metadata = { value } / >
2016-08-22 22:56:52 +02:00
) ;
2016-04-10 02:00:56 +02:00
} ) ;
return (
2016-08-08 04:48:45 +02:00
< div > { rows } < / d i v >
2016-04-10 02:00:56 +02:00
) ;
}
} ) ;
2016-08-22 14:00:58 +02:00
var featuredContentItemContainerStyle = {
position : 'relative' ,
} ;
2016-07-27 12:25:26 +02:00
2016-08-08 06:47:48 +02:00
var FeaturedContentItem = React . createClass ( {
2016-08-22 22:56:52 +02:00
resolveSearch : false ,
2016-05-16 15:20:32 +02:00
propTypes : {
name : React . PropTypes . string ,
} ,
2016-08-08 06:47:48 +02:00
2016-05-16 15:20:32 +02:00
getInitialState : function ( ) {
return {
metadata : null ,
title : null ,
2016-12-09 10:27:31 +01:00
cost : null ,
2016-08-22 14:00:58 +02:00
overlayShowing : false ,
2016-05-16 15:20:32 +02:00
} ;
} ,
2016-08-08 06:47:48 +02:00
2016-08-22 22:56:52 +02:00
componentWillUnmount : function ( ) {
this . resolveSearch = false ;
2016-08-22 14:00:58 +02:00
} ,
2016-08-22 22:56:52 +02:00
componentDidMount : function ( ) {
2016-12-08 00:03:16 +01:00
this . _isMounted = true ;
2016-08-22 14:00:58 +02:00
2016-12-08 00:03:16 +01:00
lbry . resolveName ( this . props . name , ( metadata ) => {
if ( ! this . _isMounted ) {
return ;
2016-08-22 22:56:52 +02:00
}
2016-12-08 00:03:16 +01:00
this . setState ( {
metadata : metadata ,
title : metadata && metadata . title ? metadata . title : ( 'lbry://' + this . props . name ) ,
} ) ;
} ) ;
2016-05-16 15:20:32 +02:00
} ,
2016-08-08 06:47:48 +02:00
2016-05-16 15:20:32 +02:00
render : function ( ) {
2016-08-22 22:56:52 +02:00
if ( this . state . metadata === null ) {
// Still waiting for metadata, skip render
2016-05-16 15:20:32 +02:00
return null ;
}
2016-08-19 09:15:13 +02:00
2016-08-22 22:56:52 +02:00
return ( < div style = { featuredContentItemContainerStyle } >
2017-01-06 12:39:33 +01:00
< FileTile name = { this . props . name } metadata = { this . state . metadata } compact / >
2016-08-22 14:00:58 +02:00
< / d i v > ) ;
2016-05-16 15:20:32 +02:00
}
} ) ;
2016-08-08 04:48:45 +02:00
var featuredContentLegendStyle = {
2016-07-26 14:02:55 +02:00
fontSize : '12px' ,
color : '#aaa' ,
verticalAlign : '15%' ,
2016-05-16 15:20:32 +02:00
} ;
var FeaturedContent = React . createClass ( {
render : function ( ) {
2016-08-08 04:48:45 +02:00
return (
2016-07-26 14:02:55 +02:00
< div className = "row-fluid" >
< div className = "span6" >
< h3 > Featured Content < / h 3 >
2016-11-04 00:25:47 +01:00
< FeaturedContentItem name = "bellflower" / >
2016-08-08 04:48:45 +02:00
< FeaturedContentItem name = "itsadisaster" / >
2016-11-04 00:25:47 +01:00
< FeaturedContentItem name = "dopeman" / >
< FeaturedContentItem name = "smlawncare" / >
< FeaturedContentItem name = "cinemasix" / >
2016-08-26 14:07:46 +02:00
2016-07-26 14:02:55 +02:00
< / d i v >
< div className = "span6" >
2016-08-07 22:36:57 +02:00
< h3 > Community Content < ToolTipLink style = { featuredContentLegendStyle } label = "What's this?"
2016-08-26 14:07:46 +02:00
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," "four" and "five" to put your content here!' / > < / h 3 >
2016-07-27 12:24:10 +02:00
< FeaturedContentItem name = "one" / >
2016-07-26 14:02:55 +02:00
< FeaturedContentItem name = "two" / >
< FeaturedContentItem name = "three" / >
< FeaturedContentItem name = "four" / >
2016-08-26 14:07:46 +02:00
< FeaturedContentItem name = "five" / >
2016-07-26 14:02:55 +02:00
< / d i v >
2016-05-16 15:20:32 +02:00
< / d i v >
2016-08-08 04:48:45 +02:00
) ;
2016-05-16 15:20:32 +02:00
}
} ) ;
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 ,
2016-08-08 04:48:45 +02:00
componentDidUpdate : function ( ) {
2016-08-09 16:58:28 +02:00
if ( this . props . query != this . state . query )
2016-08-08 04:48:45 +02:00
{
2016-12-30 13:42:47 +01:00
this . handleSearchChanged ( this . props . query ) ;
}
} ,
componentWillReceiveProps : function ( nextProps , nextState ) {
if ( nextProps . query != nextState . query )
{
this . handleSearchChanged ( nextProps . query ) ;
2016-08-08 04:48:45 +02:00
}
} ,
2016-12-30 13:42:47 +01:00
handleSearchChanged : function ( query ) {
2016-08-22 15:14:56 +02:00
this . setState ( {
searching : true ,
2016-12-30 13:42:47 +01:00
query : query ,
2016-08-22 15:14:56 +02:00
} ) ;
2016-12-30 13:42:47 +01:00
lighthouse . search ( query , this . searchCallback ) ;
2016-08-22 15:14:56 +02:00
} ,
2016-12-30 13:42:47 +01:00
componentWillMount : function ( ) {
2016-08-08 02:57:12 +02:00
document . title = "Discover" ;
2016-09-29 09:43:18 +02:00
if ( this . props . query ) {
2016-08-22 15:14:56 +02:00
// Rendering with a query already typed
2017-01-04 17:51:58 +01:00
this . handleSearchChanged ( this . props . query ) ;
2016-08-22 15:14:56 +02:00
}
2016-08-08 02:57:12 +02:00
} ,
2016-04-10 02:00:56 +02:00
getInitialState : function ( ) {
return {
results : [ ] ,
2016-08-08 06:47:48 +02:00
query : this . props . query ,
2016-12-30 13:42:47 +01:00
searching : ( 'query' in this . props ) && ( this . props . query . length > 0 )
2016-04-10 02:00:56 +02:00
} ;
} ,
2016-08-08 06:47:48 +02:00
searchCallback : function ( results ) {
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 }
2016-08-08 04:48:45 +02:00
{ ! 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
< / m a i n >
) ;
}
2016-08-21 22:59:32 +02:00
} ) ;
2016-11-22 21:19:08 +01:00
export default DiscoverPage ;