Skip to content

Instantly share code, notes, and snippets.

@samselikoff
Created September 24, 2016 14:34
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 samselikoff/ace05a616151a40f3d3c6164693ba1f5 to your computer and use it in GitHub Desktop.
Save samselikoff/ace05a616151a40f3d3c6164693ba1f5 to your computer and use it in GitHub Desktop.
Ember Concurrency
import Ember from 'ember';
import { task, timeout } from 'ember-concurrency';
export default Ember.Controller.extend({
appName: 'Ember Twiddle',
myTask: task(function *() {
yield timeout(2000);
})
});
<h1>Welcome to {{appName}}</h1>
<button {{perform myTask}}>Click me!</button>
{{#if myTask.isRunning}}
<p>I'm here!</p>
{{/if}}
{
"version": "0.10.5",
"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.8.0",
"ember-data": "2.8.0",
"ember-template-compiler": "2.8.0",
"ember-testing": "2.8.0"
},
"addons": {
"ember-concurrency": "0.7.9"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment