Ghost/ghost/admin/app/components/gh-tier-card.js

53 lines
1.3 KiB
JavaScript
Raw Normal View History

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {getSymbol} from 'ghost-admin/utils/currency';
import {inject as service} from '@ember/service';
import {tracked} from '@glimmer/tracking';
export default class extends Component {
@service membersUtils;
@service ghostPaths;
@service ajax;
@service store;
@service config;
@tracked showTierModal = false;
get tier() {
return this.args.tier;
}
get showArchiveOption() {
return this.tier.type === 'paid' && !!this.tier.monthlyPrice;
}
get tierCurrency() {
if (this.isFreeTier) {
const firstPaidTier = this.args.tiers.find((tier) => {
return tier.type === 'paid';
});
return firstPaidTier?.monthlyPrice?.currency || 'usd';
} else {
return this.tier?.monthlyPrice?.currency;
}
}
get isPaidTier() {
return this.tier.type === 'paid';
}
get hasCurrencySymbol() {
const currencySymbol = getSymbol(this.tier?.monthlyPrice?.currency);
return currencySymbol?.length !== 3;
}
get isFreeTier() {
return this.tier.type === 'free';
}
@action
async openEditTier(tier) {
this.args.openEditTier(tier);
}
}