'use strict'; import React from 'react'; import Row from 'react-bootstrap/lib/Row'; import Col from 'react-bootstrap/lib/Col'; import Form from './../ascribe_forms/form'; import Property from './../ascribe_forms/property'; import PieceExtraDataForm from './../ascribe_forms/form_piece_extradata'; 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 { getCookie } from '../../utils/fetch_api_utils'; let FurtherDetails = React.createClass({ propTypes: { editable: React.PropTypes.bool, pieceId: React.PropTypes.number, extraData: React.PropTypes.object, otherData: 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() { //return (); return ( ); } }); let FileUploader = React.createClass({ propTypes: { pieceId: React.PropTypes.number, otherData: 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.otherData){ return null; } return (

); } }); export default FurtherDetails;