Ghost/ghost/admin/app/routes/offer.js
Rishabh 31e4b77525 Added initial wiring for offer screens
refs https://github.com/TryGhost/Team/issues/1084
refs https://github.com/TryGhost/Team/issues/1085

- adds model/validator/config and router for offers
- updates template for offer list and detail with dynamic values
- updated route handling for offer list and creation
- wires offer data from API to list and detail pages
2021-10-06 20:01:25 +05:30

74 lines
2.2 KiB
JavaScript

import AuthenticatedRoute from 'ghost-admin/routes/authenticated';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
export default class OffersRoute extends AuthenticatedRoute {
@service router;
_requiresBackgroundRefresh = true;
constructor() {
super(...arguments);
this.router.on('routeWillChange', (transition) => {
this.showUnsavedChangesModal(transition);
});
}
beforeModel() {
super.beforeModel(...arguments);
if (!this.session.user.isAdmin) {
return this.transitionTo('home');
}
}
model(params) {
this._requiresBackgroundRefresh = false;
if (params.offer_id) {
return this.store.queryRecord('offer', {id: params.offer_id});
} else {
return this.store.createRecord('offer');
}
}
setupController(controller, offer) {
super.setupController(...arguments);
if (this._requiresBackgroundRefresh) {
// `offer` is passed directly in `<LinkTo>` so it can be a proxy
// object used by the sparse list requiring the use of .get()
controller.fetchOfferTask.perform(offer.get('id'));
}
}
deactivate() {
super.deactivate(...arguments);
// clean up newly created records and revert unsaved changes to existing
this.controller.offer.rollbackAttributes();
this._requiresBackgroundRefresh = true;
}
@action
save() {
this.controller.save();
}
titleToken() {
return this.controller.offer.name;
}
showUnsavedChangesModal(transition) {
if (transition.from && transition.from.name === this.routeName && transition.targetName) {
let {controller} = this;
// offer.changedAttributes is always true for new offers but number of changed attrs is reliable
let isChanged = Object.keys(controller.offer.changedAttributes()).length > 0;
if (!controller.offer.isDeleted && isChanged) {
transition.abort();
controller.toggleUnsavedChangesModal(transition);
return;
}
}
}
}