mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
0023695a29
refs https://github.com/TryGhost/Team/issues/1468 - Implemented loadSiteStatus with real data - Replaced unused stripeEnabled with hasMultipleTiers - hasMultipleTiers=false hides the tiers paid mix chart - Improved loading and updating fake state - Removed deprecated loadMembersCounts method in dashboard stats service
78 lines
2.0 KiB
JavaScript
78 lines
2.0 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
const STATUS_OPTIONS = [{
|
|
name: 'All members',
|
|
value: 'total'
|
|
}, {
|
|
name: 'Paid members',
|
|
value: 'paid'
|
|
}, {
|
|
name: 'Free members',
|
|
value: 'free'
|
|
}];
|
|
|
|
export default class ChartEngagement extends Component {
|
|
@service dashboardStats;
|
|
|
|
@action
|
|
loadCharts() {
|
|
this.dashboardStats.lastSeenFilterStatus = this.status;
|
|
this.dashboardStats.loadLastSeen();
|
|
this.dashboardStats.loadMemberCountStats();
|
|
}
|
|
|
|
@tracked status = 'total';
|
|
statusOptions = STATUS_OPTIONS;
|
|
|
|
get selectedStatusOption() {
|
|
return this.statusOptions.find(option => option.value === this.status);
|
|
}
|
|
|
|
@action
|
|
onSwitchStatus(selected) {
|
|
this.status = selected.value;
|
|
this.dashboardStats.lastSeenFilterStatus = this.status;
|
|
this.dashboardStats.loadLastSeen();
|
|
}
|
|
|
|
get loading() {
|
|
return this.dashboardStats.memberCounts === null
|
|
|| !this.dashboardStats.memberCounts[this.status]
|
|
|| this.dashboardStats.membersLastSeen30d === null
|
|
|| this.dashboardStats.membersLastSeen7d === null;
|
|
}
|
|
|
|
get data30Days() {
|
|
if (this.loading) {
|
|
return '- %';
|
|
}
|
|
const total = this.dashboardStats.memberCounts[this.status];
|
|
const part = this.dashboardStats.membersLastSeen30d;
|
|
|
|
if (total <= 0) {
|
|
return '- %';
|
|
}
|
|
|
|
const percentage = Math.round(part / total * 100);
|
|
return `${percentage}%`;
|
|
}
|
|
|
|
get data7Days() {
|
|
if (this.loading) {
|
|
return '- %';
|
|
}
|
|
const total = this.dashboardStats.memberCounts[this.status];
|
|
const part = this.dashboardStats.membersLastSeen7d;
|
|
|
|
if (total <= 0) {
|
|
return '- %';
|
|
}
|
|
|
|
const percentage = Math.round(part / total * 100);
|
|
return `${percentage}%`;
|
|
}
|
|
}
|