@sapui5/sap.suite.ui.generic.template 1.120.15 → 1.120.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/sap/suite/ui/generic/template/.library +1 -1
- package/src/sap/suite/ui/generic/template/AnalyticalListPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/Canvas/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ListReport/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/ObjectPage/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickCreate/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/QuickView/manifest.json +1 -1
- package/src/sap/suite/ui/generic/template/lib/AppComponent.js +1 -1
- package/src/sap/suite/ui/generic/template/lib/CRUDHelper.js +16 -16
- package/src/sap/suite/ui/generic/template/lib/navigation/NavigationController.js +1 -1
- package/src/sap/suite/ui/generic/template/library.js +1 -1
package/package.json
CHANGED
|
@@ -922,7 +922,7 @@ sap.ui.define([
|
|
|
922
922
|
* @extends sap.ui.core.UIComponent
|
|
923
923
|
* @abstract
|
|
924
924
|
* @author SAP SE
|
|
925
|
-
* @version 1.120.
|
|
925
|
+
* @version 1.120.16
|
|
926
926
|
* @name sap.suite.ui.generic.template.lib.AppComponent
|
|
927
927
|
*/
|
|
928
928
|
return UIComponent.extend("sap.suite.ui.generic.template.lib.AppComponent", {
|
|
@@ -4,7 +4,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
4
4
|
|
|
5
5
|
var oRejectedPromise = Promise.reject();
|
|
6
6
|
oRejectedPromise.catch(Function.prototype);
|
|
7
|
-
|
|
7
|
+
|
|
8
8
|
function createNonDraft(oParentContext, sBindingPath, oModel, vPredefinedValues, bMakeRequestsCanonical) {
|
|
9
9
|
var oCreateContext = oModel.createEntry(sBindingPath, {
|
|
10
10
|
properties: vPredefinedValues,
|
|
@@ -184,7 +184,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
184
184
|
MessageUtils.handleTransientMessages(oTemplateContract);
|
|
185
185
|
});
|
|
186
186
|
};
|
|
187
|
-
|
|
187
|
+
|
|
188
188
|
var fnPropertyChanged = function(oEvent){
|
|
189
189
|
oTemplateContract.oTemplatePrivateGlobalModel.setProperty("/generic/draftIndicatorState", sap.m.DraftIndicatorState.Clear);
|
|
190
190
|
|
|
@@ -242,7 +242,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
242
242
|
var oEditEntityPromise = oTransactionController.editEntity(oContext, false, sRootExpand);
|
|
243
243
|
resolve(oEditEntityPromise);
|
|
244
244
|
// The active context is invalidated as the DraftAdministrativeData of the context(the active context) has changed after draft creation.
|
|
245
|
-
// This is done to keep the DraftAdministrativeData of the record updated.
|
|
245
|
+
// This is done to keep the DraftAdministrativeData of the record updated.
|
|
246
246
|
oEditEntityPromise.then(function(){
|
|
247
247
|
oModel.invalidateEntry(oContext);
|
|
248
248
|
});
|
|
@@ -331,8 +331,8 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
331
331
|
oTemplateContract.oBusyHelper.setBusy(oRet, true);
|
|
332
332
|
return oRet;
|
|
333
333
|
}
|
|
334
|
-
|
|
335
|
-
/*
|
|
334
|
+
|
|
335
|
+
/*
|
|
336
336
|
Allows direct edit on the entires on the list, unlike the method 'edit'above, this method first edit the entry with preserveChanges as true
|
|
337
337
|
If the response indicates an unsaved change or locked record, a corresponding dialog is shown to proceed or cancel with the edit.
|
|
338
338
|
*/
|
|
@@ -346,7 +346,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
346
346
|
oViewDependencyHelper.setRootPageToDirty();
|
|
347
347
|
resolve({
|
|
348
348
|
context: oResponse.context
|
|
349
|
-
});
|
|
349
|
+
});
|
|
350
350
|
}, function(oResponse) {
|
|
351
351
|
if (oResponse && oResponse.response && oResponse.response.statusCode === "409") {
|
|
352
352
|
//remove transient message associated with rc 409 in order to prevent message pop-up
|
|
@@ -364,7 +364,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
364
364
|
oViewDependencyHelper.setRootPageToDirty();
|
|
365
365
|
resolve({
|
|
366
366
|
context: oResponse.context
|
|
367
|
-
});
|
|
367
|
+
});
|
|
368
368
|
});
|
|
369
369
|
oApplication.getBusyHelper().setBusy(oUnsavedChangesEditPromise, true);
|
|
370
370
|
};
|
|
@@ -393,7 +393,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
393
393
|
});
|
|
394
394
|
return oPromise;
|
|
395
395
|
}
|
|
396
|
-
|
|
396
|
+
|
|
397
397
|
function deleteEntity(oDraftController, fnExecuteDelete, oApplicationProxy, oContext, bIsActiveEntity, sActionType){
|
|
398
398
|
var bHasActiveEntity = oDraftController.hasActiveEntity(oContext);
|
|
399
399
|
var oSiblingPromise = bHasActiveEntity && !bIsActiveEntity ? oApplicationProxy.getDraftSiblingPromise(oContext) : Promise.resolve();
|
|
@@ -404,10 +404,10 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
404
404
|
return { context: oActive };
|
|
405
405
|
};
|
|
406
406
|
var oCancellationPromise = oDeletePromise.then(fnTransformActiveContext);
|
|
407
|
-
oApplicationProxy.cancellationStarted(oContext, oCancellationPromise, sActionType, oActive);
|
|
407
|
+
oApplicationProxy.cancellationStarted(oContext, oCancellationPromise, sActionType, oActive);
|
|
408
408
|
}
|
|
409
409
|
return oDeletePromise;
|
|
410
|
-
});
|
|
410
|
+
});
|
|
411
411
|
}
|
|
412
412
|
|
|
413
413
|
function discardDraft(oDraftController, oTransactionController, oApplicationProxy, oContext){
|
|
@@ -416,7 +416,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
416
416
|
};
|
|
417
417
|
return deleteEntity(oDraftController, fnExecuteDelete, oApplicationProxy, oContext, false, "discardAction");
|
|
418
418
|
}
|
|
419
|
-
|
|
419
|
+
|
|
420
420
|
function fnGetMessagesFromContextFilter(oContextFilter, oMessageManager, bExcludeETagMessages) {
|
|
421
421
|
var oMessageModel = oMessageManager.getMessageModel();
|
|
422
422
|
var oMessageBinding = oMessageModel.bindList("/", null, null, [oContextFilter]); // Note: It is necessary to create this binding each time, since UI5 does not update it (because there is no change handler)
|
|
@@ -425,7 +425,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
425
425
|
});
|
|
426
426
|
if (bExcludeETagMessages){
|
|
427
427
|
aRet = aRet.filter(function(oMessage){
|
|
428
|
-
return !MessageUtils.isMessageETagMessage(oMessage);
|
|
428
|
+
return !MessageUtils.isMessageETagMessage(oMessage);
|
|
429
429
|
});
|
|
430
430
|
}
|
|
431
431
|
return aRet;
|
|
@@ -479,7 +479,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
479
479
|
// In case 2 and 3 it is expected that at least one of those messages is an error message.
|
|
480
480
|
// Note that in case 2 and possibly also in case 1 we need to suppress the generic error message (like "An exception has occurred") which is coming as a transient message to
|
|
481
481
|
// indicate that the activation request has failed.
|
|
482
|
-
// Note that case 3 has 2 subcases
|
|
482
|
+
// Note that case 3 has 2 subcases
|
|
483
483
|
// 3a) Some severe technical error has happened which even prevented the Preparation call to be executed successfully
|
|
484
484
|
// 3b) The Preparation call was successful and did not find any reason which prevents activation. However, the call of activation failed.
|
|
485
485
|
// Note that this failure may still be because of business reasons (excluding reasons named in case 1) or technical reasons.
|
|
@@ -526,7 +526,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
526
526
|
var bHasStateError = aCurrentStateMessages.some(function(oMessage) {
|
|
527
527
|
return oMessage.type === "Error";
|
|
528
528
|
});
|
|
529
|
-
var bIsWarning = bIs412 && !bHasStateError;
|
|
529
|
+
var bIsWarning = bIs412 && !bHasStateError && !!aTransientWarnings.length;
|
|
530
530
|
if (bIsWarning) {
|
|
531
531
|
// Only show transient warnings in the confirmation popup if no state warning is available (note that backend sometimes sends warnings redundantly as transient and state message)
|
|
532
532
|
var bHasStateWarning = aCurrentStateMessages.some(function(oMessage) {
|
|
@@ -541,7 +541,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
541
541
|
if (oCustomMessageProvider){
|
|
542
542
|
oServices.oApplication.registerCustomMessageProvider(oCustomMessageProvider);
|
|
543
543
|
}
|
|
544
|
-
oServices.oApplication.removeTransientMessages();
|
|
544
|
+
oServices.oApplication.removeTransientMessages();
|
|
545
545
|
var fnOnConfirmationPopupClose = function(bConfirmed){
|
|
546
546
|
if (oCustomMessageProvider){ // if transient messages have been shown in the confirmation popup they can be removed from the message model when the confirmation popup is closed
|
|
547
547
|
oServices.oApplication.deregisterCustomMessageProvider(oCustomMessageProvider);
|
|
@@ -581,7 +581,7 @@ sap.ui.define(["sap/ui/model/Context", "sap/suite/ui/generic/template/lib/Messag
|
|
|
581
581
|
oBusyHelper.setBusy(oGetSiblingPromise);
|
|
582
582
|
oGetSiblingPromise.then(fnActivate.bind(null, false));
|
|
583
583
|
});
|
|
584
|
-
|
|
584
|
+
|
|
585
585
|
oBusyHelper.setBusy(oActivationStartedPromise);
|
|
586
586
|
});
|
|
587
587
|
return oRet;
|
|
@@ -3051,7 +3051,7 @@ sap.ui.define(["sap/ui/base/Object",
|
|
|
3051
3051
|
* @param {sap.suite.ui.generic.template.lib.AppComponent} oAppComponent The AppComponent instance
|
|
3052
3052
|
* @public
|
|
3053
3053
|
* @extends sap.ui.base.Object
|
|
3054
|
-
* @version 1.120.
|
|
3054
|
+
* @version 1.120.16
|
|
3055
3055
|
* @since 1.30.0
|
|
3056
3056
|
* @alias sap.suite.ui.generic.template.lib.NavigationController
|
|
3057
3057
|
*/
|