a3c71b8ba8
no issue - added a `transitionTo` after deleting a custom view that transitions to the `posts` route with default query params - refactored `reset-posts-query` helper to a more generic `reset-query-params` helper - moved default query params definitions to this helper and expose them so we have a single source of truth - exposed `resetQueryParams()` function from the helper for use outside of templates - adjust the function and helper behaviour to accept the route name as the first param so that `router.currentRouteName` can be used as a generic reset
28 lines
1.2 KiB
Handlebars
28 lines
1.2 KiB
Handlebars
<section class="gh-canvas" {{did-insert (action "setMainClass" "gh-main-primarybg" target=this.ui)}}>
|
|
<header class="gh-canvas-header post-header">
|
|
<GhCustomViewTitle @title="Pages" @query={{reset-query-params "posts"}} />
|
|
<section class="view-actions">
|
|
<GhContentfilter
|
|
@selectedType={{this.selectedType}}
|
|
@availableTypes={{this.availableTypes}}
|
|
@onTypeChange={{action (mut k)}}
|
|
@selectedAuthor={{this.selectedAuthor}}
|
|
@availableAuthors={{this.availableAuthors}}
|
|
@onAuthorChange={{action (mut k)}}
|
|
@selectedTag={{this.selectedTag}}
|
|
@availableTags={{this.availableTags}}
|
|
@onTagChange={{action (mut k)}}
|
|
@selectedOrder={{this.selectedOrder}}
|
|
@availableOrders={{this.availableOrders}}
|
|
@onOrderChange={{action (mut k)}}
|
|
/>
|
|
|
|
<LinkTo @route="editor.new" @model="page" class="gh-btn gh-btn-green" data-test-new-page-button={{true}}><span>New page</span></LinkTo>
|
|
</section>
|
|
</header>
|
|
|
|
<div class="gh-content">
|
|
<GhLoadingList />
|
|
</div>
|
|
</section>
|