Skip to content

Instantly share code, notes, and snippets.

@mjuniper
Last active December 20, 2016 15:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mjuniper/fe1ea99ec732375a3bd5c15d866dc67e to your computer and use it in GitHub Desktop.
Save mjuniper/fe1ea99ec732375a3bd5c15d866dc67e to your computer and use it in GitHub Desktop.
call-method-on-modal
import Ember from 'ember';
export default Ember.Component.extend({
init () {
this._super(...arguments);
// register the modal with the parent
this.get('registerModal')(this);
},
show () {
// alert('modal::show was called!');
this.set('isShowing', true);
},
hide () {
// alert('modal::hide was called!');
this.set('isShowing', false);
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
actions: {
registerModal (name, modal) {
this.set(name, modal);
// alert('modal was registered');
},
showModal () {
// alert('show modal');
this.get('fooModal').show();
},
hideModal () {
// alert('hide modal');
this.get('fooModal').hide();
}
}
});
<h1>This is the application template</h1>
<button {{action 'showModal'}}>Show</button>
<button {{action 'hideModal'}}>Hide</button>
<br>
<br>
{{my-modal registerModal=(action 'registerModal' 'fooModal')}}
<br>
<br>
{{#if isShowing}}
Modal is showing
{{else}}
Modal is hidden
{{/if}}
{
"version": "0.10.7",
"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.10.0",
"ember-data": "2.10.0",
"ember-template-compiler": "2.10.0",
"ember-testing": "2.10.0"
},
"addons": {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment