Function Class

Module: ember-runtime

Show:

Methods

Show:

observes

The observes extension of Javascript's Function prototype is available when Ember.EXTEND_PROTOTYPES or Ember.EXTEND_PROTOTYPES.Function is true, which is the default.

You can observe property changes simply by adding the observes call to the end of your method declarations in classes that you write. For example:

1
2
3
4
5
Ember.Object.create({
  valueObserver: function() {
    // Executes whenever the "value" property changes
  }.observes('value')
});

See {{#crossLink "Ember.Observable/observes"}}{{/crossLink}}

observesBefore

The observesBefore extension of Javascript's Function prototype is available when Ember.EXTEND_PROTOTYPES or Ember.EXTEND_PROTOTYPES.Function is true, which is the default.

You can get notified when a property changes is about to happen by by adding the observesBefore call to the end of your method declarations in classes that you write. For example:

1
2
3
4
5
Ember.Object.create({
  valueObserver: function() {
    // Executes whenever the "value" property is about to change
  }.observesBefore('value')
});

See {{#crossLink "Ember.Observable/observesBefore"}}{{/crossLink}}

property

The property extension of Javascript's Function prototype is available when Ember.EXTEND_PROTOTYPES or Ember.EXTEND_PROTOTYPES.Function is true, which is the default.

Computed properties allow you to treat a function like a property:

1
2
3
4
5
6
7
8
9
10
11
12
MyApp.president = Ember.Object.create({
  firstName: "Barack",
  lastName: "Obama",

  fullName: function() {
    return this.get('firstName') + ' ' + this.get('lastName');

    // Call this flag to mark the function as a property
  }.property()
});

MyApp.president.get('fullName');    // "Barack Obama"

Treating a function like a property is useful because they can work with bindings, just like any other property.

Many computed properties have dependencies on other properties. For example, in the above example, the fullName property depends on firstName and lastName to determine its value. You can tell Ember about these dependencies like this:

1
2
3
4
5
6
7
8
9
10
11
MyApp.president = Ember.Object.create({
  firstName: "Barack",
  lastName: "Obama",

  fullName: function() {
    return this.get('firstName') + ' ' + this.get('lastName');

    // Tell Ember.js that this computed property depends on firstName
    // and lastName
  }.property('firstName', 'lastName')
});

Make sure you list these dependencies so Ember knows when to update bindings that connect to a computed property. Changing a dependency will not immediately trigger an update of the computed property, but will instead clear the cache so that it is updated when the next get is called on the property.

See {{#crossLink "Ember.ComputedProperty"}}{{/crossLink}}, {{#crossLink "Ember/computed"}}{{/crossLink}}