mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
2a77c0fe51
no issue - list custom post views in collapsable sidebar navigation - default views: Draft, Scheduled, Published (except for contributors) - record expanded/collapsed state of the navigation menus in user settings via new `navigation` service - adds `customViews` service that manages custom views - provides list of default views - gives access to "active" custom view based on current route and query params - manages loading/saving of custom views to user settings - show "Add view" button in the content filter when the posts list has been filtered - show "Edit view" button in the content filter when the posts list filter matches a saved view Co-authored-by: Peter Zimon <peter.zimon@gmail.com>
68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class GhCustomViewsIndexLinkComponent extends Component {
|
|
@service customViews;
|
|
@service router;
|
|
|
|
_forceReset = false;
|
|
_lastIsActive = false;
|
|
|
|
@action
|
|
watchRouterEvents() {
|
|
this.router.on('routeWillChange', this.handleRouteWillChange);
|
|
}
|
|
|
|
@action
|
|
unwatchRouterEvents() {
|
|
this.router.off('routeWillChange', this.handleRouteWillChange);
|
|
}
|
|
|
|
// the top-level custom nav link will reset the filter if you're currently
|
|
// viewing the associated screen. However, the filter will be remembered by
|
|
// Ember automatically if you leave the screen and come back. This causes
|
|
// odd behaviour in the nav if you were on a custom view, go to another
|
|
// screen, then click back on the top-level nav link as you'll jump from
|
|
// the top-level nav to the custom view.
|
|
//
|
|
// to get around this we keep track of the transitions so that we can force
|
|
// the link to be a "reset" link any time navigation occurs from a custom
|
|
// view to an unassociated screen
|
|
@action
|
|
handleRouteWillChange({from, to}) {
|
|
let normalizedToRoute = to && to.name.replace(/_loading$/, '');
|
|
|
|
if (from && from.name === this.args.route && normalizedToRoute !== this.args.route) {
|
|
if (this.customViews.activeView && this.customViews.activeView.route === this.args.route) {
|
|
this._forceReset = true;
|
|
}
|
|
}
|
|
|
|
if (normalizedToRoute === this.args.route) {
|
|
this._forceReset = false;
|
|
}
|
|
}
|
|
|
|
get isActive() {
|
|
if (this.router.currentRouteName.match(/_loading$/)) {
|
|
return this._lastIsActive;
|
|
}
|
|
|
|
let currentRouteName = this.router.currentRouteName.replace(/_loading$/, '');
|
|
|
|
this._lastIsActive = currentRouteName === this.args.route
|
|
&& !this.customViews.activeView;
|
|
|
|
return this._lastIsActive;
|
|
}
|
|
|
|
get resetQuery() {
|
|
if (this._forceReset || this.router.currentRouteName === this.args.route) {
|
|
return this.args.query;
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
}
|