Improve data sync #190
Reference in New Issue
Block a user
Delete Branch "feature/improve_contribution_sync"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This introduces ember-concurrency for managing concurrent tasks, as well as task queues, etc.. The new changes improve the fetching of data in several ways:
After merging this one, we should soon improve the dashboard further by not showing all contributions in the list by default, and also asking the user before fetching the entire history. When we have UI for that, we can then also show sync progress somewhere.
Code looks good. Just had some super minor comment.
Tests worked also as promised.
Great work! 👍
@@ -2,12 +2,10 @@ import Component from '@ember/component';import { inject as service } from '@ember/service';export default Component.extend({tagName: '',Since Octane, components don't have a tag like
divby default anymore. So this is not necessary.@@ -2,12 +2,10 @@ import Component from '@ember/component';import { inject as service } from '@ember/service';export default Component.extend({tagName: '',You mean Glimmer components. But this one hasn't been converted yet.
@galfert Thanks!
👍