64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
$(document).ready(function() {
|
|
|
|
var uploader;
|
|
|
|
$("#plupload_files").pluploadQueue({
|
|
// General settings
|
|
runtimes : 'gears, html5, html4',
|
|
url : baseUrl+'Plupload/upload/format/json',
|
|
chunk_size : '5mb',
|
|
unique_names : 'true',
|
|
multiple_queues : 'true',
|
|
filters : [
|
|
{title: "Audio Files", extensions: "ogg,mp3,oga,flac,wav,m4a,mp4"}
|
|
]
|
|
});
|
|
|
|
uploader = $("#plupload_files").pluploadQueue();
|
|
|
|
uploader.bind('FileUploaded', function(up, file, json) {
|
|
var j = jQuery.parseJSON(json.response);
|
|
|
|
if(j.error !== undefined) {
|
|
var row = $("<tr/>")
|
|
.append('<td>' + file.name +'</td>')
|
|
.append('<td>' + j.error.message + '</td>');
|
|
|
|
$("#plupload_error").find("table").append(row);
|
|
$("#plupload_error table").css("display", "inline-table");
|
|
}else{
|
|
var tempFileName = j.tempfilepath;
|
|
$.get(baseUrl+'Plupload/copyfile/format/json/name/'+
|
|
encodeURIComponent(file.name)+'/tempname/' +
|
|
encodeURIComponent(tempFileName), function(jr){
|
|
if(jr.error !== undefined) {
|
|
var row = $("<tr/>")
|
|
.append('<td>' + file.name +'</td>')
|
|
.append('<td>' + jr.error.message + '</td>');
|
|
|
|
$("#plupload_error").find("table").append(row);
|
|
$("#plupload_error table").css("display", "inline-table");
|
|
}
|
|
});
|
|
}
|
|
});
|
|
|
|
var uploadProgress = false;
|
|
|
|
uploader.bind('QueueChanged', function(){
|
|
uploadProgress = (uploader.files.length > 0)
|
|
});
|
|
|
|
uploader.bind('UploadComplete', function(){
|
|
uploadProgress = false;
|
|
});
|
|
|
|
$(window).bind('beforeunload', function(){
|
|
if(uploadProgress){
|
|
return sprintf($.i18n._("You are currently uploading files. %sGoing to another screen will cancel the upload process. %sAre you sure you want to leave the page?"),
|
|
"\n", "\n");
|
|
}
|
|
});
|
|
|
|
});
|