2016-07-30 10:29:13 +02:00
var searchInputStyle = {
width : '400px' ,
2016-04-10 02:00:56 +02:00
display : 'block' ,
marginBottom : '48px' ,
marginLeft : 'auto' ,
2016-07-30 10:29:13 +02:00
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 (
2016-08-08 04:48:45 +02:00
< div style = { fetchResultsStyle } >
2016-04-10 02:00:56 +02:00
Looking up the Dewey Decimals
< span className = "busy-indicator" > < / s p a n >
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 = [ ] ;
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 (
2016-08-08 04:48:45 +02:00
< div > { rows } < / d i v >
2016-04-10 02:00:56 +02:00
) ;
}
} ) ;
2016-07-14 03:46:26 +02:00
var
searchRowImgStyle = {
maxWidth : '100%' ,
maxHeight : '250px' ,
2016-04-10 02:00:56 +02:00
display : 'block' ,
marginLeft : 'auto' ,
marginRight : 'auto' ,
float : 'left'
} ,
2016-07-14 03:46:26 +02:00
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 ( {
2016-04-21 12:55:41 +02:00
getInitialState : function ( ) {
return {
downloading : false
}
} ,
2016-04-10 02:00:56 +02:00
render : function ( ) {
return (
2016-08-08 04:48:45 +02:00
< section className = "card" >
< div className = "row-fluid" >
< div className = "span3" >
< img src = { this . props . imgUrl } alt = { 'Photo for ' + ( this . props . title || this . props . name ) } style = { searchRowImgStyle } / >
< / d i v >
< div className = "span9" >
< span style = { searchRowCostStyle } >
< CreditAmount amount = { this . props . cost _est } isEstimate = { true } / >
< / s p a n >
< h2 style = { searchRowTitleStyle } > < a href = { '/?show=' + this . props . name } > { this . props . title } < / a > < / h 2 >
< div style = { searchRowNameStyle } > lbry : //{this.props.name}</div>
< p style = { searchRowDescriptionStyle } > < TruncatedText > { this . props . description } < / T r u n c a t e d T e x t > < / p >
< div >
< WatchLink streamName = { this . props . name } button = "primary" / >
{ ' ' }
< DownloadLink streamName = { this . props . name } button = "alt" / >
< / d i v >
2016-04-10 02:00:56 +02:00
< / d i v >
< / d i v >
2016-08-04 09:33:44 +02:00
< / s e c t i o n >
2016-04-10 02:00:56 +02:00
) ;
}
} ) ;
2016-05-16 15:20:32 +02:00
var featuredContentItemStyle = {
2016-08-08 04:48:45 +02:00
height : '120px' ,
overflowY : 'hidden'
2016-05-16 15:20:32 +02:00
} , featuredContentItemImgStyle = {
2016-07-14 03:46:26 +02:00
maxWidth : '100%' ,
2016-08-08 04:48:45 +02:00
maxHeight : '120px' ,
2016-05-16 15:20:32 +02:00
display : 'block' ,
marginLeft : 'auto' ,
2016-08-08 04:48:45 +02:00
marginRight : 'auto'
2016-07-14 03:46:26 +02:00
} , featuredContentHeaderStyle = {
fontWeight : 'bold' ,
marginBottom : '5px'
} , featuredContentSubheaderStyle = {
marginBottom : '10px' ,
fontSize : '0.9em'
2016-05-16 15:20:32 +02:00
} , featuredContentItemDescriptionStyle = {
color : '#444' ,
fontSize : '0.9em' ,
} , featuredContentItemCostStyle = {
2016-07-14 03:46:26 +02:00
float : 'right'
2016-05-16 15:20:32 +02:00
} ;
var FeaturedContentItem = React . createClass ( {
2016-07-27 12:25:26 +02:00
_maxDescriptionLength : 250 ,
2016-05-16 15:20:32 +02:00
propTypes : {
name : React . PropTypes . string ,
} ,
getInitialState : function ( ) {
return {
metadata : null ,
title : null ,
2016-07-05 03:55:58 +02:00
amount : 0.0 ,
2016-05-16 15:20:32 +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 ) ,
2016-05-16 15:20:32 +02:00
} )
} ) ;
2016-07-30 10:23:41 +02:00
lbry . getCostEstimate ( this . props . name , ( amount ) => {
2016-07-05 03:55:58 +02:00
this . setState ( {
2016-07-30 10:23:41 +02:00
amount : amount ,
2016-07-05 03:55:58 +02:00
} ) ;
} ) ;
2016-05-16 15:20:32 +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 ;
}
2016-05-20 12:01:17 +02:00
return (
2016-08-08 04:48:45 +02:00
< section className = "card" >
< div className = "row-fluid" style = { featuredContentItemStyle } >
< div className = "span4" >
< img src = { metadata . thumbnail } alt = { 'Photo for ' + this . state . title } style = { thumbStyle } / >
< / d i v >
< div className = "span8" >
< h4 style = { featuredContentHeaderStyle } > < a href = { '/?show=' + this . props . name } > { this . state . title } < / a > < / h 4 >
< div style = { featuredContentSubheaderStyle } >
< div style = { featuredContentItemCostStyle } > < CreditAmount amount = { this . state . amount } isEstimate = { true } / > < / d i v >
< WatchLink streamName = { this . props . name } / >
& nbsp ; & nbsp ; & nbsp ;
< DownloadLink streamName = { this . props . name } / >
< / d i v >
< p style = { featuredContentItemDescriptionStyle } > < TruncatedText > { metadata . description } < / T r u n c a t e d T e x t > < / p >
2016-05-20 12:01:17 +02:00
< / d i v >
< / d i v >
2016-08-08 04:48:45 +02:00
< / s e c t i o n > ) ;
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-08-08 04:48:45 +02:00
< FeaturedContentItem name = "what" / >
< FeaturedContentItem name = "itsadisaster" / >
< FeaturedContentItem name = "keynesvhayek" / >
< FeaturedContentItem name = "meetlbry1" / >
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?"
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!' / > < / 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" / >
< / 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 ( ) {
if ( this . props . query )
{
lbry . search ( this . props . query , this . searchCallback . bind ( this , this . props . query ) ) ;
}
} ,
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 04:48:45 +02:00
searching : this . props . query && this . props . query . length > 0
2016-04-10 02:00:56 +02:00
} ;
} ,
searchCallback : function ( originalQuery , results ) {
2016-08-08 04:48:45 +02:00
console . log ( 'search callback' ) ;
console . log ( this . state ) ;
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 04:48:45 +02:00
searching : this . props . query != originalQuery , //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-08 02:57:12 +02:00
} ) ;