mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 18:13:49 +01:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
import Row from 'react-bootstrap/lib/Row';
|
|
import Col from 'react-bootstrap/lib/Col';
|
|
|
|
import PieceActions from '../../actions/piece_actions';
|
|
|
|
import MediaContainer from './media_container';
|
|
|
|
|
|
/**
|
|
* This is the component that implements display-specific functionality
|
|
*/
|
|
let Piece = React.createClass({
|
|
propTypes: {
|
|
piece: React.PropTypes.object.isRequired,
|
|
|
|
buttons: React.PropTypes.object,
|
|
currentUser: React.PropTypes.object,
|
|
header: React.PropTypes.object,
|
|
subheader: React.PropTypes.object,
|
|
children: React.PropTypes.oneOfType([
|
|
React.PropTypes.arrayOf(React.PropTypes.element),
|
|
React.PropTypes.element
|
|
])
|
|
},
|
|
|
|
updatePiece() {
|
|
return PieceActions.fetchPiece(this.props.piece.id);
|
|
},
|
|
|
|
render() {
|
|
const { buttons, children, currentUser, header, piece, subheader } = this.props;
|
|
|
|
return (
|
|
<Row>
|
|
<Col md={6} className="ascribe-print-col-left">
|
|
<MediaContainer
|
|
content={piece}
|
|
currentUser={currentUser}
|
|
refreshObject={this.updatePiece} />
|
|
</Col>
|
|
<Col md={6} className="ascribe-edition-details ascribe-print-col-right">
|
|
{header}
|
|
{subheader}
|
|
{buttons}
|
|
|
|
{children}
|
|
</Col>
|
|
</Row>
|
|
);
|
|
}
|
|
});
|
|
|
|
export default Piece;
|