features.opensocial-reference.collection.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shindig-features Show documentation
Show all versions of shindig-features Show documentation
Packages all the features that shindig provides into a single jar file to allow
loading from the classpath
The newest version!
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
/*global opensocial */
/**
* @fileoverview Collection of multiple objects with useful accessors.
*
* May also represent subset of a larger collection (i.e. page 1 of 10), and
* contain information about the larger collection.
*/
/**
* @class
* Collection of multiple objects with useful accessors.
* May also represent subset of a larger collection
* (for example, page 1 of 10)
* and contain information about the larger collection.
*
* @name opensocial.Collection
*/
/**
* Create a collection.
*
* @private
* @constructor
* @param {Array} array
* @param {number=} opt_offset
* @param {number=} opt_totalSize
*/
opensocial.Collection = function(array, opt_offset, opt_totalSize) {
this.array_ = array || [];
this.offset_ = opt_offset || 0;
this.totalSize_ = opt_totalSize || this.array_.length;
};
/**
* Finds the entry with the given ID value, or returns null if none is found.
* @param {string} id The ID to look for
* @return {?Object} The data
*/
opensocial.Collection.prototype.getById = function(id) {
// TODO(doll): A non-linear search would be better
for (var i = 0; i < this.size(); i++) {
var item = this.array_[i];
if (item.getId() === id) {
return item;
}
}
return null;
};
/**
* Gets the size of this collection,
* which is equal to or less than the
* total size of the result.
*
* @return {number} The size of this collection
*/
opensocial.Collection.prototype.size = function() {
return this.array_.length;
};
/**
* Executes the provided function once per member of the collection,
* with each member in turn as the
* parameter to the function.
*
* @param {function(Object)} fn The function to call with each collection entry
*/
opensocial.Collection.prototype.each = function(fn) {
for (var i = 0; i < this.size(); i++) {
fn(this.array_[i]);
}
};
/**
* Returns an array of all the objects in this collection.
* @return {Array.
© 2015 - 2024 Weber Informatics LLC | Privacy Policy