var formatItemImgStyle = {
maxWidth: '100%',
maxHeight: '100%',
display: 'block',
marginLeft: 'auto',
marginRight: 'auto',
marginTop: '5px',
};
var FormatItem = React.createClass({
propTypes: {
claimInfo: React.PropTypes.object,
amount: React.PropTypes.number,
name: React.PropTypes.string,
},
render: function() {
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;
var fileContentType = claimInfo['content-type'];
var amount = this.props.amount || 0.0;
return (
{description}
Content-Type | {fileContentType} |
Cost | |
Author | {author} |
Language | {language} |
License | {license} |
);
}
});
var FormatsSection = React.createClass({
propTypes: {
claimInfo: React.PropTypes.object,
amount: React.PropTypes.number,
name: React.PropTypes.string,
},
render: function() {
var name = this.props.name;
var format = this.props.claimInfo;
var title = format.title;
if(format == null)
{
return (
Sorry, no results found for "{name}".
);
}
return (
lbry://{name}
{title}
{/* In future, anticipate multiple formats, just a guess at what it could look like
// var formats = this.props.claimInfo.formats
// return (
{formats.map(function(format,i){ */}
{/* })}); */}
);
}
});
var DetailPage = React.createClass({
propTypes: {
name: React.PropTypes.string,
},
getInitialState: function() {
return {
claimInfo: null,
amount: null,
searching: true,
};
},
componentWillMount: function() {
document.title = 'lbry://' + this.props.name;
lbry.search(this.props.name, (results) => {
var result = results[0];
this.setState({
amount: result.amount,
claimInfo: result.value,
searching: false,
});
});
},
render: function() {
if (this.state.claimInfo == null && this.state.searching) {
// Still waiting for metadata
return null;
}
var name = this.props.name;
var claimInfo = this.state.claimInfo;
var amount = this.state.amount;
return (
);
}
});