How would you translate this snippet of javascript to coffeescript? Specifically I'm struggling with how to call .property() on the function definition.

MyApp.president = SC.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('firstName', 'lastName')
});
link|improve this question

77% accept rate
1  
Good practice is to declare your property dependencies. In your case you would do property('firstName', 'lastName'). If you have declared your dependencies you can also set your property to be cached with .cacheable(). – Peter Wagenet Dec 15 '11 at 23:02
@Peter Wagenet - Good point, I updated the code for future searchers. – Josh Rickard Dec 21 '11 at 14:27
feedback

4 Answers

up vote 13 down vote accepted

I think this is how you're supposed to write it:

MyApp.president = SC.Object.create {
  firstName: "Barack",
  lastName: "Obama",
  fullName: (-> 
    return @get 'firstName' + ' ' + @get 'lastName'
    # Call this flag to mark the function as a property
  ).property()
}

checkout this link

link|improve this answer
Your property should depend on the underlying attributes changes, in order to have the computed property bound to any change. Otherwise, when first or last name will change, full name will no more reflect reality. I submitted an edit... – Mike Aski Mar 28 at 5:29
feedback

There are a couple ways to define computed properties. Here are examples of each:

MyApp.president = Ember.Object.create
  firstName: "Barack"
  lastName: "Obama"
  fullName: (-> 
    @get 'firstName' + ' ' + @get 'lastName'
  ).property('firstName', 'lastName')

MyApp.president = Ember.Object.create
  firstName: "Barack"
  lastName: "Obama"
  fullName: Ember.computed(-> 
    @get 'firstName' + ' ' + @get 'lastName'
  ).property('firstName', 'lastName')
link|improve this answer
The .property() call at the end is redundant. – Blacktiger Dec 21 '11 at 16:05
I added the dependent keys. They aren't redundant when they're specified. – ebryn Dec 30 '11 at 18:03
Ah, that's better ;) – Blacktiger Jan 3 at 21:30
feedback

When using Ember.computed, you do not need to call .property() so you can use this form as well:

MyApp.president = Ember.Object.create
  firstName: "Barack"
  lastName: "Obama"
  fullName: Ember.computed -> @get 'firstName' + ' ' + @get 'lastName'
link|improve this answer
feedback

Something like this will work?

 (() => this.get("firstName") * this.get("lastName")).property()
link|improve this answer
There's no need for the fat-arrow binding to this. Indeed, that will hurt, since it will bind to the declaring scope, not the object itself. – James A. Rosen Dec 16 '11 at 1:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.