@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
61 lines (54 loc) • 1.67 kB
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define([], function() {
"use strict";
/**
* Provide methods for sap.m.routing.Target in async mode
* @private
* @experimental
* @since 1.33
*/
return {
/**
* @private
*/
_place : function (vData) {
var oPromise = this._super._place.apply(this, arguments),
that = this;
// chain to navigation promise to keep the order of navigations!
return this._oTargetHandler._chainNavigation(function() {
return oPromise.then(function(oViewInfo) {
that._oTargetHandler.addNavigation({
navigationIdentifier : that._oOptions._name,
transition: that._oOptions.transition,
transitionParameters: that._oOptions.transitionParameters,
eventData: vData,
targetControl: oViewInfo.control,
aggregationName: that._oOptions.controlAggregation,
view: oViewInfo.view,
preservePageInSplitContainer: that._oOptions.preservePageInSplitContainer,
placeholderConfig: oViewInfo.placeholderConfig,
placeholderShown: oViewInfo.placeholderShown
});
// do not forward the route config to navigation
if (vData) {
delete vData.routeConfig;
}
return oViewInfo;
});
}, this._oOptions._name);
},
showPlaceholder : function(mSettings) {
return this._oTargetHandler.showPlaceholder(mSettings);
},
hidePlaceholder : function() {
/**
* Overriding the hidePlaceholder to empty function because the placeholder is removed
* after all targets are displayed
*/
}
};
}, /* bExport= */ true);