Credit: @rwjblue's jsbin
Demo: http://jsbin.com/jipani/edit?html,js,output
ember install ember-route-action-helper
The route-action
helper allows you to bubble closure actions, which will delegate it to the currently active route hierarchy per the bubbling rules explained under actions
. Like closure actions, route-action
will also have a return value.
However, returning true
in an action will not preserve bubbling semantics. In case you would like that behavior, you should use ordinary string actions instead.
For example, this route template tells the component to lookup the updateFoo
action on the route when its internal clicked
property is invoked, and curries the function call with 2 arguments.
If the action is not found on the current route, it is bubbled up:
// application/route.js
import Ember from 'ember';
const { Route, set } = Ember;
export default Route.extend({
actions: {
updateFoo(...args) {
// handle action
return 42;
}
}
});
The route-action
has a return value:
// foo/component.js
import Ember from 'ember';
const { Component } = Ember;
export default Component.extend({
actions: {
anotherAction(...args) {
let result = this.get('updateFoo')(...args);
console.log(result); // 42
}
}
});
You may also use in conjunction with the {{action}}
helper:
<button {{action (route-action 'updateFoo')}}>Update Foo</button>
This addon will work on Ember versions 1.13.x
and up only, due to use of the new Helper
implementation.
git clone
this repositorynpm install
bower install
ember server
- Visit your app at http://localhost:4200.
npm test
(Runsember try:testall
to test your addon against multiple Ember versions)ember test
ember test --server
ember build
For more information on using ember-cli, visit http://www.ember-cli.com/.
DockYard, Inc © 2015