mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 01:25:17 +01:00
Merge branch 'AD-708-fineuploader-process-logging'
This commit is contained in:
commit
b5d9ed2569
@ -170,9 +170,13 @@ var ReactS3FineUploader = React.createClass({
|
||||
filesToUpload: [],
|
||||
uploader: new fineUploader.s3.FineUploaderBasic(this.propsToConfig()),
|
||||
csrfToken: getCookie(AppConstants.csrftoken),
|
||||
hashingProgress: -2
|
||||
|
||||
// -1: aborted
|
||||
// -2: uninitialized
|
||||
hashingProgress: -2,
|
||||
|
||||
// this is for logging
|
||||
chunks: {}
|
||||
};
|
||||
},
|
||||
|
||||
@ -224,7 +228,9 @@ var ReactS3FineUploader = React.createClass({
|
||||
onDeleteComplete: this.onDeleteComplete,
|
||||
onSessionRequestComplete: this.onSessionRequestComplete,
|
||||
onError: this.onError,
|
||||
onValidate: this.onValidate
|
||||
onValidate: this.onValidate,
|
||||
onUploadChunk: this.onUploadChunk,
|
||||
onUploadChunkSuccess: this.onUploadChunkSuccess
|
||||
}
|
||||
};
|
||||
},
|
||||
@ -256,6 +262,10 @@ var ReactS3FineUploader = React.createClass({
|
||||
resolve(res.key);
|
||||
})
|
||||
.catch((err) => {
|
||||
console.logGlobal(err, false, {
|
||||
files: this.state.filesToUpload,
|
||||
chunks: this.state.chunks
|
||||
});
|
||||
reject(err);
|
||||
});
|
||||
});
|
||||
@ -293,14 +303,54 @@ var ReactS3FineUploader = React.createClass({
|
||||
resolve(res);
|
||||
})
|
||||
.catch((err) => {
|
||||
console.logGlobal(err, false, {
|
||||
files: this.state.filesToUpload,
|
||||
chunks: this.state.chunks
|
||||
});
|
||||
reject(err);
|
||||
console.logGlobal(err);
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
/* FineUploader specific callback function handlers */
|
||||
|
||||
onUploadChunk(id, name, chunkData) {
|
||||
|
||||
let chunks = this.state.chunks;
|
||||
|
||||
chunks[id + '-' + chunkData.startByte + '-' + chunkData.endByte] = {
|
||||
id,
|
||||
name,
|
||||
chunkData,
|
||||
completed: false
|
||||
};
|
||||
|
||||
let newState = React.addons.update(this.state, {
|
||||
startedChunks: { $set: chunks }
|
||||
});
|
||||
|
||||
this.setState(newState);
|
||||
},
|
||||
|
||||
onUploadChunkSuccess(id, chunkData, responseJson, xhr) {
|
||||
|
||||
let chunks = this.state.chunks;
|
||||
let chunkKey = id + '-' + chunkData.startByte + '-' + chunkData.endByte;
|
||||
|
||||
if(chunks[chunkKey]) {
|
||||
chunks[chunkKey].completed = true;
|
||||
chunks[chunkKey].responseJson = responseJson;
|
||||
chunks[chunkKey].xhr = xhr;
|
||||
|
||||
let newState = React.addons.update(this.state, {
|
||||
startedChunks: { $set: chunks }
|
||||
});
|
||||
|
||||
this.setState(newState);
|
||||
}
|
||||
|
||||
},
|
||||
|
||||
onComplete(id, name, res, xhr) {
|
||||
// there has been an issue with the server's connection
|
||||
if(xhr.status === 0) {
|
||||
@ -346,7 +396,10 @@ var ReactS3FineUploader = React.createClass({
|
||||
}
|
||||
})
|
||||
.catch((err) => {
|
||||
console.logGlobal(err);
|
||||
console.logGlobal(err, false, {
|
||||
files: this.state.filesToUpload,
|
||||
chunks: this.state.chunks
|
||||
});
|
||||
let notification = new GlobalNotificationModel(err.message, 'danger', 5000);
|
||||
GlobalNotificationActions.appendGlobalNotification(notification);
|
||||
});
|
||||
@ -355,7 +408,10 @@ var ReactS3FineUploader = React.createClass({
|
||||
},
|
||||
|
||||
onError(id, name, errorReason) {
|
||||
console.logGlobal(errorReason, false, this.state.filesToUpload);
|
||||
console.logGlobal(errorReason, false, {
|
||||
files: this.state.filesToUpload,
|
||||
chunks: this.state.chunks
|
||||
});
|
||||
this.state.uploader.cancelAll();
|
||||
|
||||
let notification = new GlobalNotificationModel(this.props.defaultErrorMessage, 'danger', 5000);
|
||||
|
@ -9489,7 +9489,6 @@ qq.s3.XhrUploadHandler = function(spec, proxy) {
|
||||
result.success,
|
||||
|
||||
function failure(reason, xhr) {
|
||||
|
||||
console.logGlobal(reason + 'in chunked.combine', false, {
|
||||
uploadId,
|
||||
etagMap,
|
||||
|
Loading…
Reference in New Issue
Block a user