delegate.js revision 885ce0f657f606e10da68480eab022c7c2c2f747
/**
* Adds event delegation support to the library.
*
* @module event
* @submodule event-delegate
*/
delegates = {},
specialTypes = {
mouseenter: "mouseover",
mouseleave: "mouseout"
},
resolveTextNode = function(n) {
try {
if (n && 3 == n.nodeType) {
return n.parentNode;
}
} catch(e) { }
return n;
},
spec,
fn,
ev;
var returnVal;
returnVal = false;
}
else {
returnVal = Y.Selector.test(el, selector, container) ? el: getMatch(el.parentNode, selector, container);
}
return returnVal;
};
matched = null;
}
// The target is a descendant of an element matching
// the selector, so crawl up to find the ancestor that
// matches the selector
}
if (matched) {
if (!ev) {
}
contextFn: function() {
return ev.currentTarget;
}
});
if (fn) {
}
else {
}
}
}
}
},
var focusMethods = {
},
function (e) {
},
element];
if (attachFn) {
}
else {
}
},
});
/**
* Sets up event delegation on a container element. The delegated event
* will use a supplied selector to test if the target or one of the
* descendants of the target match it. The supplied callback function
* will only be executed if a match was encountered, and, in fact,
* will be executed for each element that matches if you supply an
* ambiguous selector.
*
* The event object for the delegated event is supplied to the callback
* function. It is modified slightly in order to support all properties
* that may be needed for event delegation. 'currentTarget' is set to
* the element that matched the delegation specifcation. 'container' is
* set to the element that the listener is bound to (this normally would
* be the 'currentTarget').
*
* @method delegate
* @param type {string} the event type to delegate
* @param fn {function} the callback function to execute. This function
* will be provided the event object for the delegated event.
* @param el {string|node} the element that is the delegation container
* @param spec {string} a selector that must match the target of the
* event.
* @param context optional argument that specifies what 'this' refers to.
* @param args* 0..n additional arguments to pass on to the callback function.
* These arguments will be added after the event object.
* @return {EventHandle} the detach handle
* @for YUI
*/
if (!spec) {
return false;
}
// Y.Selector.query returns an array of matches unless specified
// to return just the first match. Since the primary use case for
// event delegation is to use a single event handler on a container,
// Y.delegate doesn't currently support being able to bind a
// single listener to multiple containers.
if (!element) { // Not found, check using onAvailable
}, Event, true, false);
return availHandle;
}
}
// The Custom Event for the delegation spec
// The key to the listener for the event type and container
if (!delegate) {
delegate = {};
if (specialTypes[type]) {
if (!Event._fireMouseEnter) {
Y.log("Delegating a " + type + " event requires the event-mouseenter submodule.", "error", "Event");
return false;
}
}
// Create the DOM Event wrapper that will fire the Custom Event
// Hook into the _delete method for the Custom Event wrapper of this
// DOM Event in order to clean up the 'delegates' map and unsubscribe
// the associated Custom Event listeners fired by this DOM event
// listeners of the Custom Event.
// Delete this event from the map of known delegates
delete delegates[delegateKey];
Y.log("DOM event listener associated with the " + ename + " Custom Event removed. Removing all " + ename + " listeners.", "info", "Event");
// Unsubscribe all listeners of the Custom Event fired
// by this DOM event.
}
}
// Remove element, delegation spec
// Subscribe to the Custom Event for the delegation spec
// Hook into the detach method of the handle in order to clean up the
// 'delegates' map and remove the associated DOM event handler
// responsible for firing this Custom Event if all listener for this
// event have been removed.
Y.after(function () {
Y.log("No more listeners for the " + ename + " Custom Event. Removing its associated DOM event listener.", "info", "Event");
}
}, ceHandle, "detach");
return ceHandle;
};