Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ensure Nested Presenters works #2

Open
heymichaelp opened this issue Dec 9, 2013 · 0 comments
Open

Ensure Nested Presenters works #2

heymichaelp opened this issue Dec 9, 2013 · 0 comments
Assignees

Comments

@heymichaelp
Copy link
Contributor

This code should work:

var PersonPresenter = Presenter.extend({
  customAttributes: {
    fullName: function() {
      return this.attributes.firstName + ' ' + this.attributes.lastName;
    }
  }
})

var LawyerPresenter = PersonPresenter.extend({
  customAttributes: {
    fullNameEsq: function() {
      return this.customAttribute('fullName') + ', Esq.';
    }
  }
})

var person = {
  firstName: 'Michael'
, lastName: 'Phillips'
}

LawyerPresenter.present( person );
// returns { firstName: 'Michael', lastName: 'Phillips', fullName: 'Michael Phillips', fullNameEsq: 'Michael Phillips, Esq.' }
@ghost ghost assigned heymichaelp Dec 9, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant