Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to subscribe to change of an observable field

until lately I could use bindProperty like shown below or in this question, but that has changed with 0.8.0 and I don't know how to change my code to get the old behaviour (doSomething() gets called):

<polymer-element name="my-login" attributes="model">
  <template>
    <template if="{{"model.isLoggedIn}}">
      ...
    </template>
  </template>
  <script type= ... ></script>
</polymer-element>

.

@CustomTag("my-login")
class MyLogin extends PolymerElement with ObservableMixin {
  LoginModel model;

  @override
  inserted() {

  void doSomething() {
   ...
  }

logoutChangeSubscription = bindProperty(model, #isLoggedIn, () => doSomething());

  }
}

class Model extends Object with ObservableMixin {
  @observable bool isLoggedIn = false;
}
like image 324
Günter Zöchbauer Avatar asked Oct 04 '13 14:10

Günter Zöchbauer


1 Answers

With Polymer.dart 0.8 or greater, you can also use this convenience form:

isLoggedInChanged(oldValue) {
  doSomething();
}

Notice how you can create a method inside your PolymerElement that uses a name of yourFieldName*Changed

There's also onPropertyChange as defined here: http://api.dartlang.org/docs/bleeding_edge/observe.html#onPropertyChange

From the docs:

class MyModel extends ObservableBase {
  StreamSubscription _sub;
  MyOtherModel _otherModel;

  MyModel() {
    ...
    _sub = onPropertyChange(_otherModel, const Symbol('value'),
        () => notifyProperty(this, const Symbol('prop'));
  }

  String get prop => _otherModel.value;
  set prop(String value) { _otherModel.value = value; }
}
like image 104
Seth Ladd Avatar answered Oct 27 '22 09:10

Seth Ladd