2015-09-10 10:51:47 +02:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import ReactS3FineUploader from '../ascribe_uploader/react_s3_fine_uploader';
|
2015-11-10 17:35:57 +01:00
|
|
|
import FileDragAndDrop from '../ascribe_uploader/ascribe_file_drag_and_drop/file_drag_and_drop';
|
2015-09-10 10:51:47 +02:00
|
|
|
|
|
|
|
import AppConstants from '../../constants/application_constants';
|
|
|
|
|
|
|
|
import { getCookie } from '../../utils/fetch_api_utils';
|
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
|
|
|
|
const { func, bool, object, shape, string, number, arrayOf } = React.PropTypes;
|
|
|
|
|
|
|
|
const InputFineUploader = React.createClass({
|
2015-09-10 10:51:47 +02:00
|
|
|
propTypes: {
|
2015-11-10 17:35:57 +01:00
|
|
|
setIsUploadReady: func,
|
|
|
|
isReadyForFormSubmission: func,
|
|
|
|
submitFileName: func,
|
|
|
|
fileInputElement: func,
|
2015-09-14 16:15:01 +02:00
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
areAssetsDownloadable: bool,
|
2015-09-21 12:05:42 +02:00
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
keyRoutine: shape({
|
|
|
|
url: string,
|
|
|
|
fileClass: string
|
2015-09-11 10:11:07 +02:00
|
|
|
}),
|
2015-11-10 17:35:57 +01:00
|
|
|
createBlobRoutine: shape({
|
|
|
|
url: string
|
2015-09-11 10:11:07 +02:00
|
|
|
}),
|
2015-11-10 17:35:57 +01:00
|
|
|
validation: shape({
|
|
|
|
itemLimit: number,
|
|
|
|
sizeLimit: string,
|
|
|
|
allowedExtensions: arrayOf(string)
|
2015-09-11 10:11:07 +02:00
|
|
|
}),
|
2015-09-10 10:51:47 +02:00
|
|
|
|
|
|
|
// isFineUploaderActive is used to lock react fine uploader in case
|
|
|
|
// a user is actually not logged in already to prevent him from droping files
|
|
|
|
// before login in
|
2015-11-10 17:35:57 +01:00
|
|
|
isFineUploaderActive: bool,
|
2015-09-21 12:05:42 +02:00
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
enableLocalHashing: bool,
|
2015-11-16 15:27:00 +01:00
|
|
|
uploadMethod: string,
|
2015-09-10 10:51:47 +02:00
|
|
|
|
|
|
|
// provided by Property
|
2015-11-10 17:35:57 +01:00
|
|
|
disabled: bool,
|
2015-09-14 16:33:32 +02:00
|
|
|
|
|
|
|
// A class of a file the user has to upload
|
|
|
|
// Needs to be defined both in singular as well as in plural
|
2015-11-10 17:35:57 +01:00
|
|
|
fileClassToUpload: shape({
|
|
|
|
singular: string,
|
|
|
|
plural: string
|
2015-12-02 12:37:21 +01:00
|
|
|
}),
|
|
|
|
|
|
|
|
// Provided by `Property`
|
|
|
|
onChange: React.PropTypes.func
|
2015-09-10 10:51:47 +02:00
|
|
|
},
|
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
getDefaultProps() {
|
|
|
|
return {
|
|
|
|
fileInputElement: FileDragAndDrop
|
|
|
|
};
|
2015-09-10 10:51:47 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
2015-11-10 17:35:57 +01:00
|
|
|
value: null,
|
|
|
|
file: null
|
2015-09-10 10:51:47 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
submitFile(file) {
|
2015-09-10 10:51:47 +02:00
|
|
|
this.setState({
|
2015-11-10 17:35:57 +01:00
|
|
|
file,
|
2015-09-14 14:46:03 +02:00
|
|
|
value: file.key
|
2015-09-10 10:51:47 +02:00
|
|
|
});
|
2015-09-14 16:15:01 +02:00
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
if(this.state.value && typeof this.props.onChange === 'function') {
|
|
|
|
this.props.onChange({ target: { value: this.state.value } });
|
|
|
|
}
|
|
|
|
|
2015-09-14 16:15:01 +02:00
|
|
|
if(typeof this.props.submitFileName === 'function') {
|
|
|
|
this.props.submitFileName(file.originalName);
|
|
|
|
}
|
2015-09-10 10:51:47 +02:00
|
|
|
},
|
|
|
|
|
2015-09-10 11:22:42 +02:00
|
|
|
reset() {
|
|
|
|
this.refs.fineuploader.reset();
|
|
|
|
},
|
2015-09-10 10:51:47 +02:00
|
|
|
|
2015-11-10 17:35:57 +01:00
|
|
|
createBlobRoutine() {
|
|
|
|
const { fineuploader } = this.refs;
|
|
|
|
const { file } = this.state;
|
|
|
|
|
|
|
|
fineuploader.createBlob(file);
|
|
|
|
},
|
|
|
|
|
2015-09-10 11:22:42 +02:00
|
|
|
render() {
|
2015-11-10 17:35:57 +01:00
|
|
|
const { fileInputElement,
|
|
|
|
keyRoutine,
|
|
|
|
createBlobRoutine,
|
|
|
|
validation,
|
|
|
|
setIsUploadReady,
|
|
|
|
isReadyForFormSubmission,
|
|
|
|
areAssetsDownloadable,
|
|
|
|
enableLocalHashing,
|
2015-12-02 12:37:21 +01:00
|
|
|
uploadMethod,
|
2015-11-10 17:35:57 +01:00
|
|
|
fileClassToUpload,
|
2015-12-02 12:37:21 +01:00
|
|
|
disabled } = this.props;
|
2015-09-10 10:51:47 +02:00
|
|
|
let editable = this.props.isFineUploaderActive;
|
|
|
|
|
|
|
|
// if disabled is actually set by property, we want to override
|
|
|
|
// isFineUploaderActive
|
2015-12-02 12:37:21 +01:00
|
|
|
if(typeof disabled !== 'undefined') {
|
|
|
|
editable = !disabled;
|
2015-09-10 10:51:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<ReactS3FineUploader
|
2015-09-10 11:22:42 +02:00
|
|
|
ref="fineuploader"
|
2015-11-10 17:35:57 +01:00
|
|
|
fileInputElement={fileInputElement}
|
|
|
|
keyRoutine={keyRoutine}
|
|
|
|
createBlobRoutine={createBlobRoutine}
|
|
|
|
validation={validation}
|
2015-09-14 14:46:03 +02:00
|
|
|
submitFile={this.submitFile}
|
2015-11-10 17:35:57 +01:00
|
|
|
setIsUploadReady={setIsUploadReady}
|
|
|
|
isReadyForFormSubmission={isReadyForFormSubmission}
|
|
|
|
areAssetsDownloadable={areAssetsDownloadable}
|
2015-09-10 10:51:47 +02:00
|
|
|
areAssetsEditable={editable}
|
|
|
|
signature={{
|
|
|
|
endpoint: AppConstants.serverUrl + 's3/signature/',
|
|
|
|
customHeaders: {
|
|
|
|
'X-CSRFToken': getCookie(AppConstants.csrftoken)
|
|
|
|
}
|
|
|
|
}}
|
|
|
|
deleteFile={{
|
|
|
|
enabled: true,
|
|
|
|
method: 'DELETE',
|
|
|
|
endpoint: AppConstants.serverUrl + 's3/delete',
|
|
|
|
customHeaders: {
|
|
|
|
'X-CSRFToken': getCookie(AppConstants.csrftoken)
|
|
|
|
}
|
|
|
|
}}
|
2015-12-02 12:37:21 +01:00
|
|
|
enableLocalHashing={enableLocalHashing}
|
|
|
|
uploadMethod={uploadMethod}
|
|
|
|
fileClassToUpload={fileClassToUpload} />
|
2015-09-10 10:51:47 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-10-30 17:43:20 +01:00
|
|
|
export default InputFineUploader;
|