widget-parent.js revision 0c7476a63b7d7b81ade0fbc59f7b18b15b2fd4c8
YUI.add('widget-parent', function(Y) {
// TO DO
// - Ask Adam about "queuable" configuration for events
// - Confirm implementation of the "items" Attribute. Goals were/are:
// 1. Provide convience of being able to set once via the constructor only
// 2. Disallow setting via "set"
// 3. Provide get access through standard "get()"
// - Talk to Adam about being able to listen for "selectedChange" and
// and "focusedChange" at the parent level
// - Future performance optimization, if add() is passed a config,
// defer the instance creation until the instance is needed
/**
* Provides an extension enabling a Widget to be a parent of another Widget.
*
* @module widget-parent
*/
var Lang = Y.Lang;
/**
* Widget extension providing functionality enabling a Widget to be a
* parent of another Widget.
*
* @class WidgetParent
* @param {Object} config User configuration object.
*/
function Parent() {
}
Parent.ATTRS = {
/**
* @attribute defaultItemType
* @type String
*
* @description String representing the default type of the children
* managed by this Widget.
*/
defaultItemType: {
validator: Lang.isString
},
/**
* @attribute activeItem
* @type Widget
* @readOnly
*
* @description Returns the Widget's currently focused descendant Widget.
*/
activeItem: {
readOnly: true
},
/**
* @attribute multiple
* @type Boolean
* @default false
* @writeOnce
*
* @description Boolean indicating if multiple children can be selected at
* once.
*/
multiple: {
value: false,
validator: Lang.isBoolean,
writeOnce: true
},
/**
* @attribute selection
* @type {Array|Widget}
* @readOnly
*
* @description Returns the currently selected child Widget. If the
* <code>mulitple</code> attribte is set to <code>true</code> will
* return an array of the currently selected children.
*/
selection: {
readOnly: true
},
/**
* @attribute items
* @type Array
* @readOnly
*
* @description Returns an array of all of the children that are
* direct descendants.
*/
items: {
readOnly: true,
valueFn: function () {
return [];
}
}
};
Parent.prototype = {
_afterSelectedChange: function (event) {
this._setSelection(event.target);
},
_setSelection: function (item) {
var selection;
if (this.get("root").get("multiple")) {
selection = [];
Y.each(this.get("items"), function (v) {
if (v.get("selected") > 0) {
selection.push(v);
}
});
if (selection.length === this.get("items").length) {
// Fully selected
this.set("selected", 1);
}
else {
// Partially selected
this.set("selected", 2);
}
}
else {
if (item.get("selected") > 0) {
selection = item;
}
}
this._set("selection", selection);
},
_setActiveItem: function (event) {
var val = null;
if (event.newVal === true) {
val = event.target;
}
this._set("activeItem", val);
},
/**
* Creates an instance of a child Widget using the specified configuration.
* By default Widget instances will be created of the type specified
* by the <code>defaultItemType</code> attribute. Types can be explicitly
* defined via the <code>type</code> property of the configuration object
* literal.
*
* @method _createItem
* @protected
* @param config {Object} Object literal representing the configuration
* used to create an instance of a Widget.
*/
_createItem: function (config) {
var item,
sType,
fnConstructor;
if (!(config instanceof Y.Widget)) {
if (config.type) {
sType = config.type;
delete config[sType];
}
else {
sType = this.get("defaultItemType");
}
fnConstructor = Y[sType];
if (fnConstructor) {
item = new fnConstructor(config);
}
}
return item;
},
/**
* Default itemAdded handler
*
* @method _defItemAdded
* @protected
* @param event {EventFacade} The Event object
* @param item {Widget} The Widget instance, or configuration
* object for the Widget to be added as a child.
* @param index {Number} Number representing the position at
* which the child will be inserted.
*/
_defItemAdded: function (event) {
var item = event.item,
index = event.index,
aItems = this.get("items");
if (item.get("parent")) {
item.remove();
}
if (Lang.isNumber(index)) {
aItems.splice(index, 0, item);
}
else {
aItems.push(item);
}
this._set("items", aItems);
item._set("parent", this);
item.addTarget(this);
if (item.get("selected")) {
this._setSelection(item);
}
item.after("selectedChange", Y.bind(this._afterSelectedChange, this));
item.after("focusedChange", Y.bind(this._setActiveItem, this));
},
/**
* Default itemRemoved handler
*
* @method _defItemRemoved
* @protected
* @param event {EventFacade} The Event object
* @param item {Widget} The Widget instance to be removed.
* @param index {Number} Number representing the index of the Widget to
* be removed.
*/
_defItemRemoved: function (event) {
var item = event.item,
index = event.index,
items = this.get("items");
if (item.get("focused")) {
item.set("focused", false);
}
if (item.get("selected")) {
item.set("selected", 0);
}
items.splice(index, 1);
this._set("items", items);
item.removeTarget(this);
item._set("parent", null);
},
/**
* @method add
* @param item {Widget|Object} The Widget instance, or configuration
* object for the Widget to be added as a child.
* @param index {Number} (Optional.) Number representing the position at
* which the child should be inserted.
* @description Adds a Widget as a child. If the specified Widget already
* has a parent it will be removed from its current parent before
* being added as a child.
* @return {Widget} Widget instance that was successfully added, otherwise
* null.
*/
add: function (item, index) {
var aItems,
oItem,
returnVal,
success = false;
if (Lang.isArray(item)) {
aItems = [];
Y.each(item, function (v) {
oItem = this.add(v);
if (oItem) {
aItems.push(oItem);
}
}, this);
if (aItems.length > 0) {
returnVal = aItems;
}
}
else {
oItem = this._createItem(item);
if (oItem instanceof Y.Widget) {
success = this.fire("itemAdded", { item: oItem, index: index });
}
returnVal = success ? oItem : null;
}
return returnVal;
},
/**
* @method remove
* @param index {Number} (Optional.) Number representing the index of the
* child to be removed.
* @description Removes the Widget from its parent. Optionally, can remove
* a child by specifying its index.
* @return {Widget} Widget instance that was successfully removed, otherwise
* null.
*/
remove: function (index) {
var items = this.get("items"),
item,
success = false;
if (Lang.isNumber(index)) {
item = items[index];
if (item) {
success = this.fire("itemRemoved", { item: item, index: index });
}
}
return success ? item : null;
},
/**
* @method removeAll
* @description Removes all of the children from the Widget.
* @return {Array} Array of Widgets that were successfully removed.
*/
removeAll: function () {
var items = this.get("items"),
aRemoved = [],
item;
Y.each(items, function (v, k) {
item = this.remove(k);
if (item) {
aRemoved.push();
}
});
return (aRemoved.length > 0 ? aRemoved : null);
},
/**
* @method item
* @description Retrieves the child Widget at the specified index.
* @return {Widget} Widget instance.
*/
item: function (index) {
var items = this.get("items");
return items ? items[index] : null;
},
renderUI: function () {
var content = this.get("contentBox");
Y.each(this.get("items"), function (item) {
item.render(content);
});
},
initializer: function (config) {
/**
* Fires when a Widget is add as a child.
* <p>
* Subscribers to the "on" moment of this event, will be notified
* before a child is added.
* </p>
* <p>
* Subscribers to the "after" moment of this event, will be notified
* after a child is added.
* </p>
*
* @event widget:itemAdded
* @preventable _defItemAdded
* @param {EventFacade} e The Event Facade
*/
this.publish("itemAdded", { defaultFn: this._defItemAdded });
/**
* Fires when a child Widget is removed.
* <p>
* Subscribers to the "on" moment of this event, will be notified
* before a child is removed.
* </p>
* <p>
* Subscribers to the "after" moment of this event, will be notified
* after a child is removed.
* </p>
*
* @event widget:itemRemoved
* @preventable _defItemAdded
* @param {EventFacade} e The Event Facade
*/
this.publish("itemRemoved", { defaultFn: this._defItemRemoved });
if (config && config.items) {
this.add(config.items);
}
},
destructor: function () {
}
};
Y.WidgetParent = Parent;
}, '@VERSION@' ,{requires:['widget']});