f2c0bff9df
no issue
refs dac5cca899
- added cleanup of the `message` event handler added to `window` when the component is destroyed
- added a guard to the event handler method to abort early if a message is received whilst the component is being destroyed
- updated Billing Service and `<GHBillingIframe>` to not use `@classic` decorator
60 lines
1.5 KiB
JavaScript
60 lines
1.5 KiB
JavaScript
import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
|
|
import {action} from '@ember/object';
|
|
import {inject} from 'ghost-admin/decorators/inject';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class ProRoute extends AuthenticatedRoute {
|
|
@service billing;
|
|
@service session;
|
|
|
|
@inject config;
|
|
|
|
queryParams = {
|
|
action: {refreshModel: true}
|
|
};
|
|
|
|
beforeModel(transition) {
|
|
super.beforeModel(...arguments);
|
|
|
|
// allow non-owner users to access the BMA when we're in a force upgrade state
|
|
if (!this.session.user.isOwnerOnly && !this.config.hostSettings?.forceUpgrade) {
|
|
return this.transitionTo('home');
|
|
}
|
|
|
|
this.billing.previousTransition = transition;
|
|
}
|
|
|
|
model(params) {
|
|
if (params.action) {
|
|
this.billing.action = params.action;
|
|
}
|
|
|
|
this.billing.toggleProWindow(true);
|
|
}
|
|
|
|
@action
|
|
willTransition(transition) {
|
|
let isBillingTransition = false;
|
|
|
|
if (transition) {
|
|
let destinationUrl = (typeof transition.to === 'string')
|
|
? transition.to
|
|
: (transition.intent
|
|
? transition.intent.url
|
|
: '');
|
|
|
|
if (destinationUrl?.includes('/pro')) {
|
|
isBillingTransition = true;
|
|
}
|
|
}
|
|
|
|
this.billing.toggleProWindow(isBillingTransition);
|
|
}
|
|
|
|
buildRouteInfoMetadata() {
|
|
return {
|
|
titleToken: 'Ghost(Pro)'
|
|
};
|
|
}
|
|
}
|