Skip to content

Instantly share code, notes, and snippets.

@alexlafroscia
Last active October 24, 2019 21:40
Show Gist options
  • Save alexlafroscia/33436ca3c56f682bcfb6d834cf9321ca to your computer and use it in GitHub Desktop.
Save alexlafroscia/33436ca3c56f682bcfb6d834cf9321ca to your computer and use it in GitHub Desktop.
Cancelling a Task from a Child Component
import Ember from 'ember';
import { task } from 'ember-concurrency';
export default Ember.Component.extend({
childTask: task(function*() {
yield this.performParentTask()
})
});
import Ember from 'ember';
import { task, timeout } from 'ember-concurrency';
export default Ember.Component.extend({
childComponentIsMounted: true,
parentTask: task(function*() {
try {
yield timeout(1000);
window.alert('Finished Successfully!');
} catch(e) {
window.alert('Task was cancelled because the child was un-mounted!')
}
}),
actions: {
toggleChild() {
this.set('childComponentIsMounted', !this.get('childComponentIsMounted'));
}
}
});
import Ember from 'ember';
export default Ember.Controller.extend({
appName: 'Ember Twiddle'
});
<button {{action (perform childTask)}}>
Run task in the child!
</button>
<button {{action 'toggleChild'}}>
Toggle Child Component
</button>
<hr />
{{#if this.childComponentIsMounted}}
<ChildComponent @performParentTask={{perform this.parentTask}} />
{{/if}}
{
"version": "0.15.1",
"EmberENV": {
"FEATURES": {}
},
"options": {
"use_pods": false,
"enable-testing": false
},
"dependencies": {
"jquery": "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js",
"ember": "3.4.3",
"ember-template-compiler": "3.4.3",
"ember-testing": "3.4.3"
},
"addons": {
"ember-data": "3.4.2",
"ember-concurrency": "1.1.2"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment