Skip to content

Instantly share code, notes, and snippets.

@dehuszar
Last active September 5, 2015 21:12
Show Gist options
  • Save dehuszar/1a9649d393775042a268 to your computer and use it in GitHub Desktop.
Save dehuszar/1a9649d393775042a268 to your computer and use it in GitHub Desktop.
Click interaction test
import Ember from 'ember';
export default Ember.Controller.extend({
appName:'Ember Twiddle',
actions: {
sendOutput(value) {
alert(value);
}
}
});
<h1>Welcome to {{appName}}</h1>
<br>
<br>
{{outlet}}
{{my-component-click handleUpdatedValue=(action "sendOutput")}}
{{my-component-child-click handleUpdatedValue=(action "sendOutput")}}
<br>
<br>
import Ember from 'ember';
export default Ember.Component.extend({
tagName: "button",
click: function() {
this.sendAction('updateValue', 'I work');
}
});
import Ember from 'ember';
export default Ember.Component.extend({
actions: {
handleUpdatedValue(value) {
this.sendAction('sendOutput', value);
}
}
});
{{child-component updateValue=handleUpdatedValue}}
import Ember from 'ember';
export default Ember.Component.extend({
tagName: "button",
click: function() {
this.send('handleUpdatedValue', 'I work')
},
actions: {
handleUpdatedValue(value) {
this.sendAction('sendOutput', value);
}
}
});
{
"version": "0.4.10",
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.js",
"ember": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember.debug.js",
"ember-data": "https://cdnjs.cloudflare.com/ajax/libs/ember-data.js/1.13.11/ember-data.js",
"ember-template-compiler": "https://cdnjs.cloudflare.com/ajax/libs/ember.js/1.13.9/ember-template-compiler.js"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment