2018-01-30 18:00:02 +01:00
|
|
|
import React from 'react';
|
2018-02-05 01:40:28 +01:00
|
|
|
import PropTypes from 'prop-types';
|
2018-02-07 00:05:31 +01:00
|
|
|
import { Link } from 'react-router-dom';
|
2018-01-30 18:00:02 +01:00
|
|
|
|
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,
|
2018-02-05 01:40:28 +01:00
|
|
|
};
|
2018-02-01 06:08:28 +01:00
|
|
|
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-07 00:09:12 +01:00
|
|
|
<Link className="link--primary" to={`/${this.props.shortId}/${this.props.name}.${this.props.fileExt}`}><span
|
2018-02-07 00:05:31 +01:00
|
|
|
className="text">Link:</span></Link>
|
2018-02-01 01:43:15 +01:00
|
|
|
</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-07 00:09:12 +01:00
|
|
|
value={`${this.props.host}/${this.props.shortId}/${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"
|
2018-02-05 01:40:28 +01:00
|
|
|
value={`<video width="100%" controls poster="${this.props.thumbnail}" src="${this.props.host}/${this.props.claimId}/${this.props.name}.${this.props.fileExt}"/></video>`}/>
|
2018-02-01 01:43:15 +01:00
|
|
|
) : (
|
|
|
|
<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-07 00:09:12 +01:00
|
|
|
href={`https://twitter.com/intent/tweet?text=${this.props.host}/${this.props.shortId}/${this.props.name}`}>twitter</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-07 00:09:12 +01:00
|
|
|
href={`https://www.facebook.com/sharer/sharer.php?u=${this.props.host}/${this.props.shortId}/${this.props.name}`}>facebook</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-07 00:09:12 +01:00
|
|
|
href={`http://tumblr.com/widgets/share/tool?canonicalUrl=${this.props.host}/${this.props.shortId}/${this.props.name}`}>tumblr</a>
|
2018-02-01 01:43:15 +01:00
|
|
|
<a className="link--primary" target="_blank"
|
2018-02-07 00:09:12 +01:00
|
|
|
href={`https://www.reddit.com/submit?url=${this.props.host}/${this.props.shortId}/${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-05 01:40:28 +01:00
|
|
|
AssetInfo.propTypes = {
|
|
|
|
channelName : PropTypes.string,
|
|
|
|
certificateId: PropTypes.string,
|
|
|
|
description : PropTypes.string,
|
2018-02-05 02:43:02 +01:00
|
|
|
shortId : PropTypes.string.isRequired,
|
2018-02-05 01:40:28 +01:00
|
|
|
name : PropTypes.string.isRequired,
|
|
|
|
claimId : PropTypes.string.isRequired,
|
|
|
|
contentType : PropTypes.string.isRequired,
|
|
|
|
fileExt : PropTypes.string.isRequired,
|
|
|
|
thumbnail : PropTypes.string,
|
|
|
|
host : PropTypes.string.isRequired,
|
|
|
|
};
|
2018-02-01 01:43:15 +01:00
|
|
|
|
|
|
|
export default AssetInfo;
|