Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save rwjblue/945dd963a65b05e9422848af9f64c3eb to your computer and use it in GitHub Desktop.
Save rwjblue/945dd963a65b05e9422848af9f64c3eb to your computer and use it in GitHub Desktop.
Service Actions
import Ember from 'ember';
const { Controller, inject } = Ember;
export default Controller.extend({
display: inject.service(),
actions: {
toggle() {
this.get('display').toggleVisibility();
}
}
});
import Ember from 'ember';
const { Service } = Ember;
export default Service.extend({
isThingVisible: false,
toggleVisibility() {
this.toggleProperty('isThingVisible');
console.log(this.get('isThingVisible'));
},
});
<button {{action "toggle"}}>
Toggle Visibility (controller action)
</button>
<button onclick={{action "toggleVisibility" target=display}}>
Toggle Visibility (service method - element action)
</button>
<p>isThingVisible: {{display.isThingVisible}}</p>
{
"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.14.0",
"ember-template-compiler": "2.14.0",
"ember-testing": "2.14.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment