Ghost/ghost/admin/app/controllers/settings/tier.js
Kevin Ansfield 9bdb25d184
Fixed hosting management screen not loading after sign-in process (#15763)
refs https://github.com/TryGhost/Team/issues/2110

- dynamically defined properties on the config service did not have
autotracking set up properly if they were accessed in any way before the
property was defined, this caused problems in a number of areas because
we have both "unauthed" and "authed" sets of config and when not logged
in we had parts of the app checking for authed config properties that
don't exist until after sign-in and subsequent config re-fetch
- renamed `config` service to `configManager` and updated to only
contain methods for fetching config data
- added a `config` instance initializer that sets up a `TrackedObject`
instance with some custom properties/methods and registers it on
`config:main`
- uses application instance initializer rather than a standard
initializer because standard initializers are only called once when
setting up the test suite so we'd end up with config leaking across
tests
- added an `@inject` decorator that when used takes the property name
and injects whatever is registered at `${propertyName}:main`, this
allows us to use dependency injection for any object rather than just
services or controllers
- using `application.inject()` in the initializer was initially used but
that only works for objects that extend from `EmberObject`, the
injections weren't available in native-class glimmer components so this
decorator keeps the injection syntax consistent
  - swapped all `@service config` uses to `@inject config`
2022-11-03 11:14:36 +00:00

209 lines
5.4 KiB
JavaScript

import Controller from '@ember/controller';
import EmberObject, {action} from '@ember/object';
import {inject} from 'ghost-admin/decorators/inject';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
import {tracked} from '@glimmer/tracking';
export default class TierController extends Controller {
@service membersUtils;
@service settings;
@inject config;
@tracked showLeaveSettingsModal = false;
@tracked showPriceModal = false;
@tracked priceModel = null;
@tracked showUnsavedChangesModal = false;
@tracked paidSignupRedirect;
get siteUrl() {
return this.config.blogUrl;
}
get tier() {
return this.model;
}
get stripePrices() {
const stripePrices = this.model.stripePrices || [];
return stripePrices.map((d) => {
return {
...d,
amount: d.amount / 100
};
}).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);
});
}
get noOfPrices() {
return (this.tier.stripePrices || []).length;
}
@action
toggleUnsavedChangesModal(transition) {
let leaveTransition = this.leaveScreenTransition;
if (!transition && this.showUnsavedChangesModal) {
this.leaveScreenTransition = null;
this.showUnsavedChangesModal = false;
return;
}
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.tier.rollbackAttributes();
return this.leaveScreenTransition.retry();
}
@action
async openEditPrice(price) {
this.priceModel = price;
this.showPriceModal = true;
}
@action
async openNewPrice() {
this.priceModel = null;
this.showPriceModal = true;
}
@action
async archivePrice(price) {
price.active = false;
price.amount = price.amount * 100;
this.send('savePrice', price);
}
@action
async activatePrice(price) {
price.active = true;
price.amount = price.amount * 100;
this.send('savePrice', price);
}
@action
openStripeConnect() {
alert('Update to use stripe-connect modal (see memberships screen)');
}
@action
async confirmLeave() {
this.settings.rollbackAttributes();
this.showLeaveSettingsModal = false;
this.leaveSettingsTransition.retry();
}
@action
cancelLeave() {
this.showLeaveSettingsModal = false;
this.leaveSettingsTransition = null;
}
@action
save() {
return this.saveTask.perform();
}
@action
savePrice(price) {
const stripePrices = this.tier.stripePrices.map((d) => {
if (d.id === price.id) {
return EmberObject.create({
...price,
active: !!price.active
});
}
return {
...d,
active: !!d.active
};
});
if (!price.id) {
stripePrices.push(EmberObject.create({
...price,
active: !!price.active
}));
}
this.tier.set('stripePrices', stripePrices);
this.saveTask.perform();
}
@action
closePriceModal() {
this.showPriceModal = false;
}
@action
setPaidSignupRedirect(url) {
this.paidSignupRedirect = url;
}
@action
validatePaidSignupRedirect() {
return this._validateSignupRedirect(this.paidSignupRedirect, 'membersPaidSignupRedirect');
}
@task({restartable: true})
*saveTask() {
this.send('validatePaidSignupRedirect');
this.tier.validate();
if (this.tier.get('errors').length !== 0) {
return;
}
if (this.settings.errors.length !== 0) {
return;
}
yield this.settings.save();
const response = yield this.tier.save();
if (this.showPriceModal) {
this.closePriceModal();
}
return response;
}
_validateSignupRedirect(url, type) {
let errMessage = `Please enter a valid URL`;
this.settings.errors.remove(type);
this.settings.hasValidated.removeObject(type);
if (url === null) {
this.settings.errors.add(type, errMessage);
this.settings.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[type] = path;
} else {
this.settings[type] = url.href;
}
}
}