mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-08 12:09:43 +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
65 lines
1.8 KiB
JavaScript
65 lines
1.8 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class ChartMembersCountInsert extends Component {
|
|
@service dashboardStats;
|
|
|
|
@action
|
|
loadCharts() {
|
|
this.dashboardStats.loadMemberCountStats();
|
|
}
|
|
|
|
get totalMembers() {
|
|
return this.dashboardStats.memberCounts?.total ?? 0;
|
|
}
|
|
|
|
get paidMembers() {
|
|
return this.dashboardStats.memberCounts?.paid ?? 0;
|
|
}
|
|
|
|
get freeMembers() {
|
|
return this.dashboardStats.memberCounts?.free ?? 0;
|
|
}
|
|
|
|
get hasTrends() {
|
|
return this.dashboardStats.memberCounts !== null && this.dashboardStats.memberCountsTrend !== null;
|
|
}
|
|
|
|
get totalMembersTrend() {
|
|
return this.calculatePercentage(this.dashboardStats.memberCountsTrend.total, this.dashboardStats.memberCounts.total);
|
|
}
|
|
|
|
get paidMembersTrend() {
|
|
return this.calculatePercentage(this.dashboardStats.memberCountsTrend.paid, this.dashboardStats.memberCounts.paid);
|
|
}
|
|
|
|
get freeMembersTrend() {
|
|
return this.calculatePercentage(this.dashboardStats.memberCountsTrend.free, this.dashboardStats.memberCounts.free);
|
|
}
|
|
|
|
calculatePercentage(from, to) {
|
|
if (from === 0) {
|
|
if (to > 0) {
|
|
return 100;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
const percentage = (to - from) / from * 100;
|
|
if (Math.abs(percentage) < 0.05) {
|
|
// Round on two decimals
|
|
return Math.round(percentage * 100) / 100;
|
|
}
|
|
if (Math.abs(percentage) < 0.25) {
|
|
// Round on one decimal
|
|
return Math.round(percentage * 10) / 10;
|
|
}
|
|
if (Math.abs(percentage) < 1) {
|
|
// Round on 0.5
|
|
return Math.round(percentage * 2) / 2;
|
|
}
|
|
return Math.round(percentage);
|
|
}
|
|
}
|