mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
affe6743e5
refs: https://github.com/TryGhost/Team/issues/1145 - this should allow us to remove the /products endpoint in v5 It avoids: - `kg-product-card`, that really is meant to say product - `product-cadence` on offers Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
36 lines
818 B
JavaScript
36 lines
818 B
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
const PERIODS = [
|
|
{label: 'Monthly', period: 'month'},
|
|
{label: 'Yearly', period: 'year'}
|
|
];
|
|
|
|
export default class GhTiersPriceBillingPeriodComponent extends Component {
|
|
@service feature;
|
|
@service session;
|
|
@service settings;
|
|
|
|
constructor() {
|
|
super(...arguments);
|
|
this.availablePeriods = PERIODS;
|
|
}
|
|
|
|
get value() {
|
|
const {value} = this.args;
|
|
return value;
|
|
}
|
|
get disabled() {
|
|
const {disabled} = this.args;
|
|
return disabled || false;
|
|
}
|
|
|
|
@action
|
|
updatePeriod(newPeriod) {
|
|
if (this.args.updatePeriod) {
|
|
this.args.updatePeriod(this.args.value, newPeriod);
|
|
}
|
|
}
|
|
}
|