mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
|
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);
|
||
|
}
|
||
|
}
|