mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
57b1ab4800
no issue - part of ember upgrades - removed all unnecessary usage of `.get` - cleaned up imports where we had imports from the same module across multiple lines - standardized on importing specific computed helpers rather than using `computed.foo` - switched tests from using `wait()` to `settled()`
144 lines
4.2 KiB
JavaScript
144 lines
4.2 KiB
JavaScript
import EmberObject, {action} from '@ember/object';
|
|
import ModalBase from 'ghost-admin/components/modal-base';
|
|
import classic from 'ember-classic-decorator';
|
|
import {currencies} from 'ghost-admin/utils/currency';
|
|
import {isEmpty} from '@ember/utils';
|
|
import {task} from 'ember-concurrency-decorators';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
// TODO: update modals to work fully with Glimmer components
|
|
@classic
|
|
export default class ModalProductPrice extends ModalBase {
|
|
@tracked model;
|
|
@tracked price;
|
|
@tracked currencyVal;
|
|
@tracked periodVal;
|
|
@tracked errors = EmberObject.create();
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
this.price = {
|
|
...(this.model.price || {})
|
|
};
|
|
this.topCurrencies = currencies.slice(0, 5).map((currency) => {
|
|
return {
|
|
value: currency.isoCode.toLowerCase(),
|
|
label: `${currency.isoCode} - ${currency.name}`,
|
|
isoCode: currency.isoCode
|
|
};
|
|
});
|
|
this.currencies = currencies.slice(5, currencies.length).map((currency) => {
|
|
return {
|
|
value: currency.isoCode.toLowerCase(),
|
|
label: `${currency.isoCode} - ${currency.name}`,
|
|
isoCode: currency.isoCode
|
|
};
|
|
});
|
|
this.allCurrencies = [
|
|
{
|
|
groupName: '—',
|
|
options: this.topCurrencies
|
|
},
|
|
{
|
|
groupName: '—',
|
|
options: this.currencies
|
|
}
|
|
];
|
|
this.currencyVal = this.price.currency || 'usd';
|
|
this.periodVal = this.price.interval || 'month';
|
|
}
|
|
|
|
get title() {
|
|
if (this.isExistingPrice) {
|
|
return `Price - ${this.price.nickname || 'No Name'}`;
|
|
}
|
|
return 'New Price';
|
|
}
|
|
|
|
get isExistingPrice() {
|
|
return !!this.model.price;
|
|
}
|
|
|
|
get currency() {
|
|
return this.price.currency || 'usd';
|
|
}
|
|
|
|
get selectedCurrencyObj() {
|
|
return this.currencies.findBy('value', this.price.currency) || this.topCurrencies.findBy('value', this.price.currency);
|
|
}
|
|
|
|
// TODO: rename to confirm() when modals have full Glimmer support
|
|
@action
|
|
confirmAction() {
|
|
this.confirm(this.price);
|
|
this.close();
|
|
}
|
|
|
|
@action
|
|
close(event) {
|
|
event?.preventDefault?.();
|
|
this.closeModal();
|
|
}
|
|
|
|
@task({drop: true})
|
|
*savePrice() {
|
|
this.validatePriceData();
|
|
if (!isEmpty(this.errors) && Object.keys(this.errors).length > 0) {
|
|
return;
|
|
}
|
|
const priceObj = {
|
|
...this.price,
|
|
amount: (this.price.amount || 0) * 100
|
|
};
|
|
if (!priceObj.id) {
|
|
priceObj.active = 1;
|
|
priceObj.currency = priceObj.currency || 'usd';
|
|
priceObj.interval = priceObj.interval || 'month';
|
|
priceObj.type = 'recurring';
|
|
}
|
|
yield this.confirm(priceObj);
|
|
this.send('closeModal');
|
|
}
|
|
|
|
validatePriceData() {
|
|
this.errors = EmberObject.create();
|
|
if (!this.price.nickname) {
|
|
this.errors.set('name', [{
|
|
message: 'Please enter name'
|
|
}]);
|
|
}
|
|
if (isNaN(this.price.amount) || this.price.amount === '') {
|
|
this.errors.set('amount', [{
|
|
message: 'Please enter amount'
|
|
}]);
|
|
}
|
|
if (!this.price.interval || !['month', 'year'].includes(this.price.interval)) {
|
|
this.errors.set('interval', [{
|
|
message: 'Please enter billing interval'
|
|
}]);
|
|
}
|
|
}
|
|
|
|
actions = {
|
|
confirm() {
|
|
this.confirmAction(...arguments);
|
|
},
|
|
updatePeriod(oldPeriod, newPeriod) {
|
|
this.price.interval = newPeriod;
|
|
this.periodVal = newPeriod;
|
|
},
|
|
setAmount(amount) {
|
|
this.price.amount = !isNaN(amount) ? parseInt(amount) : 0;
|
|
},
|
|
|
|
setCurrency(currency) {
|
|
this.price.currency = currency.value;
|
|
this.currencyVal = currency.value;
|
|
},
|
|
// needed because ModalBase uses .send() for keyboard events
|
|
closeModal() {
|
|
this.close();
|
|
}
|
|
}
|
|
}
|