Process contribution data before loading models

This commit is contained in:
2020-05-28 13:44:32 +02:00
parent e7c9620bbe
commit 69141a31c4
10 changed files with 501 additions and 34 deletions
+26 -12
View File
@@ -11,6 +11,7 @@ import { inject as service } from '@ember/service';
import groupBy from 'kredits-web/utils/group-by';
import processContributorData from 'kredits-web/utils/process-contributor-data';
import processContributionData from 'kredits-web/utils/process-contribution-data';
import formatKredits from 'kredits-web/utils/format-kredits';
import config from 'kredits-web/config/environment';
@@ -185,11 +186,11 @@ export default Service.extend({
}
const numCachedContributions = await this.browserCache.contributions.length();
if (numCachedContributions > 0) {
// if (numCachedContributions > 0) {
// TODO promises.push(this.loadContributionsFromCache);
} else {
// } else {
await this.fetchContributions({ page: { size: 30 } });
}
// }
return Promise.resolve();
},
@@ -235,11 +236,11 @@ export default Service.extend({
});
})
.then(() => {
return this.cacheContributors();
return this.cacheLoadedContributors();
});
},
async cacheContributors () {
async cacheLoadedContributors () {
for (const c of this.contributors) {
await this.browserCache.contributors.setItem(c.id, c.serialize());
}
@@ -248,9 +249,9 @@ export default Service.extend({
},
async loadContributorsFromCache () {
return this.browserCache.contributors.iterate((value, key/* , iterationNumber */) => {
return this.browserCache.contributors.iterate((value/*, key , iterationNumber */) => {
this.contributors.pushObject(Contributor.create(JSON.parse(value)));
}).then(result => {
}).then((/* result */) => {
console.debug(`[kredits] Loaded ${this.contributors.length} contributors from cache`);
});
},
@@ -275,15 +276,28 @@ export default Service.extend({
return this.kredits.Contribution.all(options)
.then(contributions => {
return contributions.map(data => {
data.contributor = this.contributors.findBy('id', data.contributorId.toString());
const contribution = Contribution.create(data);
const contribution = Contribution.create(processContributionData(data));
contribution.set('contributor', this.contributors.findBy('id', data.contributorId.toString()));
this.contributions.pushObject(contribution);
return contribution;
});
})
.then(contributions => {
const cacheWrites = contributions.map(c => {
return this.browserCache.contributions.setItem(c.id.toString(), c.serialize());
});
return Promise.all(cacheWrites).then(() => {
console.debug(`[kredits] Cached ${contributions.length} contributions in browser storage`);
});
});
// TODO .then(() => {
// this.cacheContributions()
// });
},
async cacheLoadedContributions () {
for (const c of this.contributions) {
await this.browserCache.contributions.setItem(c.id, c.serialize());
}
console.debug(`[kredits] Cached ${this.contributions.length} contributions in browser storage`);
return Promise.resolve();
},
veto (contributionId) {