2021-04-08 15:38:42 +03:00
|
|
|
import Controller from '@ember/controller';
|
2021-04-26 21:22:04 +03:00
|
|
|
import EmberObject, {action} from '@ember/object';
|
2021-04-08 15:38:42 +03:00
|
|
|
import {inject as service} from '@ember/service';
|
|
|
|
import {task} from 'ember-concurrency-decorators';
|
|
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
|
|
|
|
export default class ProductController extends Controller {
|
|
|
|
@service settings;
|
2021-05-06 19:57:52 +03:00
|
|
|
@service config;
|
2021-04-08 15:38:42 +03:00
|
|
|
|
|
|
|
@tracked showLeaveSettingsModal = false;
|
2021-04-09 14:00:41 +03:00
|
|
|
@tracked showPriceModal = false;
|
2021-04-22 19:47:19 +03:00
|
|
|
@tracked priceModel = null;
|
2021-04-26 21:22:04 +03:00
|
|
|
@tracked showUnsavedChangesModal = false;
|
2021-05-06 19:57:52 +03:00
|
|
|
@tracked paidSignupRedirect;
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
|
|
|
this.siteUrl = this.config.get('blogUrl');
|
|
|
|
}
|
2021-04-22 19:47:19 +03:00
|
|
|
|
|
|
|
get product() {
|
|
|
|
return this.model;
|
|
|
|
}
|
|
|
|
|
|
|
|
get stripePrices() {
|
|
|
|
const stripePrices = this.model.stripePrices || [];
|
|
|
|
return stripePrices.map((d) => {
|
|
|
|
return {
|
|
|
|
...d,
|
|
|
|
amount: d.amount / 100
|
|
|
|
};
|
2021-05-09 15:44:36 +03:00
|
|
|
}).sort((a, b) => {
|
|
|
|
return a.amount - b.amount;
|
|
|
|
}).sort((a, b) => {
|
|
|
|
return a.currency.localeCompare(b.currency, undefined, {ignorePunctuation: true});
|
|
|
|
}).sort((a, b) => {
|
|
|
|
return (a.active === b.active) ? 0 : (a.active ? -1 : 1);
|
2021-04-22 19:47:19 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
get noOfPrices() {
|
|
|
|
return (this.product.stripePrices || []).length;
|
|
|
|
}
|
2021-04-08 15:38:42 +03:00
|
|
|
|
2021-04-26 21:22:04 +03:00
|
|
|
@action
|
|
|
|
toggleUnsavedChangesModal(transition) {
|
|
|
|
let leaveTransition = this.leaveScreenTransition;
|
|
|
|
|
|
|
|
if (!transition && this.showUnsavedChangesModal) {
|
|
|
|
this.leaveScreenTransition = null;
|
|
|
|
this.showUnsavedChangesModal = false;
|
|
|
|
return;
|
2021-04-08 15:38:42 +03:00
|
|
|
}
|
2021-04-26 21:22:04 +03:00
|
|
|
|
|
|
|
if (!leaveTransition || transition.targetName === leaveTransition.targetName) {
|
|
|
|
this.leaveScreenTransition = transition;
|
|
|
|
|
|
|
|
// if a save is running, wait for it to finish then transition
|
|
|
|
if (this.saveTask.isRunning) {
|
|
|
|
return this.saveTask.last.then(() => {
|
|
|
|
transition.retry();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// we genuinely have unsaved data, show the modal
|
|
|
|
this.showUnsavedChangesModal = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
leaveScreen() {
|
|
|
|
this.product.rollbackAttributes();
|
|
|
|
return this.leaveScreenTransition.retry();
|
2021-04-08 15:38:42 +03:00
|
|
|
}
|
|
|
|
|
2021-04-22 19:47:19 +03:00
|
|
|
@action
|
|
|
|
async openEditPrice(price) {
|
|
|
|
this.priceModel = price;
|
|
|
|
this.showPriceModal = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
async openNewPrice() {
|
|
|
|
this.priceModel = null;
|
|
|
|
this.showPriceModal = true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:44:04 +03:00
|
|
|
@action
|
|
|
|
async archivePrice(price) {
|
|
|
|
price.active = false;
|
|
|
|
this.send('savePrice', price);
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
async activatePrice(price) {
|
|
|
|
price.active = true;
|
|
|
|
this.send('savePrice', price);
|
|
|
|
}
|
|
|
|
|
2021-04-08 15:38:42 +03:00
|
|
|
@action
|
|
|
|
async confirmLeave() {
|
|
|
|
this.settings.rollbackAttributes();
|
|
|
|
this.showLeaveSettingsModal = false;
|
|
|
|
this.leaveSettingsTransition.retry();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
cancelLeave() {
|
|
|
|
this.showLeaveSettingsModal = false;
|
|
|
|
this.leaveSettingsTransition = null;
|
|
|
|
}
|
|
|
|
|
2021-04-26 21:22:04 +03:00
|
|
|
@action
|
|
|
|
save() {
|
|
|
|
return this.saveTask.perform();
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
savePrice(price) {
|
|
|
|
const stripePrices = this.product.stripePrices.map((d) => {
|
|
|
|
if (d.id === price.id) {
|
2021-05-07 16:44:04 +03:00
|
|
|
return EmberObject.create({
|
|
|
|
...price,
|
|
|
|
active: !!price.active
|
|
|
|
});
|
2021-04-26 21:22:04 +03:00
|
|
|
}
|
2021-05-07 16:44:04 +03:00
|
|
|
return {
|
|
|
|
...d,
|
|
|
|
active: !!d.active
|
|
|
|
};
|
2021-04-26 21:22:04 +03:00
|
|
|
});
|
|
|
|
if (!price.id) {
|
2021-05-07 16:44:04 +03:00
|
|
|
stripePrices.push(EmberObject.create({
|
|
|
|
...price,
|
|
|
|
active: !!price.active
|
|
|
|
}));
|
2021-04-26 21:22:04 +03:00
|
|
|
}
|
|
|
|
this.product.set('stripePrices', stripePrices);
|
|
|
|
this.saveTask.perform();
|
|
|
|
}
|
|
|
|
|
2021-04-09 14:00:41 +03:00
|
|
|
@action
|
|
|
|
closePriceModal() {
|
|
|
|
this.showPriceModal = false;
|
|
|
|
}
|
|
|
|
|
2021-05-06 19:57:52 +03:00
|
|
|
@action
|
|
|
|
setPaidSignupRedirect(url) {
|
|
|
|
this.paidSignupRedirect = url;
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
validatePaidSignupRedirect() {
|
|
|
|
return this._validateSignupRedirect(this.paidSignupRedirect, 'membersPaidSignupRedirect');
|
|
|
|
}
|
|
|
|
|
2021-05-07 16:44:04 +03:00
|
|
|
@task({restartable: true})
|
2021-04-08 15:38:42 +03:00
|
|
|
*saveTask() {
|
2021-05-06 19:57:52 +03:00
|
|
|
this.send('validatePaidSignupRedirect');
|
|
|
|
if (this.settings.get('errors').length !== 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
yield this.settings.save();
|
2021-04-26 21:22:04 +03:00
|
|
|
return yield this.product.save();
|
2021-04-08 15:38:42 +03:00
|
|
|
}
|
2021-05-06 19:57:52 +03:00
|
|
|
|
|
|
|
_validateSignupRedirect(url, type) {
|
|
|
|
let errMessage = `Please enter a valid URL`;
|
|
|
|
this.settings.get('errors').remove(type);
|
|
|
|
this.settings.get('hasValidated').removeObject(type);
|
|
|
|
|
|
|
|
if (url === null) {
|
|
|
|
this.settings.get('errors').add(type, errMessage);
|
|
|
|
this.settings.get('hasValidated').pushObject(type);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url === undefined) {
|
|
|
|
// Not initialised
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url.href.startsWith(this.siteUrl)) {
|
|
|
|
const path = url.href.replace(this.siteUrl, '');
|
|
|
|
this.settings.set(type, path);
|
|
|
|
} else {
|
|
|
|
this.settings.set(type, url.href);
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 15:38:42 +03:00
|
|
|
}
|