how to dynamically add observer methods to an Ember.js object

前端 未结 1 582
失恋的感觉
失恋的感觉 2021-02-15 13:50

So i am trying to dynamically add these observer methods to a Ember.js object

holderStandoutCheckedChanged: (->
    if @get(\"controller.parent.isLoaded\")
           


        
1条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-15 14:41

    I don't know your exact use case, but as you said, your described problem could be solved with a Mixin, see http://jsfiddle.net/pangratz666/a3Usx/

    JavaScript:

    App = Ember.Application.create();
    
    var methodsToDefine = [
        {checkerName: "standoutHolderChecked", methodToCall: "toggleParentStandout"},
        {checkerName: "holderPaddingChecked", methodToCall: "toggleParentPadding"},
        {checkerName: "holderMarginChecked", methodToCall: "toggleParentMargin"}
    ];
    
    App.Stalker = Ember.Mixin.create({
      init: function() {
        this._super();
        methodsToDefine.forEach(function(config) {
          // add an observer for checkerName - a change should call methodToCall
          Ember.addObserver(this, config.checkerName, this, config.methodToCall);
        }, this);
      },
    
      willDestroy: function() {
        this._super();
    
        // since we are good citizens, we remove the observers when the object is destroyed
        methodsToDefine.forEach(function(config) {
          Ember.removeObserver(this, config.checkerName, this, config.methodToCall);
        }, this);
      }
    });
    

    Sample use case:

    var myObj = Ember.Object.create(App.Stalker, {
      toggleParentStandout: function() {
        console.log("toggleParentStandout called");
      },
      toggleParentPadding: function() {
        console.log("toggleParentPadding called");
      },
      toggleParentMargin: function() {
        console.log("toggleParentMargin called");
      }
    });
    
    myObj.set('standoutHolderChecked', 42);
    myObj.set('holderPaddingChecked', 'Buster');
    

    Another implementation would be a mixin which uses an array watchProperties, which is a list of properties which shall be observed, see http://jsfiddle.net/pangratz666/bSF3Z/:

    JavaScript:

    App = Em.Application.create();
    
    App.Stalker = Ember.Mixin.create({
      init: function() {
        this._super();
    
        var props = this.get('watchProperties');
        Ember.assert("watchProperties should be an array", Ember.isArray(props));
        props.forEach(function(property) {
          // invoke Changed when  changes ...
          Ember.addObserver(this, property, this, '%@Changed'.fmt(property));
        }, this);
      },
    
      willDestroy: function() {
        this._super();
    
        this.get('watchProperties').forEach(function(property) {
          Ember.removeObserver(this, property, this, '%@Changed'.fmt(property));
        }, this);
      }
    });
    
    var o = Ember.Object.create(App.Stalker, {
      // 'a b'.w() == ['a', 'b']
      watchProperties: 'a b'.w(),
      aChanged: function() {
        console.log("a changed");
      }
    });
    
    o.set('a', 123);
    

    0 讨论(0)
提交回复
热议问题