YUI 3.x Home -

YUI Library Examples: Attribute: Attribute Change Events

Attribute: Attribute Change Events

Attribute change events are one of the key benefits of using attributes to maintain state for your objects, instead of regular object properties. This example shows how you can listen for attribute change events and work with the event payload they receive.
Enter a new value and click the "Change Value" button:

:

:

:

Listening For Attribute Change Events

In this example, we'll look at how you can setup listeners for attribute change events, and work with the event payload which the listeners receive.

Setting Up A Custom Class With Attribute

We start by setting up the same custom class we created for the basic example with 3 attributes foo, bar and foobar, using the code below:

  1. YUI().use("attribute", "node", function(Y) {
  2.  
  3. // Setup a custom class with attribute support
  4. function MyClass(cfg) {
  5.  
  6. // Setup attribute configuration
  7. var attrs = {
  8. "foo" : {
  9. value:5
  10. },
  11.  
  12. "bar" : {
  13. value:"Hello World!"
  14. },
  15.  
  16. "foobar" : {
  17. value:true
  18. }
  19. };
  20.  
  21. this.addAttrs(attrs, cfg);
  22. }
  23.  
  24. Y.augment(MyClass, Y.Attribute);
  25.  
  26. });
YUI().use("attribute", "node", function(Y) {
 
    // Setup a custom class with attribute support
    function MyClass(cfg) {
 
        // Setup attribute configuration
        var attrs = {
            "foo" : {
                value:5
            },
 
            "bar" : {
                value:"Hello World!"
            },
 
            "foobar" : {
                value:true
            }
        };
 
        this.addAttrs(attrs, cfg);
    }
 
    Y.augment(MyClass, Y.Attribute);
 
});

Registering Event Listeners

Once we have an instance of the custom class, we can use the on and after methods provided by Attribute, to listen for changes in the value of each of the attributes:

  1. var o1 = new MyClass();
  2.  
  3. ...
  4.  
  5. // Event Listners
  6. o1.after("fooChange", function(e) {
  7. displayEvent(e, "After fooChange");
  8. currentValSpan.set("innerHTML", e.newVal);
  9. });
  10.  
  11. o1.after("barChange", function(e) {
  12. displayEvent(e, "After barChange");
  13. currentValSpan.set("innerHTML", e.newVal);
  14. });
  15.  
  16. o1.on("foobarChange", function(e) {
  17.  
  18. if (preventFoobarChk.get("checked")) {
  19.  
  20. // Calling preventDefault, in an "on" listener
  21. // will prevent the attribute change from occuring
  22. // and the after listener being called.
  23.  
  24. e.preventDefault();
  25. displayEvent(null, "On foobarChange (prevented)");
  26. }
  27.  
  28. });
  29.  
  30. o1.after("foobarChange", function(e) {
  31.  
  32. // This foobar after listener will not get called,
  33. // if we end up preventing default in the "on"
  34. // listener above.
  35.  
  36. displayEvent(e, "After foobarChange");
  37. currentValSpan.set("innerHTML", e.newVal);
  38. });
var o1 = new MyClass();
 
...
 
// Event Listners
o1.after("fooChange", function(e) {
    displayEvent(e, "After fooChange");
    currentValSpan.set("innerHTML", e.newVal);
});
 
o1.after("barChange", function(e) {
    displayEvent(e, "After barChange");
    currentValSpan.set("innerHTML", e.newVal);
});
 
o1.on("foobarChange", function(e) {
 
    if (preventFoobarChk.get("checked")) {
 
        // Calling preventDefault, in an "on" listener
        // will prevent the attribute change from occuring
        // and the after listener being called.
 
        e.preventDefault();
        displayEvent(null, "On foobarChange (prevented)");
    }
 
});
 
o1.after("foobarChange", function(e) {
 
    // This foobar after listener will not get called, 
    // if we end up preventing default in the "on" 
    // listener above.
 
    displayEvent(e, "After foobarChange");
    currentValSpan.set("innerHTML", e.newVal);
});

As seen in the above code, the event type for attribute change events is created by concatenating the attribute name with "Change" (e.g. "fooChange"), and this event type is used for both the on and after subscription methods. Whenever an attribute value is changed through Attribute's set method, both "on" and "after" subscribers are notified.

On vs. After

on : Subscribers to the "on" moment, will be notified before any actual state change has occurred. This provides the opportunity to prevent the state change from occurring, using the preventDefault method of the event facade object passed to the subscriber. If you use get to retrieve the value of the attribute in an "on" subscriber, you will receive the current, unchanged value. However the event facade provides access to the value which the attribute is being set to, through it's newVal property.

after : Subscribers to the "after" moment, will be notified after the attribute's state has been updated. This provides the opportunity to update state in other parts of your application, in response to a change in the attribute's state.

Based on the definition above, after listeners are not invoked if state change is prevented, for example, due to one of the on listeners calling preventDefault on the event object, as is done in the on listener for the foobar attribute:

  1. o1.on("foobarChange", function(event) {
  2.  
  3. // Calling preventDefault, in an "on" listener
  4. // will prevent the attribute change from occurring
  5. // and prevent the after listeners from being called
  6. displayEvent(event, "on foobarChange (change prevented)");
  7.  
  8. event.preventDefault();
  9. });
o1.on("foobarChange", function(event) {
 
    // Calling preventDefault, in an "on" listener
    // will prevent the attribute change from occurring
    // and prevent the after listeners from being called
    displayEvent(event, "on foobarChange (change prevented)");
 
    event.preventDefault();
});

For primitive values (non-Object values), the after listeners will also not be invoked if there is no change in the actual value of the attribute. That is, if the new value of the attribute is the same as the current value (based on the identity operator, ===), the after listeners will not be notified because there is no change in state. You can see this, by setting an attribute to the same value twice in a row.

Event Facade

The event object (an instance of EventFacade) passed to attribute change event subscribers, has the following interesting properties and methods related to attribute management:

newVal
The value which the attribute will be set to (in the case of "on" subscribers), or has been set to (in the case of "after" subscribers
prevVal
The value which the attribute is currently set to (in the case of "on" subscribers), or was previously set to (in the case of "after" subscribers
attrName
The name of the attribute which is being set
subAttrName
Attribute also allows you to set nested properties of attributes which have values which are objects through the set method (e.g. o1.set("x.y.z")). This property will contain the path to the property which was changed.
preventDefault()
This method can be called in an "on" subscriber to prevent the attribute's value from being updated (the default behavior). Calling this method in an "after" listener has no impact, since the default behavior has already been invoked.
stopImmediatePropagation()
This method can be called in "on" or "after" subscribers, and will prevent the rest of the subscriber stack from being invoked, but will not prevent the attribute's value from being updated.

The "Attribute Event Based Speed Dating" example provides a look at how you can leverage attribute change events in your applications, to decouple logic both within your class, and when interacting with other objects.

Copyright © 2009 Yahoo! Inc. All rights reserved.

Privacy Policy - Terms of Service - Copyright Policy - Job Openings