2022-08-24 17:46:39 +03:00
|
|
|
<section class="gh-canvas gh-canvas-sticky">
|
2021-02-12 16:29:44 +03:00
|
|
|
<GhCanvasHeader class="gh-canvas-header break tablet post-header">
|
2022-02-01 20:59:20 +03:00
|
|
|
<GhCustomViewTitle @title={{if this.session.user.isContributor (concat this.config.blogTitle " posts") "Posts"}} @query={{reset-query-params "posts"}} />
|
2020-01-30 18:35:36 +03:00
|
|
|
|
2017-02-23 21:47:52 +03:00
|
|
|
<section class="view-actions">
|
2020-01-15 18:15:20 +03:00
|
|
|
<GhContentfilter
|
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}}
|
|
|
|
@onTypeChange={{action "changeType"}}
|
2020-06-09 14:19:25 +03:00
|
|
|
@selectedVisibility={{this.selectedVisibility}}
|
|
|
|
@availableVisibilities={{this.availableVisibilities}}
|
|
|
|
@onVisibilityChange={{action "changeVisibility"}}
|
2020-01-15 18:15:20 +03:00
|
|
|
@selectedAuthor={{this.selectedAuthor}}
|
|
|
|
@availableAuthors={{this.availableAuthors}}
|
|
|
|
@onAuthorChange={{action "changeAuthor"}}
|
|
|
|
@selectedTag={{this.selectedTag}}
|
|
|
|
@availableTags={{this.availableTags}}
|
|
|
|
@onTagChange={{action "changeTag"}}
|
|
|
|
@selectedOrder={{this.selectedOrder}}
|
|
|
|
@availableOrders={{this.availableOrders}}
|
|
|
|
@onOrderChange={{action "changeOrder"}}
|
|
|
|
/>
|
2019-06-18 13:47:21 +03:00
|
|
|
|
2021-02-12 16:29:44 +03:00
|
|
|
<LinkTo @route="editor.new" @model="post" class="gh-btn gh-btn-primary view-actions-top-row" data-test-new-post-button={{true}}><span>New post</span></LinkTo>
|
2019-06-18 13:47:21 +03:00
|
|
|
</section>
|
|
|
|
</GhCanvasHeader>
|
2017-02-23 21:47:52 +03:00
|
|
|
|
2021-02-08 23:16:41 +03:00
|
|
|
<section class="view-container content-list">
|
2022-08-24 17:46:39 +03:00
|
|
|
<div class="{{if this.feature.memberAttribution 'gh-list-sticky'}}">
|
|
|
|
<ol class="posts-list gh-list {{unless this.postsInfinityModel "no-posts"}} {{if this.feature.memberAttribution 'feature-memberAttribution'}}">
|
|
|
|
{{#if this.postsInfinityModel}}
|
|
|
|
<li class="gh-list-row header">
|
|
|
|
<div class="gh-list-header gh-posts-title-header">Title</div>
|
2022-08-25 18:01:12 +03:00
|
|
|
|
|
|
|
{{#if (and this.feature.memberAttribution (not this.session.user.isContributor)) }}
|
|
|
|
<div class="gh-list-header gh-posts-status-header"></div>
|
2022-08-24 17:46:39 +03:00
|
|
|
<div class="gh-list-header gh-posts-signups-header">Signups</div>
|
|
|
|
<div class="gh-list-header gh-posts-conversions-header">Paid</div>
|
|
|
|
{{/if}}
|
|
|
|
{{#if (and (not-eq this.settings.membersSignupAccess "none") (not-eq this.settings.editorDefaultEmailRecipients "disabled") (not this.session.user.isContributor) this.feature.emailAnalytics)}}
|
|
|
|
<div class="gh-list-header gh-posts-sends-header">Sends</div>
|
|
|
|
<div class="gh-list-header gh-posts-opens-header">Opens</div>
|
|
|
|
{{/if}}
|
2022-08-25 18:01:12 +03:00
|
|
|
{{#if (or (not this.feature.memberAttribution) this.session.user.isContributor) }}
|
2022-08-24 17:46:39 +03:00
|
|
|
<div class="gh-list-header gh-posts-status-header">Status</div>
|
2022-08-25 18:01:12 +03:00
|
|
|
{{/if}}
|
2022-08-24 17:46:39 +03:00
|
|
|
</li>
|
|
|
|
{{/if}}
|
2019-06-18 13:47:21 +03:00
|
|
|
|
2022-08-24 17:46:39 +03:00
|
|
|
{{#each this.postsInfinityModel as |post|}}
|
|
|
|
<GhPostsListItem
|
|
|
|
@post={{post}}
|
|
|
|
data-test-post-id={{post.id}} />
|
|
|
|
{{else}}
|
|
|
|
<li class="no-posts-box">
|
|
|
|
<div class="no-posts">
|
|
|
|
{{#if this.showingAll}}
|
|
|
|
{{svg-jar "posts-placeholder" class="gh-posts-placeholder"}}
|
|
|
|
<h4>Start creating content.</h4>
|
|
|
|
<LinkTo @route="editor.new" @model="post" class="gh-btn gh-btn-green">
|
|
|
|
<span>Write a new post</span>
|
|
|
|
</LinkTo>
|
|
|
|
{{else}}
|
|
|
|
<h4>No posts match the current filter</h4>
|
|
|
|
<LinkTo @route="posts" @query={{hash type=null author=null tag=null}} class="gh-btn">
|
|
|
|
<span>Show all posts</span>
|
|
|
|
</LinkTo>
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ol>
|
|
|
|
</div>
|
2017-02-23 21:47:52 +03:00
|
|
|
|
2020-01-16 18:14:03 +03:00
|
|
|
<GhInfinityLoader
|
|
|
|
@infinityModel={{this.postsInfinityModel}}
|
|
|
|
@scrollable=".gh-main"
|
|
|
|
@triggerOffset={{1000}} />
|
2017-02-23 21:47:52 +03:00
|
|
|
</section>
|
|
|
|
|
2017-01-25 23:05:28 +03:00
|
|
|
{{outlet}}
|
2022-08-25 18:01:12 +03:00
|
|
|
</section>
|