mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
99 lines
3.3 KiB
JavaScript
99 lines
3.3 KiB
JavaScript
import React from 'react';
|
|
|
|
import ResourceViewer from './ascribe_media/resource_viewer';
|
|
|
|
import EditionActions from '../actions/edition_actions'
|
|
import AclButton from './ascribe_buttons/acl_button'
|
|
|
|
/**
|
|
* This is the component that implements display-specific functionality
|
|
*/
|
|
let Edition = React.createClass({
|
|
render() {
|
|
let thumbnail = this.props.edition.thumbnail;
|
|
let mimetype = this.props.edition.digital_work.mime;
|
|
|
|
return (
|
|
<div>
|
|
<div className="col-sm-6">
|
|
<ResourceViewer thumbnail={thumbnail}
|
|
mimetype={mimetype}
|
|
/>
|
|
</div>
|
|
<div className="col-sm-6">
|
|
<EditionHeader edition={this.props.edition}/>
|
|
<EditionDetails edition={this.props.edition} currentUser={ this.props.currentUser }/>
|
|
</div>
|
|
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
let EditionHeader = React.createClass({
|
|
render() {
|
|
var title_html = <div className="ascribe-detail-title">{this.props.edition.title}</div>;
|
|
return (
|
|
<div className="ascribe-detail-header">
|
|
<EditionDetailProperty label="title" value={title_html} />
|
|
<EditionDetailProperty label="by" value={this.props.edition.artist_name} />
|
|
<EditionDetailProperty label="date" value={ this.props.edition.date_created.slice(0,4) } />
|
|
<hr/>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
let EditionDetails = React.createClass({
|
|
handleSuccess(){
|
|
EditionActions.fetchOne(this.props.edition.id);
|
|
},
|
|
render() {
|
|
return (
|
|
<div className="ascribe-detail-header">
|
|
<EditionDetailProperty label="edition"
|
|
value={this.props.edition.edition_number + " of " + this.props.edition.num_editions} />
|
|
<EditionDetailProperty label="id" value={ this.props.edition.bitcoin_id } />
|
|
<EditionDetailProperty label="owner" value={ this.props.edition.owner } />
|
|
<br/>
|
|
<AclButton
|
|
availableAcls={["transfer"]}
|
|
action="transfer"
|
|
editions={[this.props.edition]}
|
|
currentUser={this.props.currentUser}
|
|
handleSuccess={this.handleSuccess}
|
|
/>
|
|
<AclButton
|
|
availableAcls={["consign"]}
|
|
action="consign"
|
|
editions={[this.props.edition]}
|
|
currentUser={this.props.currentUser}
|
|
handleSuccess={this.handleSuccess}
|
|
/>
|
|
<hr/>
|
|
</div>
|
|
);
|
|
|
|
}
|
|
});
|
|
|
|
let EditionDetailProperty = React.createClass({
|
|
render() {
|
|
return (
|
|
<div className="row ascribe-detail-property">
|
|
<div className="row-same-height">
|
|
<div className="col-xs-2 col-xs-height col-bottom">
|
|
<div>{ this.props.label }:</div>
|
|
</div>
|
|
<div className="col-xs-10 col-xs-height col-bottom">
|
|
<div>{ this.props.value }</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
});
|
|
|
|
|
|
export default Edition;
|