#5
Music education platform that connects teachers and students.
LMS (Ember apps)
Augmented Music Sheets (React app)
We achieved what we wanted
… but it's slow 🐌 and frustrating 🤯 !
🚨 What if one of the call failed?
⏳ What if we don't need to wait for all responses?
We could move fetch logic to the component:
Using… Ember-concurrency! 🎉
function* idMaker() {
let index = 0;
while (index < index+1)
yield index++;
}
let gen = idMaker();
console.log(gen.next().value); // 0
console.log(gen.next().value); // 1
console.log(gen.next().value); // 2
console.log(gen.next().value); // 3
// ...
import { task } from 'ember-concurrency';
export default RouteComponentOrWhatever.extend({
// defining a task instance
taskInstance: task(function* (arg) {
// return yield this.store.findAll('someModel');
// yield new Promise((resolve, reject) => { });
}),
init() {
this._super(...arguments);
this.get('taskInstance').perform(arg);
}
});
// template syntax
// <button type="button" onclick={{perform taskInstance}}>Perform</button>