You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
291 lines
13 KiB
JavaScript
291 lines
13 KiB
JavaScript
/*
|
|
* ©2016 Quicken Loans Inc. All rights reserved.
|
|
*/
|
|
/* global jQuery FormData FileReader */
|
|
(function ($) {
|
|
$.fn.uploader = function (options, testMode) {
|
|
return this.each(function (index) {
|
|
options = $.extend({
|
|
submitButtonCopy: '上传选定的文件',
|
|
instructionsCopy: '支持拖放',
|
|
furtherInstructionsCopy: '你也可以删除文件',
|
|
selectButtonCopy: '选择文件',
|
|
secondarySelectButtonCopy: '选择多个文件',
|
|
dropZone: $(this),
|
|
fileTypeWhiteList: ['jpg', 'png', 'jpeg', 'gif', 'pdf','zip'],
|
|
badFileTypeMessage: '',
|
|
//ajaxUrl: '../../MvcContainer/MsOpCtnBsCard/PLUpLoadFile',
|
|
ajaxUrl: '../../Account/Chfee_payapplication/FileUpload_PL',
|
|
testMode: false
|
|
}, options);
|
|
|
|
var state = {
|
|
fileBatch: [],
|
|
isUploading: false,
|
|
isOverLimit: false,
|
|
listIndex: 0
|
|
};
|
|
|
|
// create DOM elements
|
|
var dom = {
|
|
uploaderBox: $(this),
|
|
submitButton: $('<button class="js-uploader__submit-button uploader__submit-button uploader__hide">' +
|
|
options.submitButtonCopy + '<i class="js-uploader__icon fa fa-upload uploader__icon"></i></button>'),
|
|
instructions: $('<p class="js-uploader__instructions uploader__instructions">' +
|
|
options.instructionsCopy + '</p>'),
|
|
selectButton: $('<input style="height: 0; width: 0;" id="fileinput' + index + '" type="file" multiple class="js-uploader__file-input uploader__file-input">' +
|
|
'<label for="fileinput' + index + '" style="cursor: pointer;" class="js-uploader__file-label uploader__file-label">' +
|
|
options.selectButtonCopy + '</label>'),
|
|
secondarySelectButton: $('<input style="height: 0; width: 0;" id="secondaryfileinput' + index + '" type="file"' +
|
|
' multiple class="js-uploader__file-input uploader__file-input">' +
|
|
'<label for="secondaryfileinput' + index + '" style="cursor: pointer;" class="js-uploader__file-label uploader__file-label uploader__file-label--secondary">' +
|
|
options.secondarySelectButtonCopy + '</label>'),
|
|
fileList: $('<ul class="js-uploader__file-list uploader__file-list"></ul>'),
|
|
contentsContainer: $('<div class="js-uploader__contents uploader__contents"></div>'),
|
|
furtherInstructions: $('<p class="js-uploader__further-instructions uploader__further-instructions uploader__hide">' + options.furtherInstructionsCopy + '</p>')
|
|
};
|
|
|
|
// empty out whatever is in there
|
|
dom.uploaderBox.empty();
|
|
|
|
// create and attach UI elements
|
|
setupDOM(dom);
|
|
|
|
// set up event handling
|
|
bindUIEvents();
|
|
|
|
function setupDOM (dom) {
|
|
dom.contentsContainer
|
|
.append(dom.instructions)
|
|
.append(dom.selectButton);
|
|
dom.furtherInstructions
|
|
.append(dom.secondarySelectButton);
|
|
dom.uploaderBox
|
|
.append(dom.fileList)
|
|
.append(dom.contentsContainer)
|
|
.append(dom.submitButton)
|
|
.after(dom.furtherInstructions);
|
|
}
|
|
|
|
function bindUIEvents () {
|
|
// handle drag and drop
|
|
options.dropZone.on('dragover dragleave', function (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
});
|
|
$.event.props.push('dataTransfer'); // jquery bug hack
|
|
options.dropZone.on('drop', selectFilesHandler);
|
|
|
|
// hack for being able selecting the same file name twice
|
|
dom.selectButton.on('click', function () { this.value = null; });
|
|
dom.selectButton.on('change', selectFilesHandler);
|
|
dom.secondarySelectButton.on('click', function () { this.value = null; });
|
|
dom.secondarySelectButton.on('change', selectFilesHandler);
|
|
|
|
// handle the submit click
|
|
dom.submitButton.on('click', uploadSubmitHandler);
|
|
|
|
// remove link handler
|
|
dom.uploaderBox.on('click', '.js-upload-remove-button', removeItemHandler);
|
|
|
|
// expose handlers for testing
|
|
if (options.testMode) {
|
|
options.dropZone.on('uploaderTestEvent', function (e) {
|
|
switch (e.functionName) {
|
|
case 'selectFilesHandler':
|
|
selectFilesHandler(e);
|
|
break;
|
|
case 'uploadSubmitHandler':
|
|
uploadSubmitHandler(e);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
});
|
|
}
|
|
}
|
|
|
|
function addItem (file) {
|
|
var fileName = cleanName(file.name);
|
|
var fileSize = file.size;
|
|
var id = state.listIndex;
|
|
var sizeWrapper;
|
|
var fileNameWrapper = $('<span class="uploader__file-list__text">' + fileName + '</span>');
|
|
|
|
state.listIndex++;
|
|
|
|
var listItem = $('<li class="uploader__file-list__item" data-index="' + id + '"></li>');
|
|
var thumbnailContainer = $('<span class="uploader__file-list__thumbnail"></span>');
|
|
var thumbnail = $('<img class="thumbnail"><i class="fa fa-spinner fa-spin uploader__icon--spinner"></i>');
|
|
var removeLink = $('<span class="uploader__file-list__button"><button class="uploader__icon-button js-upload-remove-button fa fa-times" data-index="' + id + '"></button></span>');
|
|
|
|
// validate the file
|
|
//if (options.fileTypeWhiteList.indexOf(getExtension(file.name).toLowerCase()) !== -1) {
|
|
// file is ok, add it to the batch
|
|
state.fileBatch.push({file: file, id: id, fileName: fileName, fileSize: fileSize});
|
|
sizeWrapper = $('<span class="uploader__file-list__size">' + formatBytes(fileSize) + '</span>');
|
|
//} else {
|
|
// // file is not ok, only add it to the dom
|
|
// sizeWrapper = $('<span class="uploader__file-list__size"><span class="uploader__error">' + options.badFileTypeMessage + '</span></span>');
|
|
//}
|
|
|
|
// create the thumbnail, if you can
|
|
if (window.FileReader && file.type.indexOf('image') !== -1) {
|
|
var reader = new FileReader();
|
|
reader.onloadend = function () {
|
|
thumbnail.attr('src', reader.result);
|
|
thumbnail.parent().find('i').remove();
|
|
};
|
|
reader.onerror = function () {
|
|
thumbnail.remove();
|
|
};
|
|
reader.readAsDataURL(file);
|
|
} else if (file.type.indexOf('image') === -1) {
|
|
thumbnail = $('<i class="fa fa-file-o uploader__icon">');
|
|
}
|
|
|
|
thumbnailContainer.append(thumbnail);
|
|
listItem.append(thumbnailContainer);
|
|
|
|
listItem
|
|
.append(fileNameWrapper)
|
|
.append(sizeWrapper)
|
|
.append(removeLink);
|
|
|
|
dom.fileList.append(listItem);
|
|
}
|
|
|
|
function getExtension (path) {
|
|
var basename = path.split(/[\\/]/).pop();
|
|
var pos = basename.lastIndexOf('.');
|
|
|
|
if (basename === '' || pos < 1) {
|
|
return '';
|
|
}
|
|
return basename.slice(pos + 1);
|
|
}
|
|
|
|
function formatBytes (bytes, decimals) {
|
|
if (bytes === 0) return '0 Bytes';
|
|
var k = 1024;
|
|
var dm = decimals + 1 || 3;
|
|
var sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
|
|
var i = Math.floor(Math.log(bytes) / Math.log(k));
|
|
return (bytes / Math.pow(k, i)).toPrecision(dm) + ' ' + sizes[i];
|
|
}
|
|
|
|
function cleanName(name) {
|
|
|
|
const regex = /[!@#$%^&*()]+\\/g;
|
|
var result = name.replace(regex, "");
|
|
return result;
|
|
//name = name.replace(/\s+/gi, '-'); // Replace white space with dash
|
|
//return name.replace(/[^a-zA-Z0-9.\-]/gi, ''); // Strip any special characters
|
|
}
|
|
|
|
function uploadSubmitHandler () {
|
|
if (state.fileBatch.length !== 0) {
|
|
var data = new FormData();
|
|
for (var i = 0; i < state.fileBatch.length; i++) {
|
|
data.append('files[]', state.fileBatch[i].file, state.fileBatch[i].fileName);
|
|
}
|
|
//data.append('UploadFileType', parent.PuploadFileType);
|
|
//data.append('SelectBsSql', parent.SelectBsSql);
|
|
data.append('BILLNO', parent._BILLNO);
|
|
//data.append('FileBillType', parent._FileBillType);
|
|
|
|
//data.append('CUSTNO', parent._CUSTNO);
|
|
$.ajax({
|
|
type: 'POST',
|
|
url: options.ajaxUrl,
|
|
data: data,
|
|
cache: false,
|
|
contentType: false,
|
|
processData: false,
|
|
success: function (res) {
|
|
console.log(res);
|
|
if (res.Success) {
|
|
|
|
alert('上传成功!');
|
|
} else {
|
|
alert('上传出错' + res.Message);
|
|
|
|
}
|
|
//parent.winFXTZModifyShow.show();
|
|
|
|
try {
|
|
if (parent.panelEdit)
|
|
parent.panelEdit.storeChfeeFile.load({ params: { start: 0, limit: 9999, BillNo: parent._BILLNO } });
|
|
} catch { }
|
|
|
|
try {
|
|
if (parent.panelIndex)
|
|
parent.panelIndex.storeChfeeFile.load({ params: { start: 0, limit: 9999, BillNo: parent._BILLNO } });
|
|
|
|
} catch {
|
|
|
|
}
|
|
|
|
parent.extParentWinFrame.close();
|
|
|
|
|
|
}
|
|
|
|
});
|
|
}
|
|
}
|
|
|
|
function selectFilesHandler (e) {
|
|
e.preventDefault();
|
|
e.stopPropagation();
|
|
|
|
if (!state.isUploading) {
|
|
// files come from the input or a drop
|
|
var files = e.target.files || e.dataTransfer.files || e.dataTransfer.getData;
|
|
|
|
// process each incoming file
|
|
for (var i = 0; i < files.length; i++) {
|
|
addItem(files[i]);
|
|
}
|
|
}
|
|
renderControls();
|
|
}
|
|
|
|
function renderControls () {
|
|
if (dom.fileList.children().size() !== 0) {
|
|
dom.submitButton.removeClass('uploader__hide');
|
|
dom.furtherInstructions.removeClass('uploader__hide');
|
|
dom.contentsContainer.addClass('uploader__hide');
|
|
} else {
|
|
dom.submitButton.addClass('uploader__hide');
|
|
dom.furtherInstructions.addClass('uploader__hide');
|
|
dom.contentsContainer.removeClass('uploader__hide');
|
|
}
|
|
}
|
|
|
|
function removeItemHandler (e) {
|
|
e.preventDefault();
|
|
|
|
if (!state.isUploading) {
|
|
var removeIndex = $(e.target).data('index');
|
|
removeItem(removeIndex);
|
|
$(e.target).parent().remove();
|
|
}
|
|
|
|
renderControls();
|
|
}
|
|
|
|
function removeItem (id) {
|
|
// remove from the batch
|
|
for (var i = 0; i < state.fileBatch.length; i++) {
|
|
if (state.fileBatch[i].id === parseInt(id)) {
|
|
state.fileBatch.splice(i, 1);
|
|
break;
|
|
}
|
|
}
|
|
// remove from the DOM
|
|
dom.fileList.find('li[data-index="' + id + '"]').remove();
|
|
}
|
|
});
|
|
};
|
|
}(jQuery)); |