'use strict'; import React from 'react'; import Router from 'react-router'; import Row from 'react-bootstrap/lib/Row'; import Col from 'react-bootstrap/lib/Col'; import Button from 'react-bootstrap/lib/Button'; import Glyphicon from 'react-bootstrap/lib/Glyphicon'; import CollapsibleMixin from 'react-bootstrap/lib/CollapsibleMixin'; import UserActions from '../actions/user_actions'; import UserStore from '../stores/user_store'; import CoaActions from '../actions/coa_actions'; import CoaStore from '../stores/coa_store'; import MediaPlayer from './ascribe_media/media_player'; import CollapsibleParagraph from './ascribe_collapsible/collapsible_paragraph'; import Form from './ascribe_forms/form'; import Property from './ascribe_forms/property'; import InputTextAreaToggable from './ascribe_forms/input_textarea_toggable'; import PieceExtraDataForm from './ascribe_forms/form_piece_extradata'; import RequestActionForm from './ascribe_forms/form_request_action'; import EditionActions from '../actions/edition_actions'; import AclButtonList from './ascribe_buttons/acl_button_list'; import ReactS3FineUploader from './ascribe_uploader/react_s3_fine_uploader'; import GlobalNotificationModel from '../models/global_notification_model'; import GlobalNotificationActions from '../actions/global_notification_actions'; import apiUrls from '../constants/api_urls'; import AppConstants from '../constants/application_constants'; import classNames from 'classnames'; import { getCookie } from '../utils/fetch_api_utils'; let Link = Router.Link; /** * This is the component that implements display-specific functionality */ let Edition = React.createClass({ propTypes: { edition: React.PropTypes.object, loadEdition: React.PropTypes.func }, getInitialState() { return UserStore.getState(); }, componentDidMount() { UserStore.listen(this.onChange); UserActions.fetchCurrentUser(); }, componentWillUnmount() { UserStore.unlisten(this.onChange); }, onChange(state) { this.setState(state); }, render() { return ( -1 || this.props.edition.public_note)}> -1 || Object.keys(this.props.edition.extra_data).length > 0 || this.props.edition.other_data !== null}> -1}> 0}> 0}> 0}> ); } }); let MediaContainer = React.createClass({ propTypes: { edition: React.PropTypes.object }, render() { let thumbnail = this.props.edition.thumbnail; let mimetype = this.props.edition.digital_work.mime; let embed = null; let extraData = null; if (this.props.edition.digital_work.encoding_urls) { extraData = this.props.edition.digital_work.encoding_urls.map(e => { return { url: e.url, type: e.label }; }); } if (['video', 'audio'].indexOf(mimetype) > -1){ embed = ( Embed } panel={
                        {''
                        }
                    
}/> ); } return (

{embed}

); } }); const CollapsibleButton = React.createClass({ propTypes: { button: React.PropTypes.object, children: React.PropTypes.oneOfType([ React.PropTypes.object, React.PropTypes.array ]) }, getInitialState() { return {expanded: false}; }, handleToggle(e){ e.preventDefault(); this.setState({expanded: !this.state.expanded}); }, render() { let isVisible = (this.state.expanded) ? '' : 'invisible'; return ( {this.props.button}
{this.props.panel}
); } }); let EditionHeader = React.createClass({ propTypes: { edition: React.PropTypes.object }, render() { var titleHtml =
{this.props.edition.title}
; return (

); } }); let EditionSummary = React.createClass({ propTypes: { edition: React.PropTypes.object }, getTransferWithdrawData(){ return {'bitcoin_id': this.props.edition.bitcoin_id}; }, handleSuccess(){ EditionActions.fetchOne(this.props.edition.id); }, showNotification(response){ this.handleSuccess(); let notification = new GlobalNotificationModel(response.notification, 'success'); GlobalNotificationActions.appendGlobalNotification(notification); }, render() { let status = null; if (this.props.edition.status.length > 0){ let statusStr = this.props.edition.status.join().replace(/_/, ' '); status = ; if (this.props.edition.pending_new_owner && this.props.edition.acl.indexOf('withdraw_transfer') > -1){ status = (
); } } let actions = null; if (this.props.edition.request_action && this.props.edition.request_action.length > 0){ actions = ( ); } else { actions = ( ); } return (
{status}
{actions}
); } }); let EditionDetailProperty = React.createClass({ propTypes: { label: React.PropTypes.string, value: React.PropTypes.oneOfType([ React.PropTypes.string, React.PropTypes.element ]), separator: React.PropTypes.string, labelClassName: React.PropTypes.string, valueClassName: React.PropTypes.string }, getDefaultProps() { return { separator: ':', labelClassName: 'col-xs-5 col-sm-4 col-md-3 col-lg-3', valueClassName: 'col-xs-7 col-sm-8 col-md-9 col-lg-9' }; }, render() { let value = this.props.value; if (this.props.children){ value = (
{ this.props.value }
{ this.props.children }
); } return (
{ this.props.label + this.props.separator}
{value}
); } }); let EditionDetailHistoryIterator = React.createClass({ propTypes: { history: React.PropTypes.array }, render() { return (
{this.props.history.map((historicalEvent, i) => { return (
{ historicalEvent[1] }
); })}
); } }); let EditionPersonalNote = React.createClass({ propTypes: { edition: React.PropTypes.object, currentUser: React.PropTypes.object, handleSuccess: React.PropTypes.func }, showNotification(){ this.props.handleSuccess(); let notification = new GlobalNotificationModel('Private note saved', 'success'); GlobalNotificationActions.appendGlobalNotification(notification); }, render() { if (this.props.currentUser.username && true || false) { return (

); } return null; } }); let EditionPublicEditionNote = React.createClass({ propTypes: { edition: React.PropTypes.object, handleSuccess: React.PropTypes.func }, showNotification(){ this.props.handleSuccess(); let notification = new GlobalNotificationModel('Public note saved', 'success'); GlobalNotificationActions.appendGlobalNotification(notification); }, render() { let isEditable = this.props.edition.acl.indexOf('edit') > -1; if (this.props.edition.acl.indexOf('edit') > -1 || this.props.edition.public_note){ return (

); } return null; } }); let EditionFurtherDetails = React.createClass({ propTypes: { edition: React.PropTypes.object, handleSuccess: React.PropTypes.func }, getInitialState() { return { loading: false }; }, showNotification(){ this.props.handleSuccess(); let notification = new GlobalNotificationModel('Details updated', 'success'); GlobalNotificationActions.appendGlobalNotification(notification); }, submitKey(key){ this.setState({ otherDataKey: key }); }, setIsUploadReady(isReady) { this.setState({ isUploadReady: isReady }); }, isReadyForFormSubmission(files) { files = files.filter((file) => file.status !== 'deleted' && file.status !== 'canceled'); if(files.length > 0 && files[0].status === 'upload successful') { return true; } else { return false; } }, render() { let editable = this.props.edition.acl.indexOf('edit') > -1; return ( ); } }); let FileUploader = React.createClass({ propTypes: { edition: React.PropTypes.object, setIsUploadReady: React.PropTypes.func, submitKey: React.PropTypes.func, isReadyForFormSubmission: React.PropTypes.func, editable: React.PropTypes.bool }, render() { // Essentially there a three cases important to the fileuploader // // 1. there is no other_data => do not show the fileuploader at all // 2. there is other_data, but user has no edit rights => show fileuploader but without action buttons // 3. both other_data and editable are defined or true => show fileuploade with all action buttons if (!this.props.editable && !this.props.edition.other_data){ return null; } return (

); } }); let CoaDetails = React.createClass({ propTypes: { edition: React.PropTypes.object }, getInitialState() { return CoaStore.getState(); }, componentDidMount() { CoaStore.listen(this.onChange); if (this.props.edition.coa) { CoaActions.fetchOne(this.props.edition.coa); } else{ console.log('create coa'); CoaActions.create(this.props.edition); } }, componentWillUnmount() { CoaStore.unlisten(this.onChange); }, onChange(state) { this.setState(state); }, render() { if (this.state.coa.url_safe) { return (

); } return (
); } }); let SpoolDetails = React.createClass({ propTypes: { edition: React.PropTypes.object }, render() { let bitcoinIdValue = ( {this.props.edition.bitcoin_id} ); let hashOfArtwork = ( {this.props.edition.hash_as_address} ); let ownerAddress = ( {this.props.edition.btc_owner_address_noprefix} ); return (
{bitcoinIdValue}
{hashOfArtwork}
{ownerAddress}

); } }); export default Edition;