recordset.js revision e81af05b77b6bb6ebfc812494de2d3a621272d90
/**
* Class name.
*
* @property NAME
* @type String
* @static
* @final
* @value "record"
*/
_setId: function() {
return Y.guid();
},
initializer: function(o) {
},
destructor: function() {
},
return this.get("data");
}
else {
}
return null;
}
},
{
ATTRS: {
id: {
valueFn: "_setId"
},
data : {
value: null
}
}
});
/**
* The Recordset utility provides a standard way for dealing with
* a collection of similar objects.
*
* Extends Y.Base, and augments methods in the collection utility.
*
* @module recordset
*/
/**
* Provides the base Recordset implementation, which can be extended to add
* additional functionality, such as custom indexing. sorting, and filtering.
*
* @module recordset
* @submodule recordset-base
*/
/**
* Publish default functions for events. Create the initial hash table.
*
* @method initializer
*/
initializer: function() {
//set up event listener to fire events when recordset is modified in anyway
this._recordsetChanged(); //Fires recordset changed event when any updates are made to the recordset
this._syncHashTable(); //Fires appropriate hashTable methods on "add", "remove", "update" and "empty" events
},
destructor: function() {
},
/**
* Helper method called upon by add() - it is used to create a new record(s) in the recordset
*
* @method _defAddFn
* @return {Y.Record} A Record instance.
* @private
*/
_defAddFn: function(e) {
i=0;
//index = (Y.Lang.isNumber(index) && (index > -1)) ? index : len;
//if records are to be added one at a time, push them in one at a time
}
else {
index++;
}
}
},
/**
* Helper method called upon by remove() - it is used to remove record(s) from the recordset
*
* @method _defRemoveFn
* @private
*/
_defRemoveFn: function(e) {
if (e.index === 0) {
}
else {
}
},
/**
* Helper method called upon by empty() - it is used to empty the recordset
*
* @method _defEmptyFn
* @private
*/
_defEmptyFn: function(e) {
this._items = [];
},
/**
* Helper method called upon by update() - it is used to update the recordset
*
* @method _defUpdateFn
* @private
*/
_defUpdateFn: function(e) {
}
},
//---------------------------------------------
// Hash Table Methods
//---------------------------------------------
/**
* Method called whenever "recordset:add" event is fired. It adds the new record(s) to the hashtable.
*
* @method _defAddHash
* @private
*/
_defAddHash: function(e) {
}
},
/**
* Method called whenever "recordset:remove" event is fired. It removes the record(s) from the recordset.
*
* @method _defRemoveHash
* @private
*/
_defRemoveHash: function(e) {
}
},
/**
* Method called whenever "recordset:update" event is fired. It updates the record(s) by adding the new ones and removing the overwritten ones.
*
* @method _defUpdateHash
* @private
*/
_defUpdateHash: function(e) {
//deletes the object key that held on to an overwritten record and
//creates an object key to hold on to the updated record
if (e.overwritten[i]) {
}
}
},
/**
* Method called whenever "recordset:empty" event is fired. It empties the hash table.
*
* @method _defEmptyHash
* @private
*/
_defEmptyHash: function() {
this.set('table', {});
},
/**
* Sets up the hashtable with all the records currently in the recordset
*
* @method _setHashTable
* @private
*/
_setHashTable: function() {
for (; i<len; i++) {
}
return obj;
},
/**
* Helper method - it takes an object bag and converts it to a Y.Record
*
* @method _changeToRecord
* @param obj {Object || Y.Record} Any objet literal or Y.Record instance
* @return {Y.Record} A Record instance.
* @private
*/
_changeToRecord: function(obj) {
var oRec;
}
else {
}
return oRec;
},
//---------------------------------------------
// Events
//---------------------------------------------
/**
* Event that is fired whenever the recordset is changed. Note that multiple simultaneous changes still fires this event once.
* (ie: Adding multiple records via an array will only fire this event once at the completion of all the additions)
*
* @method _recordSetUpdated
* @private
*/
_recordsetChanged: function() {
this.fire('change', {});
});
},
/**
* Syncs up the private hash methods with their appropriate triggering events.
*
* @method _syncHashTable
* @private
*/
_syncHashTable: function() {
this.after('add', function(e) {
this._defAddHash(e);
});
this.after('remove', function(e) {
this._defRemoveHash(e);
});
this.after('update', function(e) {
this._defUpdateHash(e);
});
this.after('update', function(e) {
this._defEmptyHash();
});
},
//---------------------------------------------
// Public Methods
//---------------------------------------------
/**
* Returns the record with particular ID or index
*
* @method getRecord
* @param i {String, Number} The ID of the record if a string, or the index if a number.
* @return {Y.Record} An Y.Record instance
* @public
*/
getRecord: function(i) {
return this.get('table')[i];
}
return this._items[i];
}
return null;
},
/**
* Returns the record at a particular index
*
* @method getRecordByIndex
* @param i {Number} Index at which the required record resides
* @return {Y.Record} An Y.Record instance
* @public
*/
getRecordByIndex: function(i) {
return this._items[i];
},
/**
* Returns a range of records beginning at particular index
*
* @method getRecordsByIndex
* @param index {Number} Index at which the required record resides
* @param range {Number} (Optional) Number of records to retrieve. The default is 1
* @return {Array} An array of Y.Record instances
* @public
*/
var i=0, returnedRecords = [];
//Range cannot take on negative values
for(; i<range; i++) {
}
return returnedRecords;
},
/**
* Returns the length of the recordset
*
* @method getLength
* @return {Number} Number of records in the recordset
* @public
*/
getLength: function() {
return this.size();
},
/**
* Returns an array of values for a specified key in the recordset
*
* @method getValuesByKey
* @param index {Number} (optional) Index at which the required record resides
* @return {Array} An array of values for the given key
* @public
*/
getValuesByKey: function(key) {
for( ; i < len; i++) {
}
return retVals;
},
/**
* Adds one or more Records to the RecordSet at the given index. If index is null,
* then adds the Records to the end of the RecordSet.
*
* @method add
* @param oData {Y.Record, Object Literal, Array} A Y.Record instance, An object literal of data or an array of object literals
* @param index {Number} (optional) Index at which to add the record(s)
* @return {Y.Recordset} The updated recordset instance
* @public
*/
//Passing in array of object literals for oData
}
}
}
return this;
},
/**
* Removes one or more Records to the RecordSet at the given index. If index is null,
* then removes a single Record from the end of the RecordSet.
*
* @method remove
* @param index {Number} (optional) Index at which to remove the record(s) from
* @param range {Number} (optional) Number of records to remove (including the one at the index)
* @return {Y.Recordset} The updated recordset instance
* @public
*/
var remRecords=[];
//Default is to only remove the last record - the length is always 1 greater than the last index
//this._recordRemoved(remRecords, index);
//return ({data: remRecords, index:index});
return this;
},
/**
* Empties the recordset
*
* @return {Y.Recordset} The updated recordset instance
* @method empty
* @public
*/
empty: function() {
this.fire('empty', {});
return this;
},
/**
* Updates the recordset with the new records passed in. Overwrites existing records when updating the index with the new records.
*
* @method update
* @param data {Y.Record, Object Literal, Array} A Y.Record instance, An object literal of data or an array of object literals
* @param index {Number} (optional) The index to start updating from.
* @return {Y.Recordset} The updated recordset instance
* @public
*/
//Whatever is passed in, we are changing it to an array so that it can be easily iterated in the _defUpdateFn method
}
return this;
}
},
{
ATTRS: {
/**
* @description An array of records that the recordset is storing
*
* @attribute records
* @public
* @static
* @type array
*/
records: {
getter: function () {
// give them a copy, not the internal object
return Y.Array(this._items);
},
//For allData passed in here, see if each instance is a Record.
//If its not, change it to a record.
//Then push it into the array.
var records = [];
function initRecord(oneData) {
var o;
}
else {
}
}
},
//initialization of the attribute must be done before the first call is made.
//see http://developer.yahoo.com/yui/3/api/Attribute.html#method_addAttr for details on this
lazyAdd: false
},
/**
* @description A hash table where the ID of the record is the key, and the record instance is the value.
*
* @attribute table
* @public
* @static
* @type object
*/
table: {
//Initially, create the hash table with all records currently in the recordset
valueFn: '_setHashTable'
},
/**
* @description The ID to use as the key in the hash table.
*
* @attribute key
* @public
* @static
* @type string
*/
key: {
value:'id',
//set to readonly true. If you want custom hash tables, you should use the recordset-indexer plugin.
readOnly:true
}
}
});
/**
* Provides default and custom sorting functionality to recordset.
*
* @module recordset
* @submodule recordset-sort
*/
}
Y.mix(RecordsetSort, {
NS: "sort",
NAME: "recordsetSort",
ATTRS: {
/**
* @description The last properties used to sort
*
* @attribute lastSortProperties
* @public
* @static
* @type object
*/
value: {
desc:true,
},
validator: function(v) {
}
},
/**
* @description Default sort function to use if none is specified by the user.
* Takes two records, the key to sort by, and whether sorting direction is descending or not (boolean).
* If two records have the same value for a given key, the ID is used as the tie-breaker.
*
* @attribute defaultSorter
* @public
* @static
* @type function
*/
if(sorted === 0) {
}
else {
return sorted;
}
}
},
/**
* @description A boolean telling if the recordset is in a sorted state.
*
* @attribute defaultSorter
* @public
* @static
* @type function
*/
isSorted: {
value: false,
valueFn: "_getState"
}
}
});
/**
* Sets up the default function to use when the "sort" event is fired.
*
* @method initializer
* @public
*/
initializer: function(config) {
},
destructor: function(config) {
},
/**
* Sets up event listeners to listen to "add", "update" and "sort" events, and change the isSorted flag as needed.
*
* @method _getState
* @private
*/
_getState: function() {
this.set('isSorted',false);
}, this);
this.on("sort", function() {
this.set('isSorted', true);
});
},
/**
* Method that all sort calls go through.
* Sets up the lastSortProperties object with the details of the sort, and passes in parameters
* to the "defaultSorter" or a custom specified sort function.
*
* @method _defSortFn
* @private
*/
_defSortFn: function(e) {
this.set('lastSortProperties', e);
//have to work directly with _items here - changing the recordset.
});
},
/**
* Sorts the recordset.
*
* @param field {string} A key to sort by.
* @param desc {boolean} True if you want sort order to be descending, false if you want sort order to be ascending
* @method sort
* @public
*/
},
/**
* Resorts the recordset based on the last-used sort parameters (stored in 'lastSortProperties' ATTR)
*
* @method resort
* @public
*/
resort: function() {
var p = this.get('lastSortProperties');
},
/**
* Reverses the recordset calling the standard array.reverse() method.
*
* @method reverse
* @public
*/
reverse: function() {
},
/**
* Sorts the recordset based on the last-used sort parameters, but flips the order. (ie: Descending becomes ascending, and vice versa).
*
* @method flip
* @public
*/
flip: function() {
var p = this.get('lastSortProperties');
//If a predefined field is not provided by which to sort by, throw an error
}
else {
}
}
});
/**
* Provides the ability to filter through a recordset.
* Uses the filter methods available on Y.Array (see arrayextras submodule) to filter the recordset.
*
* @module recordset
* @submodule recordset-filter
*/
var YArray = Y.Array,
function RecordsetFilter(config) {
}
Y.mix(RecordsetFilter, {
NS: "filter",
NAME: "recordsetFilter",
ATTRS: {
}
});
initializer: function(config) {
//this.publish("filter", {defaultFn: Y.bind("_defFilterFn", this)});
},
destructor: function(config) {
},
/**
* Filter through the recordset with a custom filter function, or a key-value pair.
*
* @param f {Function, String} A custom filter function or a string representing the key to filter by.
* @param v {any} (optional) If a string is passed into f, this represents the value that key should take in order to be accepted by the filter. Do not pass in anything if 'f' is a custom function
* @return recordset {Y.Recordset} A new filtered recordset instance
* @method filter
* @public
*/
filter: function(f,v) {
i = 0,
oRecs = [],
func = f;
//If a key-value pair is passed in, generate a custom function
return true;
}
else {
return false;
}
};
}
//TODO: PARENT CHILD RELATIONSHIP
//return new host.constructor({records:arr});
},
/**
* The inverse of filter. Executes the supplied function on each item.
* Returns a new Recordset containing the items that the supplied
* function returned *false* for.
* @method reject
* @param {Function} f is the function to execute on each item.
* @static
* @return {Y.Recordset} A new Recordset instance containing the items on which the supplied function
* returned false.
*/
reject: function(f) {
},
/**
* Iterates over the Recordset, returning a new Recordset of all the elements
* that match the supplied regular expression
* @method grep
* @param {pattern} pattern The regular expression to test against
* each record.
* @static
* @return {Y.Recordset} A Recordset instance containing all the items in the collection that
* produce a match against the supplied regular expression.
* If no items match, an empty Recordset instance is returned.
*/
}
//TODO: Add more pass-through methods to arrayextras
});
/**
* Provides the ability to store multiple custom hash tables referencing records in the recordset.
* This utility does not support any collision handling. New hash table entries with a used key overwrite older ones.
*
* @module recordset
* @submodule recordset-indexer
*/
function RecordsetIndexer(config) {
}
Y.mix(RecordsetIndexer, {
NS: "indexer",
NAME: "recordsetIndexer",
ATTRS: {
/**
* @description Collection of all the hashTables created by the plugin.
* The individual tables can be accessed by the key they are hashing against.
*
* @attribute hashTables
* @public
* @type object
*/
hashTables: {
value: {
}
},
keys: {
value: {
}
}
}
});
initializer: function(config) {
//setup listeners on recordset events
},
destructor: function(config) {
},
/**
* Setup the hash table for a given key with all existing records in the recordset
*
* @param key {string} A key to hash by.
* @return obj {object} The created hash table
* @method _setHashTable
* @private
*/
_setHashTable: function(key) {
for (; i<len; i++) {
}
return obj;
},
//---------------------------------------------
// Syncing Methods
//---------------------------------------------
/**
* Updates all hash tables when a record is added to the recordset
*
* @method _defAddHash
* @private
*/
_defAddHash: function(e) {
//Go through every hashtable that is stored.
//in each hashtable, look to see if the key is represented in the object being added.
//if the object being added has a key which is being stored by hashtable v, add it into the table.
}
});
});
},
/**
* Updates all hash tables when a record is removed from the recordset
*
* @method _defRemoveHash
* @private
*/
_defRemoveHash: function(e) {
//Go through every hashtable that is stored.
//in each hashtable, look to see if the key is represented in the object being deleted.
//if the hashtable has a key storing a record, and the key and the record both match the record being deleted, delete that row from the hashtable
delete v[reckey];
}
});
});
},
/**
* Updates all hash tables when the recordset is updated (a combination of add and remove)
*
* @method _defUpdateHash
* @private
*/
_defUpdateHash: function(e) {
//TODO: It will be more performant to create a new method rather than using _defAddHash, _defRemoveHash, due to the number of loops. See commented code.
e.removed = e.overwritten;
this._defAddHash(e);
this._defRemoveHash(e);
/*
var tbl = this.get('hashTables'), reckey;
Y.each(tbl, function(v, key) {
Y.each(e.updated, function(o, i) {
//delete record from hashtable if it has been overwritten
reckey = o.getValue(key);
if (reckey) {
v[reckey] = o;
}
//the undefined case is if more records are updated than currently exist in the recordset.
if (e.overwritten[i] && (v[e.overwritten[i].getValue(key)] === e.overwritten[i])) {
delete v[e.overwritten[i].getValue(key)];
}
// if (v[reckey] === o) {
// delete v[reckey];
// }
//
// //add the new updated record if it has a key that corresponds to a hash table
// if (o.getValue(key)) {
// v[o.getValue(key)] = o;
// }
});
});
*/
},
//---------------------------------------------
// Public Methods
//---------------------------------------------
/**
* Creates a new hash table.
*
* @param key {string} A key to hash by.
* @return tbls[key] {object} The created hash table
* @method createTable
* @public
*/
createTable: function(key) {
},
/**
* Get a hash table that hashes records by a given key.
*
* @param key {string} A key to hash by.
* @return table {object} The created hash table
* @method getTable
* @public
*/
}
});
YUI.add('recordset', function(Y){}, '@VERSION@' ,{use:['recordset-base','recordset-sort','recordset-filter','recordset-indexer']});