'use strict';
//region Imports
var util = require('util');
var Argument = require('./system/argument-check.js');
var CollectionBase = require('./collection-base.js');
var ModelError = require('./shared/model-error.js');
var MODEL_STATE = require('./shared/model-state.js');
var CLASS_NAME = 'EditableChildCollectionSync';
//endregion
/**
* Factory method to create definitions of synchronous editable child collections.
*
* Valid collection item types are:
*
* * EditableChildModelSync
*
* @function bo.EditableChildCollectionSync
* @param {string} name - The name of the collection.
* @param {EditableChildModelSync} itemType - The model type of the collection items.
* @returns {EditableChildCollectionSync} The constructor of a synchronous editable child collection.
*
* @throws {@link bo.system.ArgumentError Argument error}: The collection name must be a non-empty string.
* @throws {@link bo.shared.ModelError Model error}: The item type must be an EditableChildModelSync.
*/
var EditableChildCollectionSyncFactory = function (name, itemType) {
name = Argument.inConstructor(CLASS_NAME)
.check(name).forMandatory('name').asString();
// Check tree reference.
if (typeof itemType !== 'string') {
// Verify the model type of the item type.
if (itemType.modelType !== 'EditableChildModelSync')
throw new ModelError('invalidItem',
itemType.prototype.name, itemType.modelType,
CLASS_NAME, 'EditableChildModelSync');
}
/**
* @classdesc
* Represents the definition of a synchronous editable child collection.
* @description
* Creates a new synchronous editable child collection instance.
*
* _The name of the model type available as:
* __<instance>.constructor.modelType__, returns 'EditableChildCollectionSync'._
*
* Valid parent model types are:
*
* * EditableRootModelSync
* * EditableChildModelSync
*
* @name EditableChildCollectionSync
* @constructor
* @param {object} parent - The parent business object.
* @param {bo.shared.EventHandlerList} [eventHandlers] - The event handlers of the instance.
*
* @extends CollectionBase
*
* @throws {@link bo.system.ArgumentError Argument error}:
* The parent object must be an EditableRootModelSync or EditableChildModelSync instance.
*/
var EditableChildCollectionSync = function (parent, eventHandlers) {
CollectionBase.call(this);
// Verify the model type of the parent model.
parent = Argument.inConstructor(name).check(parent).for('parent').asModelType([
'EditableRootModelSync',
'EditableChildModelSync'
]);
// Resolve tree reference.
if (typeof itemType === 'string') {
if (itemType === parent.$modelName)
itemType = parent.constructor;
else
throw new ModelError('invalidTree', itemType, parent.$modelName);
}
var self = this;
var items = [];
/**
* The name of the model.
*
* @name EditableChildCollectionSync#$modelName
* @type {string}
* @readonly
*/
this.$modelName = name;
/**
* The count of the child objects in the collection.
*
* @name EditableChildCollectionSync#count
* @type {number}
* @readonly
*/
Object.defineProperty(self, 'count', {
get: function () {
return items.length;
},
enumerable: false
});
//region Transfer object methods
/**
* Transforms the business object collection to a plain object array to send to the client.
* <br/>_This method is usually called by the parent object._
*
* @function EditableChildCollectionSync#toCto
* @returns {Array.<object>} The client transfer object.
*/
this.toCto = function () {
var cto = [];
items.forEach(function (item) {
cto.push(item.toCto());
});
return cto;
};
/**
* Rebuilds the business object collection from a plain object array sent by the client.
* <br/>_This method is usually called by the parent object._
*
* @function EditableChildCollectionSync#fromCto
* @param {Array.<object>} data - The array of client transfer objects.
*/
this.fromCto = function (data) {
if (data instanceof Array) {
var dataNew = data.filter(function () { return true; });
var itemsLate = [];
var index, cto;
// Update existing items.
for (index = 0; index < items.length; index++) {
var item = items[index];
var dataFound = false;
var i = 0;
for (; i < dataNew.length; i++) {
cto = data[i];
if (item.keyEquals(cto)) {
item.fromCto(cto);
dataFound = true;
break;
}
}
if (dataFound)
dataNew.splice(i, 1);
else
itemsLate.push(index);
}
// Remove non existing items.
for (index = 0; index < itemsLate.length; index++) {
items[itemsLate[index]].remove();
}
// Insert non existing data.
for (index = 0; index < dataNew.length; index++) {
cto = dataNew[index];
var newItem = itemType.create(parent, eventHandlers);
newItem.fromCto(cto);
items.push(newItem);
}
}
};
//endregion
//region Actions
/**
* Creates a new item and adds it to the collection at the specified index.
*
* @function EditableChildCollectionSync#create
* @param {number} index - The index of the new item.
* @returns {EditableChildModelSync} The newly created business object.
*/
this.createItem = function (index) {
var item = itemType.create(parent, eventHandlers);
var ix = parseInt(index, 10);
ix = isNaN(ix) ? items.length : ix;
items.splice(ix, 0, item);
return item;
};
/**
* Initializes the items in the collection with data retrieved from the repository.
*
* _This method is called by the parent object._
*
* @function EditableChildCollectionSync#fetch
* @protected
* @param {Array.<object>} [data] - The data to load into the business object collection.
*/
this.fetch = function (data) {
if (data instanceof Array) {
data.forEach(function (dto) {
var item = itemType.load(parent, dto, eventHandlers);
items.push(item);
});
}
};
/**
* Saves the changes of the business object collection to the repository.
*
* _This method is called by the parent object._
*
* @function EditableChildCollectionSync#save
* @protected
* @param {object} connection - The connection data.
*/
this.save = function (connection) {
for (var i = 0; i < items.length; i++) {
var item = items[i];
item = item.save(connection);
}
items = items.filter(function (item) {
return item.getModelState() !== MODEL_STATE.getName(MODEL_STATE.removed);
});
};
/**
* Marks all items in the collection to be deleted from the repository on next save.
*
* @function EditableChildCollectionSync#remove
*/
this.remove = function () {
items.forEach(function (item) {
item.remove();
});
};
/**
* Indicates whether all items of the collection are valid.
*
* _This method is called by the parent object._
*
* @function EditableChildCollectionSync#isValid
* @protected
* @returns {boolean} True when the business collection is valid, otherwise false.
*/
this.isValid = function () {
return items.every(function (item) {
return item.isValid();
});
};
/**
* Executes validation on all items of the collection.
*
* _This method is called by the parent object._
*
* @function EditableChildCollectionSync#checkRules
* @protected
*/
this.checkRules = function () {
items.forEach(function (item) {
item.checkRules();
});
};
/**
* Gets the broken rules of all items of the collection.
*
* _This method is called by the parent object._
*
* @function EditableChildCollectionSync#getBrokenRules
* @protected
* @param {string} [namespace] - The namespace of the message keys when messages are localizable.
* @returns {Array.<bo.rules.BrokenRulesOutput>} The broken rules of the collection.
*/
this.getBrokenRules = function(namespace) {
var bro = [];
items.forEach(function (item) {
var childBrokenRules = item.getBrokenRules(namespace);
if (childBrokenRules)
bro.push(childBrokenRules);
});
return bro.length ? bro : null;
};
//endregion
//region Public array methods
/**
* Gets a collection item at a specific position.
*
* @function EditableChildCollectionSync#at
* @param {number} index - The index of the required item in the collection.
* @returns {EditableChildModelSync} The required collection item.
*/
this.at = function (index) {
return items[index];
};
/**
* Executes a provided function once per collection item.
*
* @function EditableChildCollectionSync#forEach
* @param {external.cbCollectionItem} callback - Function that produces an item of the new collection.
*/
this.forEach = function (callback) {
items.forEach(callback);
};
/**
* Tests whether all items in the collection pass the test implemented by the provided function.
*
* @function EditableChildCollectionSync#every
* @param {external.cbCollectionItem} callback - Function to test for each collection item.
* @returns {boolean} True when callback returns truthy value for each item, otherwise false.
*/
this.every = function (callback) {
return items.every(callback);
};
/**
* Tests whether some item in the collection pass the test implemented by the provided function.
*
* @function EditableChildCollectionSync#some
* @param {external.cbCollectionItem} callback - Function to test for each collection item.
* @returns {boolean} True when callback returns truthy value for some item, otherwise false.
*/
this.some = function (callback) {
return items.some(callback);
};
/**
* Creates a new array with all collection items that pass the test
* implemented by the provided function.
*
* @function EditableChildCollectionSync#filter
* @param {external.cbCollectionItem} callback - Function to test for each collection item.
* @returns {Array.<EditableChildModelSync>} The new array of collection items.
*/
this.filter = function (callback) {
return items.filter(callback);
};
/**
* Creates a new array with the results of calling a provided function
* on every item in this collection.
*
* @function EditableChildCollectionSync#map
* @param {external.cbCollectionItem} callback - Function to test for each collection item.
* @returns {Array.<*>} The new array of callback results.
*/
this.map = function (callback) {
return items.map(callback);
};
/**
* Sorts the items of the collection in place and returns the collection.
*
* @function EditableChildCollectionSync#sort
* @param {external.cbCompare} [fnCompare] - Function that defines the sort order.
* If omitted, the collection is sorted according to each character's Unicode
* code point value, according to the string conversion of each item.
* @returns {EditableChildCollectionSync} The sorted collection.
*/
this.sort = function (fnCompare) {
return items.sort(fnCompare);
};
//endregion
// Immutable object.
Object.freeze(this);
};
util.inherits(EditableChildCollectionSync, CollectionBase);
/**
* The name of the model type.
*
* @property {string} EditableChildCollectionSync.constructor.modelType
* @default EditableChildCollectionSync
* @readonly
*/
Object.defineProperty(EditableChildCollectionSync, 'modelType', {
get: function () { return CLASS_NAME; }
});
return EditableChildCollectionSync;
};
module.exports = EditableChildCollectionSyncFactory;