Ghost/ghost/admin/app/components/gh-members-segment-count.js
Simon Backx 1f2857e0e4
Reduced amount of member count queries when opening the editor (#19474)
no issue

When we open the editor, we fire 4 requests to fetch member counts. This
commit fixes this by replacing those calls with the members count cache
service.
2024-01-13 19:13:49 +01:00

43 lines
1.2 KiB
JavaScript

import Component from '@glimmer/component';
import {inject as service} from '@ember/service';
import {task, taskGroup} from 'ember-concurrency';
import {tracked} from '@glimmer/tracking';
export default class GhMembersSegmentCountComponent extends Component {
@service store;
@service session;
@service membersCountCache;
@tracked total = 0;
@tracked segmentTotal = 0;
@taskGroup fetchTasks;
@task({group: 'fetchTasks'})
*fetchTotalsTask() {
this.fetchSegmentTotalTask.perform();
const filter = this.args.enforcedFilter || undefined;
this.total = yield this.membersCountCache.count({filter});
}
@task({group: 'fetchTasks'})
*fetchSegmentTotalTask() {
if (!this.args.segment) {
return this.segmentTotal = 0;
}
let filter;
if (this.args.enforcedFilter) {
filter = `${this.args.enforcedFilter}+(${this.args.segment})`;
} else {
filter = this.args.segment;
}
const members = yield this.store.query('member', {limit: 1, filter});
this.segmentTotal = members.meta.pagination.total;
this.args.onSegmentCountChange?.(this.segmentTotal);
}
}