@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
182 lines (160 loc) • 5.24 kB
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
// Provides the XML model implementation of a list binding
sap.ui.define([
'sap/ui/model/ChangeReason',
'sap/ui/model/ClientListBinding',
"sap/ui/util/XMLHelper",
"sap/base/util/deepEqual",
"sap/base/util/each"
],
function(ChangeReason, ClientListBinding, XMLHelper, deepEqual, each) {
"use strict";
/**
*
* @class
* List binding implementation for XML format
*
* @param {sap.ui.model.xml.XMLModel} oModel
* @param {string} sPath
* @param {sap.ui.model.Context} oContext
* @param {sap.ui.model.Sorter|sap.ui.model.Sorter[]} [aSorters] initial sort order (can be either a sorter or an array of sorters)
* @param {sap.ui.model.Filter|sap.ui.model.Filter[]} [aFilters] predefined filter/s (can be either a filter or an array of filters)
* @param {object} [mParameters]
* @alias sap.ui.model.xml.XMLListBinding
* @extends sap.ui.model.ClientListBinding
*/
var XMLListBinding = ClientListBinding.extend("sap.ui.model.xml.XMLListBinding");
/**
* Return contexts for the list or a specified subset of contexts
* @param {int} [iStartIndex=0] the startIndex where to start the retrieval of contexts
* @param {int} [iLength=length of the list] determines how many contexts to retrieve beginning from the start index.
* Default is the whole list length.
*
* @return {sap.ui.model.Context[]} the contexts array
* @protected
*/
XMLListBinding.prototype.getContexts = function(iStartIndex, iLength) {
this.iLastStartIndex = iStartIndex;
this.iLastLength = iLength;
if (!iStartIndex) {
iStartIndex = 0;
}
if (!iLength) {
iLength = Math.min(this.iLength, this.oModel.iSizeLimit);
}
var aContexts = this._getContexts(iStartIndex, iLength),
aContextData = [];
if (this.bUseExtendedChangeDetection) {
for (var i = 0; i < aContexts.length; i++) {
aContextData.push(this.getContextData(aContexts[i]));
}
//Check diff
if (this.aLastContexts && iStartIndex < this.iLastEndIndex) {
aContexts.diff = this.diffData(this.aLastContextData, aContextData);
}
this.iLastEndIndex = iStartIndex + iLength;
this.aLastContexts = aContexts.slice(0);
this.aLastContextData = aContextData.slice(0);
}
return aContexts;
};
XMLListBinding.prototype.getCurrentContexts = function() {
if (this.bUseExtendedChangeDetection) {
return this.aLastContexts || [];
} else {
return this.getContexts(this.iLastStartIndex, this.iLastLength);
}
};
/**
* Returns the entry data as required for change detection/diff. For the XMLModel this is the node
* referenced by the context, serialized as XML.
*
* @private
*/
XMLListBinding.prototype.getEntryData = function(oContext) {
return XMLHelper.serialize(oContext.getObject());
};
/**
* Update the list, indices array and apply sorting and filtering
* @private
*/
XMLListBinding.prototype.update = function(){
var oList = this.oModel._getObject(this.sPath, this.oContext);
if (oList) {
this.oList = [];
var that = this;
if (this.bUseExtendedChangeDetection) {
each(oList, function(sKey, oNode) {
that.oList.push(oNode.cloneNode(true));
});
} else {
this.oList = oList.slice(0);
}
this.updateIndices();
this.applyFilter();
this.applySort();
this.iLength = this._getLength();
} else {
this.oList = [];
this.aIndices = [];
this.iLength = 0;
}
};
/**
* Check whether this Binding would provide new values and in case it changed,
* inform interested parties about this.
*
* @param {boolean} bForceupdate
*
*/
XMLListBinding.prototype.checkUpdate = function(bForceupdate){
if (this.bSuspended && !this.bIgnoreSuspend && !bForceupdate) {
return;
}
if (!this.bUseExtendedChangeDetection) {
var oList = this.oModel._getObject(this.sPath, this.oContext) || [];
if (oList.length != this.oList.length || bForceupdate) {
// TODO does not work currently, so so old behavior
//if (!jQuery.sap.equal(this.oList, oList)) {
this.update();
this._fireChange({reason: ChangeReason.Change});
}
} else {
var bChangeDetected = false;
var that = this;
//If the list has changed we need to update the indices first
var oList = this.oModel._getObject(this.sPath, this.oContext) || [];
if (this.oList.length != oList.length) {
bChangeDetected = true;
}
if (!deepEqual(this.oList, oList)) {
this.update();
}
//Get contexts for visible area and compare with stored contexts
var aContexts = this._getContexts(this.iLastStartIndex, this.iLastLength);
if (this.aLastContexts) {
if (this.aLastContexts.length != aContexts.length) {
bChangeDetected = true;
} else {
each(this.aLastContextData, function(iIndex, oLastData) {
var oCurrentData = that.getContextData(aContexts[iIndex]);
if (oCurrentData !== oLastData) {
bChangeDetected = true;
return false;
}
});
}
} else {
bChangeDetected = true;
}
if (bChangeDetected || bForceupdate) {
this._fireChange({reason: ChangeReason.Change});
}
}
};
return XMLListBinding;
});