Skip to content

Instantly share code, notes, and snippets.

@sethboyles
Last active October 27, 2017 23:06
Show Gist options
  • Save sethboyles/3a5a61dcb7cadd5eda17156318bb3c83 to your computer and use it in GitHub Desktop.
Save sethboyles/3a5a61dcb7cadd5eda17156318bb3c83 to your computer and use it in GitHub Desktop.
Volatile
import Ember from 'ember';
export default Ember.Controller.extend({
firstName: 'John',
lastName: 'Smith',
fullName: Ember.computed('firstName', 'lastName', function() {
return this.get('firstName') + ' ' + this.get('lastName');
}),
volatileFullName: Ember.computed(function() {
return this.get('firstName') + ' ' + this.get('lastName');
}).volatile(),
actions: {
changeName() {
this.set('firstName', 'Thomas');
},
resetName() {
this.set('firstName', 'John');
},
alertVolatileName(){
alert(this.get('volatileFullName'));
}
}
});
First: {{firstName}}
<br>
Last: {{lastName}}
<br>
Computed full name: {{fullName}}
<br>
Volatile full name: {{volatileFullName}}
<br> <br>
<button {{action 'changeName'}}> Change first name to Thomas </button>
<button {{action 'resetName'}}> Change first name John </button>
<button {{action 'alertVolatileName'}}> alert volatile name </button>
{
"version": "0.12.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "2.12.0",
"ember-template-compiler": "2.12.0",
"ember-testing": "2.12.0"
},
"addons": {
"ember-data": "2.12.1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment