2022-08-24 17:46:39 +03:00
|
|
|
<section class="gh-canvas gh-canvas-sticky">
|
2022-10-04 08:35:29 +03:00
|
|
|
<GhCanvasHeader class="gh-canvas-header sticky break tablet post-header">
|
2020-02-03 19:27:42 +03:00
|
|
|
<GhCustomViewTitle @title="Pages" @query={{reset-query-params "posts"}} />
|
2020-01-30 18:35:36 +03:00
|
|
|
|
2019-02-22 06:17:33 +03:00
|
|
|
<section class="view-actions">
|
2022-09-08 11:42:07 +03:00
|
|
|
<PostsList::ContentFilter
|
2020-06-04 23:30:06 +03:00
|
|
|
@currentUser={{this.session.user}}
|
2020-01-15 18:15:20 +03:00
|
|
|
@selectedType={{this.selectedType}}
|
|
|
|
@availableTypes={{this.availableTypes}}
|
2022-10-07 20:39:34 +03:00
|
|
|
@onTypeChange={{this.changeType}}
|
2020-06-09 14:19:25 +03:00
|
|
|
@selectedVisibility={{this.selectedVisibility}}
|
|
|
|
@availableVisibilities={{this.availableVisibilities}}
|
2022-10-07 20:39:34 +03:00
|
|
|
@onVisibilityChange={{this.changeVisibility}}
|
2020-01-15 18:15:20 +03:00
|
|
|
@selectedAuthor={{this.selectedAuthor}}
|
|
|
|
@availableAuthors={{this.availableAuthors}}
|
2022-10-07 20:39:34 +03:00
|
|
|
@onAuthorChange={{this.changeAuthor}}
|
2020-01-15 18:15:20 +03:00
|
|
|
@selectedTag={{this.selectedTag}}
|
|
|
|
@availableTags={{this.availableTags}}
|
2022-10-07 20:39:34 +03:00
|
|
|
@onTagChange={{this.changeTag}}
|
2020-01-15 18:15:20 +03:00
|
|
|
@selectedOrder={{this.selectedOrder}}
|
|
|
|
@availableOrders={{this.availableOrders}}
|
2022-10-07 20:39:34 +03:00
|
|
|
@onOrderChange={{this.changeOrder}}
|
2020-01-15 18:15:20 +03:00
|
|
|
/>
|
2019-06-18 13:47:21 +03:00
|
|
|
|
2023-10-04 14:22:54 +03:00
|
|
|
<LinkTo @route="lexical-editor.new" @model="page" class="gh-btn gh-btn-primary view-actions-top-row" data-test-new-page-button={{true}}><span>New page</span></LinkTo>
|
2019-06-18 13:47:21 +03:00
|
|
|
</section>
|
|
|
|
</GhCanvasHeader>
|
2019-02-22 06:17:33 +03:00
|
|
|
|
2021-02-08 23:16:41 +03:00
|
|
|
<section class="view-container content-list">
|
2023-05-16 07:27:37 +03:00
|
|
|
<PostsList::List
|
2024-07-29 19:19:28 +03:00
|
|
|
@model={{@model}}
|
2023-05-16 07:27:37 +03:00
|
|
|
@list={{this.selectionList}}
|
|
|
|
>
|
|
|
|
<li class="no-posts-box">
|
|
|
|
<div class="no-posts">
|
|
|
|
{{#if this.showingAll}}
|
|
|
|
{{svg-jar "pages-placeholder" class="gh-pages-placeholder"}}
|
|
|
|
<h4>Tell the world about yourself.</h4>
|
2023-10-04 14:22:54 +03:00
|
|
|
<LinkTo @route="lexical-editor.new" @model="page" class="gh-btn gh-btn-green">
|
2023-05-16 07:27:37 +03:00
|
|
|
<span>Create a new page</span>
|
|
|
|
</LinkTo>
|
|
|
|
{{else}}
|
|
|
|
<h4>No pages match the current filter</h4>
|
2024-07-29 19:19:28 +03:00
|
|
|
<LinkTo @route="pages" @query={{hash visibility=null type=null author=null tag=null}} class="gh-btn">
|
2023-05-16 07:27:37 +03:00
|
|
|
<span>Show all pages</span>
|
|
|
|
</LinkTo>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</PostsList::List>
|
2019-02-22 06:17:33 +03:00
|
|
|
|
2024-07-29 19:19:28 +03:00
|
|
|
{{!-- only show one infinity loader wheel at a time - always order as scheduled, draft, remainder --}}
|
|
|
|
{{#if @model.scheduledInfinityModel}}
|
2020-01-16 18:14:03 +03:00
|
|
|
<GhInfinityLoader
|
2024-07-29 19:19:28 +03:00
|
|
|
@infinityModel={{@model.scheduledInfinityModel}}
|
2020-01-16 18:14:03 +03:00
|
|
|
@scrollable=".gh-main"
|
|
|
|
@triggerOffset={{1000}} />
|
2024-07-29 19:19:28 +03:00
|
|
|
{{/if}}
|
|
|
|
{{#if (and @model.draftInfinityModel (or (not @model.scheduledInfinityModel) (and @model.scheduledInfinityModel @model.scheduledInfinityModel.reachedInfinity)))}}
|
|
|
|
<GhInfinityLoader
|
|
|
|
@infinityModel={{@model.draftInfinityModel}}
|
|
|
|
@scrollable=".gh-main"
|
|
|
|
@triggerOffset={{1000}} />
|
|
|
|
{{/if}}
|
|
|
|
{{#if (and @model.publishedAndSentInfinityModel (and (or (not @model.scheduledInfinityModel) @model.scheduledInfinityModel.reachedInfinity) (or (not @model.draftInfinityModel) @model.draftInfinityModel.reachedInfinity)))}}
|
|
|
|
<GhInfinityLoader
|
|
|
|
@infinityModel={{@model.publishedAndSentInfinityModel}}
|
|
|
|
@scrollable=".gh-main"
|
|
|
|
@triggerOffset={{1000}} />
|
|
|
|
{{/if}}
|
2019-02-22 06:17:33 +03:00
|
|
|
|
2024-07-29 19:19:28 +03:00
|
|
|
</section>
|
2019-02-22 06:17:33 +03:00
|
|
|
{{outlet}}
|
|
|
|
</section>
|