Most importantly, the core containing all central functionality and the most commonly used control libraries is identical in both deliveries. (For example, sap.m, sap.ui.layout, sap.ui.unified.)
sap.ui.define(
[
"sap/m/UploadCollection",
"./CustomFileUploader"
],
function (UploadCollection, CustomFileUploader) {
return UploadCollection.extend("CustomUploadCollection", {
metadata: {},
setUploadUrl: function (value) {
this.setProperty("instantUpload", true, true); // disables the default check
if (UploadCollection.prototype.setUploadUrl) {
UploadCollection.prototype.setUploadUrl.apply(this, arguments); // ensure that the default setter is called. Doing so ensures that every extension or change will be executed as well.
// Because before we call the original function we override the instantUpload property for short time, to disable the check
}
this.setProperty("instantUpload", false, true); // Afterwards we set back the instantUpload property to be back in a save and consistent state
},
upload: function (_url) {
this.setUploadUrl(_url); //Custom URL setting at the time of upload
if (this.getInstantUpload()) {
jQuery.sap.log.error("Not a valid API call. 'instantUpload' should be set to 'false'.");
}
var iFileUploadersCounter = this._aFileUploadersForPendingUpload.length;
// upload files that are selected through popup
for (var i = 0; i < iFileUploadersCounter; i++) {
this._iUploadStartCallCounter = 0;
// if the FU comes from drag and drop (without files), ignore it
if (this._aFileUploadersForPendingUpload[i].getValue()) {
this._aFileUploadersForPendingUpload[i].setUploadUrl(_url); //Custom URL setting at the time of upload
this._aFileUploadersForPendingUpload[i].upload();
}
}
// upload files that are pushed through drag and drop
if (this._aFilesFromDragAndDropForPendingUpload.length > 0) {
// upload the files that are saved in the array
this._oFileUploader._sendFilesFromDragAndDrop(this._aFilesFromDragAndDropForPendingUpload);
// clean up the array
this._aFilesFromDragAndDropForPendingUpload = [];
}
},
_getFileUploader: function () {
var bUploadOnChange = this.getInstantUpload();
if (!bUploadOnChange || !this._oFileUploader) { // In case of instantUpload = false always create a new FU instance. In case of instantUpload = true only create a new FU instance if no FU instance exists yet
var sTooltip = this.getInstantUpload() ? this._oRb.getText("UPLOADCOLLECTION_UPLOAD") : this._oRb.getText("UPLOADCOLLECTION_ADD");
this._iFUCounter = this._iFUCounter + 1; // counter for FileUploader instances
this._oFileUploader = new CustomFileUploader(this.getId() + "-" + this._iFUCounter + "-uploader", { //Use custom file uploader here
buttonOnly: true,
buttonText: sTooltip,
tooltip: sTooltip,
iconOnly: true,
enabled: this.getUploadEnabled(),
fileType: this.getFileType(),
icon: "sap-icon://add",
iconFirst: false,
style: "Transparent",
maximumFilenameLength: this.getMaximumFilenameLength(),
maximumFileSize: this.getMaximumFileSize(),
mimeType: this.getMimeType(),
multiple: this.getMultiple(),
name: "uploadCollection",
uploadOnChange: bUploadOnChange,
sameFilenameAllowed: true,
uploadUrl: this.getUploadUrl(),
useMultipart: false,
sendXHR: true,
change: [this._onChange, this],
filenameLengthExceed: [this._onFilenameLengthExceed, this],
fileSizeExceed: [this._onFileSizeExceed, this],
typeMissmatch: [this._onTypeMissmatch, this],
uploadAborted: [this._onUploadTerminated, this],
uploadComplete: [this._onUploadComplete, this],
uploadProgress: [this._onUploadProgress, this],
uploadStart: [this._onUploadStart, this],
visible: !this.getUploadButtonInvisible()
});
}
return this._oFileUploader;
},
renderer: "sap.m.UploadCollectionRenderer"
});
}
);
sap.ui.define(
["sap/ui/unified/FileUploader"],
function (FileUploader) {
return FileUploader.extend("CustomFileUploader", {
metadata: {},
_sendFilesWithXHR: function (aFiles) {
var iFiles,
sHeader,
sValue,
oXhrEntry,
oXHRSettings = this.getXhrSettings();
if (aFiles.length > 0) {
if (this.getUseMultipart()) {
//one xhr request for all files
iFiles = 1;
} else {
//several xhr requests for every file
iFiles = aFiles.length;
}
// Save references to already uploading files if a new upload comes between upload and complete or abort
this._aXhr = this._aXhr || [];
for (var j = 0; j < iFiles; j++) {
//keep a reference on the current upload xhr
this._uploadXHR = new window.XMLHttpRequest();
oXhrEntry = {
xhr: this._uploadXHR,
requestHeaders: []
};
this._aXhr.push(oXhrEntry);
oXhrEntry.xhr.open("PUT", this.getUploadUrl(), true); //Changed to PUT method here
if (oXHRSettings) {
oXhrEntry.xhr.withCredentials = oXHRSettings.getWithCredentials();
}
if (this.getHeaderParameters()) {
var aHeaderParams = this.getHeaderParameters();
for (var i = 0; i < aHeaderParams.length; i++) {
sHeader = aHeaderParams[i].getName();
sValue = aHeaderParams[i].getValue();
oXhrEntry.requestHeaders.push({
name: sHeader,
value: sValue
});
}
}
var sFilename = aFiles[j].name;
var aRequestHeaders = oXhrEntry.requestHeaders;
oXhrEntry.fileName = sFilename;
oXhrEntry.file = aFiles[j];
this.fireUploadStart({
"fileName": sFilename,
"requestHeaders": aRequestHeaders
});
for (var k = 0; k < aRequestHeaders.length; k++) {
// Check if request is still open in case abort() was called.
if (oXhrEntry.xhr.readyState === 0) {
break;
}
sHeader = aRequestHeaders[k].name;
sValue = aRequestHeaders[k].value;
oXhrEntry.xhr.setRequestHeader(sHeader, sValue);
}
}
if (this.getUseMultipart()) {
var formData = new window.FormData();
var name = this.FUEl.name;
for (var l = 0; l < aFiles.length; l++) {
this._appendFileToFormData(formData, name, aFiles[l]);
}
formData.append("_charset_", "UTF-8"); // eslint-disable-line sap-no-dom-insertion
var data = this.FUDataEl.name;
if (this.getAdditionalData()) {
var sData = this.getAdditionalData();
formData.append(data, sData); // eslint-disable-line sap-no-dom-insertion
} else {
formData.append(data, ""); // eslint-disable-line sap-no-dom-insertion
}
if (this.getParameters()) {
var oParams = this.getParameters();
for (var m = 0; m < oParams.length; m++) {
var sName = oParams[m].getName();
sValue = oParams[m].getValue();
formData.append(sName, sValue); // eslint-disable-line sap-no-dom-insertion
}
}
oXhrEntry.file = formData;
this.sendFiles(this._aXhr, 0);
} else {
this.sendFiles(this._aXhr, 0);
}
this._bUploading = false;
this._resetValueAfterUploadStart();
}
return this;
},
renderer: "sap.ui.unified.FileUploaderRenderer"
});
}
);
<core:FragmentDefinition xmlns="my.test.project.control" xmlns:core="sap.ui.core">
<CustomUploadCollection id="uploadCollection" maximumFilenameLength="55" maximumFileSize="10" multiple="true" sameFilenameAllowed="true"
instantUpload="false" noDataText="{i18n>upload.noFiles}" change="onChange" fileDeleted="onFileDeleted"
filenameLengthExceed="onFilenameLengthExceed" fileSizeExceed="onFileSizeExceed" typeMissmatch="onTypeMissmatch"
uploadComplete="onUploadComplete" beforeUploadStarts="onBeforeUploadStarts"/>
</core:FragmentDefinition>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
7 | |
4 | |
4 | |
4 | |
3 | |
3 | |
3 | |
3 | |
2 | |
2 |