2016-11-22 21:19:08 +01:00
import React from 'react' ;
import lbry from '../lbry.js' ;
2016-12-08 00:07:28 +01:00
import lighthouse from '../lighthouse.js' ;
import { CreditAmount , Thumbnail } from '../component/common.js' ;
2017-01-13 03:03:34 +01:00
import { FileActions } from '../component/file-actions.js' ;
import { Link } from '../component/link.js' ;
2016-11-22 21:19:08 +01:00
2016-08-08 06:47:48 +02:00
var formatItemImgStyle = {
2016-07-16 04:58:24 +02:00
maxWidth : '100%' ,
maxHeight : '100%' ,
display : 'block' ,
marginLeft : 'auto' ,
marginRight : 'auto' ,
marginTop : '5px' ,
} ;
var FormatItem = React . createClass ( {
propTypes : {
2016-07-30 09:47:31 +02:00
claimInfo : React . PropTypes . object ,
2016-12-08 00:45:18 +01:00
cost : React . PropTypes . number ,
2016-07-30 09:47:31 +02:00
name : React . PropTypes . string ,
2016-12-08 00:45:18 +01:00
costIncludesData : React . PropTypes . bool ,
2016-07-16 04:58:24 +02:00
} ,
render : function ( ) {
2016-07-30 09:47:31 +02:00
var claimInfo = this . props . claimInfo ;
var thumbnail = claimInfo . thumbnail ;
var title = claimInfo . title ;
var description = claimInfo . description ;
var author = claimInfo . author ;
var language = claimInfo . language ;
var license = claimInfo . license ;
2016-08-27 08:37:35 +02:00
var fileContentType = ( claimInfo . content _type || claimInfo [ 'content-type' ] ) ;
2016-09-02 10:51:22 +02:00
var mediaType = lbry . getMediaType ( fileContentType ) ;
2016-12-08 00:45:18 +01:00
var costIncludesData = this . props . costIncludesData ;
var cost = this . props . cost || 0.0 ;
2016-07-16 19:14:06 +02:00
2016-07-16 04:58:24 +02:00
return (
2016-08-08 06:47:48 +02:00
< div className = "row-fluid" >
2016-07-16 04:58:24 +02:00
< div className = "span4" >
2016-11-11 13:57:01 +01:00
< Thumbnail src = { thumbnail } alt = { 'Photo for ' + title } style = { formatItemImgStyle } / >
2016-07-16 04:58:24 +02:00
< / d i v >
< div className = "span8" >
2016-08-08 06:47:48 +02:00
< p > { description } < / p >
2016-08-27 00:06:22 +02:00
< section >
< table className = "table-standard" >
< tbody >
< tr >
< td > Content - Type < / t d > < t d > { f i l e C o n t e n t T y p e } < / t d >
< / t r >
< tr >
2016-12-08 00:45:18 +01:00
< td > Cost < /td><td><CreditAmount amount={cost} isEstimate={!costIncludesData}/ > < / t d >
2016-08-27 00:06:22 +02:00
< / t r >
< tr >
< td > Author < / t d > < t d > { a u t h o r } < / t d >
< / t r >
< tr >
< td > Language < / t d > < t d > { l a n g u a g e } < / t d >
< / t r >
< tr >
< td > License < / t d > < t d > { l i c e n s e } < / t d >
< / t r >
< / t b o d y >
< / t a b l e >
< / s e c t i o n >
2017-01-30 09:46:37 +01:00
< FileActions streamName = { this . props . name } sdHash = { claimInfo . sources . lbry _sd _hash } metadata = { claimInfo } / >
2016-11-02 17:13:20 +01:00
< section >
< Link href = "https://lbry.io/dmca" label = "report" className = "button-text-help" / >
< / s e c t i o n >
2016-07-16 04:58:24 +02:00
< / d i v >
< / d i v >
) ;
}
} ) ;
var FormatsSection = React . createClass ( {
propTypes : {
2016-07-30 09:47:31 +02:00
claimInfo : React . PropTypes . object ,
2016-12-08 00:45:18 +01:00
cost : React . PropTypes . number ,
2016-07-16 04:58:24 +02:00
name : React . PropTypes . string ,
2016-12-08 00:45:18 +01:00
costIncludesData : React . PropTypes . bool ,
2016-07-16 04:58:24 +02:00
} ,
render : function ( ) {
2016-07-16 19:14:06 +02:00
var name = this . props . name ;
2016-07-30 09:47:31 +02:00
var format = this . props . claimInfo ;
2016-07-16 19:14:06 +02:00
var title = format . title ;
2016-07-16 04:58:24 +02:00
2016-07-16 19:14:06 +02:00
if ( format == null )
{
return (
< div >
2016-08-08 06:47:48 +02:00
< h2 > Sorry , no results found for "{name}" . < / h 2 >
2016-07-16 19:14:06 +02:00
< / d i v > ) ;
}
2016-07-16 04:58:24 +02:00
return (
2016-07-16 07:19:40 +02:00
< div >
2016-08-08 06:47:48 +02:00
< div className = "meta" > lbry : //{name}</div>
< h2 > { title } < / h 2 >
2016-07-16 07:19:40 +02:00
{ / * I n f u t u r e , a n t i c i p a t e m u l t i p l e f o r m a t s , j u s t a g u e s s a t w h a t i t c o u l d l o o k l i k e
2016-07-30 09:47:31 +02:00
// var formats = this.props.claimInfo.formats
2016-07-16 07:19:40 +02:00
// return (<tbody>{formats.map(function(format,i){ */}
2016-12-08 00:45:18 +01:00
< FormatItem claimInfo = { format } cost = { this . props . cost } name = { this . props . name } costIncludesData = { this . props . costIncludesData } / >
2016-07-16 07:19:40 +02:00
{ /* })}</tbody>); */ }
< / d i v > ) ;
2016-07-16 04:58:24 +02:00
}
} ) ;
var DetailPage = React . createClass ( {
propTypes : {
name : React . PropTypes . string ,
} ,
2016-07-16 19:14:06 +02:00
getInitialState : function ( ) {
return {
2016-12-08 00:45:18 +01:00
metadata : null ,
cost : null ,
2016-12-08 01:38:52 +01:00
costIncludesData : null ,
nameLookupComplete : null ,
2016-07-16 19:14:06 +02:00
} ;
} ,
componentWillMount : function ( ) {
2016-08-08 06:47:48 +02:00
document . title = 'lbry://' + this . props . name ;
2016-12-08 01:38:52 +01:00
lbry . resolveName ( this . props . name , ( metadata ) => {
this . setState ( {
metadata : metadata ,
nameLookupComplete : true ,
} ) ;
} ) ;
2016-09-02 08:49:50 +02:00
2016-12-08 01:38:52 +01:00
lbry . getCostInfoForName ( this . props . name , ( { cost , includesData } ) => {
this . setState ( {
cost : cost ,
costIncludesData : includesData ,
} ) ;
2016-07-16 19:14:06 +02:00
} ) ;
} ,
2016-07-16 04:58:24 +02:00
render : function ( ) {
2016-12-08 00:45:18 +01:00
if ( this . state . metadata == null ) {
2016-07-16 19:14:06 +02:00
return null ;
}
2016-12-14 19:27:04 +01:00
const name = this . props . name ;
const costIncludesData = this . state . costIncludesData ;
const metadata = this . state . metadata ;
const cost = this . state . cost ;
2016-07-16 19:14:06 +02:00
2016-07-16 04:58:24 +02:00
return (
2016-08-08 06:47:48 +02:00
< main >
< section className = "card" >
2016-12-08 01:38:52 +01:00
{ this . state . nameLookupComplete ? (
2016-12-08 00:45:18 +01:00
< FormatsSection name = { name } claimInfo = { metadata } cost = { cost } costIncludesData = { costIncludesData } / >
2016-09-02 08:49:50 +02:00
) : (
< div >
< h2 > No content < / h 2 >
There is no content available at the name < strong > lbry : //{this.props.name}</strong>. If you reached this page from a link within the LBRY interface, please <Link href="/?report" label="report a bug" />. Thanks!
< / d i v >
) }
2016-08-08 06:47:48 +02:00
< / s e c t i o n >
2016-07-16 04:58:24 +02:00
< / m a i n > ) ;
}
2016-11-22 21:19:08 +01:00
} ) ;
export default DetailPage ;