views:

12

answers:

1

Hi,

I have a complicated UI structure which is manipulated dynamically, and say I have an ui_state object where i keep user's latest UI states such as which tab was visible, what was inside that tab etc.

For instance:

var ui_states = {
  tabs : [
    {
      name     : "some tab",
      active   : true,
      children : { ... }
    },
    {
      name     : "some other tab",
      children : { ... }
    }
  ]
}

I keep this on html5 localStorage and when user refreshes the site it reopens the page the same. And everytime when the UI changes this object is changed accordingly. And just after changing it i need to run let's say updateLocalStorage() which is working perfectly.

My question is for this flow, can i create a custom event to my ui_states object something like ui_states.addEventListener('onchange', function(){ // do stuff }) to not to run that updateLocalStorage() function every time when i manipulate the object?

Thanks.

+1  A: 

You're mixing up JavaScript programming with DOM programming. Events are purely a DOM concept. JS objects do not support event handlers.

The only way to do it is to create getters and setters. There are ways to do this with special properties, but unfortunately, browser support is a bit maybe. The other way to do it is using explicit methods and private variables. This is possible but a little complex.

staticsan
thanks for that.
KakambaWeb