2018-01-30 18:00:02 +01:00
|
|
|
import React from 'react';
|
|
|
|
|
2018-02-01 01:43:15 +01:00
|
|
|
class AssetInfo extends React.Component {
|
|
|
|
constructor (props) {
|
|
|
|
super(props);
|
2018-02-01 06:08:28 +01:00
|
|
|
this.state = {
|
|
|
|
showDetails: false,
|
|
|
|
}
|
|
|
|
this.toggleDetails = this.toggleDetails.bind(this);
|
2018-02-01 01:43:15 +01:00
|
|
|
this.copyToClipboard = this.copyToClipboard.bind(this);
|
|
|
|
}
|
2018-02-01 06:08:28 +01:00
|
|
|
toggleDetails () {
|
|
|
|
if (this.state.showDetails) {
|
|
|
|
return this.setState({showDetails: false});
|
2018-02-01 01:43:15 +01:00
|
|
|
}
|
2018-02-01 06:08:28 +01:00
|
|
|
this.setState({showDetails: true});
|
2018-02-01 01:43:15 +01:00
|
|
|
}
|
|
|
|
copyToClipboard (event) {
|
|
|
|
var elementToCopy = event.target.dataset.elementtocopy;
|
|
|
|
var element = document.getElementById(elementToCopy);
|
|
|
|
element.select();
|
|
|
|
try {
|
|
|
|
document.execCommand('copy');
|
|
|
|
} catch (err) {
|
|
|
|
this.setState({error: 'Oops, unable to copy'});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
{this.props.channelName &&
|
|
|
|
<div className="row row--padded row--wide row--no-top">
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">Channel:</span>
|
|
|
|
</div>
|
|
|
|
<div className="column column--8 column--med-10">
|
|
|
|
<span className="text"><a href={`/${this.props.channelName}:${this.props.certificateId}`}>{this.props.channelName}</a></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
{this.props.description &&
|
|
|
|
<div className="row row--padded row--wide row--no-top">
|
|
|
|
<span className="text">{this.props.description}</span>
|
|
|
|
</div>
|
|
|
|
}
|
|
|
|
|
|
|
|
<div className="row row--padded row--wide row--no-top">
|
|
|
|
<div id="show-short-link">
|
|
|
|
<div className="column column--2 column--med-10">
|
2018-02-01 04:12:54 +01:00
|
|
|
<a className="link--primary" href={`/${this.props.shortClaimId}/${this.props.name}.${this.props.fileExt}`}><span
|
2018-02-01 01:43:15 +01:00
|
|
|
className="text">Link:</span></a>
|
|
|
|
</div>
|
|
|
|
<div className="column column--8 column--med-10">
|
|
|
|
<div className="row row--short row--wide">
|
|
|
|
<div className="column column--7">
|
|
|
|
<div className="input-error" id="input-error-copy-short-link" hidden="true">error here</div>
|
|
|
|
<input type="text" id="short-link" className="input-disabled input-text--full-width" readOnly
|
|
|
|
spellCheck="false"
|
2018-02-01 04:12:54 +01:00
|
|
|
value={`${this.props.host}/${this.props.shortClaimId}/${this.props.name}.${this.props.fileExt}`}
|
2018-02-01 01:43:15 +01:00
|
|
|
onClick={this.select}/>
|
|
|
|
</div>
|
|
|
|
<div className="column column--1"> </div>
|
|
|
|
<div className="column column--2">
|
|
|
|
<button className="button--primary" data-elementtocopy="short-link"
|
|
|
|
onClick={this.copyToClipboard}>copy
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="show-embed-code">
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">Embed:</span>
|
|
|
|
</div>
|
|
|
|
<div className="column column--8 column--med-10">
|
|
|
|
<div className="row row--short row--wide">
|
|
|
|
<div className="column column--7">
|
|
|
|
<div className="input-error" id="input-error-copy-embed-text" hidden="true">error here</div>
|
|
|
|
{(this.props.contentType === 'video/mp4') ? (
|
|
|
|
<input type="text" id="embed-text" className="input-disabled input-text--full-width" readOnly
|
|
|
|
onClick={this.select} spellCheck="false"
|
|
|
|
value={`<video width="100%" controls poster="${this.props.thumbnail}" src="${this.props.host}/{claimInfo.claimId}/${this.props.name}.${this.props.fileExt}"/></video>`}/>
|
|
|
|
) : (
|
|
|
|
<input type="text" id="embed-text" className="input-disabled input-text--full-width" readOnly
|
|
|
|
onClick={this.select} spellCheck="false"
|
|
|
|
value={`<img src="${this.props.host}/${this.props.claimId}/${this.props.name}.${this.props.fileExt}"/>`}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div className="column column--1"> </div>
|
|
|
|
<div className="column column--2">
|
|
|
|
<button className="button--primary" data-elementtocopy="embed-text"
|
|
|
|
onClick={this.copyToClipboard}>copy
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="show-share-buttons">
|
|
|
|
<div className="row row--padded row--wide row--no-top">
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">Share:</span>
|
|
|
|
</div>
|
|
|
|
<div className="column column--7 column--med-10">
|
|
|
|
<div
|
|
|
|
className="row row--short row--wide flex-container--row flex-container--space-between-bottom flex-container--wrap">
|
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-01 04:12:54 +01:00
|
|
|
href={`https://twitter.com/intent/tweet?text=${this.props.host}/${this.props.shortClaimId}/${this.props.name}`}>twitter</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-01 04:12:54 +01:00
|
|
|
href={`https://www.facebook.com/sharer/sharer.php?u=${this.props.host}/${this.props.shortClaimId}/${this.props.name}`}>facebook</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-01 04:12:54 +01:00
|
|
|
href={`http://tumblr.com/widgets/share/tool?canonicalUrl=${this.props.host}/${this.props.shortClaimId}/${this.props.name}`}>tumblr</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-01 04:12:54 +01:00
|
|
|
href={`https://www.reddit.com/submit?url=${this.props.host}/${this.props.shortClaimId}/${this.props.name}&title=${this.props.name}`}>reddit</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-02-01 06:08:28 +01:00
|
|
|
{ this.state.showDetails &&
|
|
|
|
<div>
|
|
|
|
<div className="row--padded row--wide row--no-top">
|
|
|
|
<div>
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">Claim Name:</span>
|
|
|
|
</div><div className="column column--8 column--med-10">
|
|
|
|
{this.props.name}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">Claim Id:</span>
|
|
|
|
</div><div className="column column--8 column--med-10">
|
|
|
|
{this.props.claimId}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<div className="column column--2 column--med-10">
|
|
|
|
<span className="text">File Type:</span>
|
|
|
|
</div><div className="column column--8 column--med-10">
|
|
|
|
{this.props.contentType ? `${this.props.contentType}` : 'unknown'}
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-02-01 01:43:15 +01:00
|
|
|
</div>
|
2018-02-01 06:08:28 +01:00
|
|
|
<div className="row--padded row--wide row--no-top">
|
|
|
|
<div className="column column--10">
|
|
|
|
<a target="_blank" href="https://lbry.io/dmca">Report</a>
|
|
|
|
</div>
|
2018-02-01 01:43:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-02-01 06:08:28 +01:00
|
|
|
}
|
2018-02-01 01:43:15 +01:00
|
|
|
<div className="row row--wide">
|
2018-02-01 06:08:28 +01:00
|
|
|
<a className="text link--primary" id="show-details-toggle" href="#" onClick={this.toggleDetails}>{this.state.showDetails ? '[less]' : '[more]'}</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2018-01-30 18:00:02 +01:00
|
|
|
};
|
|
|
|
|
2018-02-01 01:43:15 +01:00
|
|
|
// required props
|
2018-02-01 04:12:54 +01:00
|
|
|
// {channelName, certificateId, description, shortClaimId, name, fileExt, claimId, contentType, thumbnail, host}
|
2018-02-01 01:43:15 +01:00
|
|
|
|
|
|
|
export default AssetInfo;
|