// @ts-nocheck //Loads and extends the openui5 FileListBaseConnector const parsedUI5Version = sap.ui.version.split('.'); //For UI5 version >= 1.80, the location of the FileListBaseConnector is different const connectorPath = Number.parseInt(parsedUI5Version[0], 10) >= 1 && Number.parseInt(parsedUI5Version[1], 10) >= 80 ? 'sap/ui/fl/write/api/connectors/FileListBaseConnector' : 'sap/ui/fl/initial/api/connectors/FileListBaseConnector'; sap.ui.define(['sap/base/util/merge', connectorPath], function(merge, FileListBaseConnector) { return merge({}, FileListBaseConnector, { getFileList: function() { return new Promise(function(resolve, reject) { // If no changes found, maybe because the app was executed without doing a build. // Check for changes folder and load the changes, if any. $.ajax({ url: '/changes/', type: 'GET', cache: false }) .then(function(sChangesFolderContent) { const regex = /(\/changes\/[^"]*\.[a-zA-Z]*)/g; let result = regex.exec(sChangesFolderContent); const aChanges = []; while (result !== null) { aChanges.push(result[1]); result = regex.exec(sChangesFolderContent); } resolve(aChanges); }) .fail(function(obj) { // No changes folder, then just resolve resolve(); }); }); } }); });