2017-02-15 15:43:49 +03:00
|
|
|
<section class="gh-canvas">
|
2019-06-18 13:47:21 +03:00
|
|
|
<GhCanvasHeader class="gh-canvas-header post-header">
|
|
|
|
<h2 class="gh-canvas-title" data-test-screen-title>Posts</h2>
|
2017-02-23 21:47:52 +03:00
|
|
|
<section class="view-actions">
|
2019-06-18 13:47:21 +03:00
|
|
|
<div class="gh-contentfilter">
|
|
|
|
{{#unless session.user.isContributor}}
|
|
|
|
{{#power-select
|
|
|
|
selected=selectedType
|
|
|
|
options=availableTypes
|
|
|
|
searchEnabled=false
|
|
|
|
onchange=(action "changeType")
|
|
|
|
tagName="div"
|
|
|
|
classNames=typeClassNames
|
|
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
|
|
matchTriggerWidth=false
|
|
|
|
data-test-type-select=true
|
|
|
|
as |type|
|
|
|
|
}}
|
|
|
|
{{type.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
{{/unless}}
|
2017-03-02 21:35:09 +03:00
|
|
|
|
2019-06-18 13:47:21 +03:00
|
|
|
{{#unless session.user.isAuthorOrContributor}}
|
|
|
|
{{#power-select
|
|
|
|
selected=selectedAuthor
|
|
|
|
options=availableAuthors
|
|
|
|
searchField="name"
|
|
|
|
onchange=(action "changeAuthor")
|
|
|
|
tagName="div"
|
|
|
|
classNames=authorClassNames
|
|
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
|
|
searchPlaceholder="Search authors"
|
|
|
|
matchTriggerWidth=false
|
|
|
|
data-test-author-select=true
|
|
|
|
as |author|
|
|
|
|
}}
|
|
|
|
{{author.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
{{/unless}}
|
2017-03-02 21:35:09 +03:00
|
|
|
|
2019-06-18 13:47:21 +03:00
|
|
|
{{#unless session.user.isContributor}}
|
|
|
|
{{#power-select
|
|
|
|
selected=selectedTag
|
|
|
|
options=availableTags
|
|
|
|
searchField="name"
|
|
|
|
onchange=(action "changeTag")
|
|
|
|
tagName="div"
|
|
|
|
classNames=tagClassNames
|
|
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
|
|
searchPlaceholder="Search tags"
|
|
|
|
matchTriggerWidth=false
|
|
|
|
optionsComponent="power-select-vertical-collection-options"
|
|
|
|
data-test-tag-select=true
|
|
|
|
as |tag|
|
|
|
|
}}
|
|
|
|
{{tag.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
{{/unless}}
|
2017-03-07 20:36:28 +03:00
|
|
|
|
2019-06-18 13:47:21 +03:00
|
|
|
{{#power-select
|
|
|
|
selected=selectedOrder
|
|
|
|
options=availableOrders
|
|
|
|
searchEnabled=false
|
|
|
|
onchange=(action "changeOrder")
|
|
|
|
tagName="div"
|
|
|
|
classNames="gh-contentfilter-menu gh-contentfilter-sort"
|
|
|
|
triggerClass="gh-contentfilter-menu-trigger"
|
|
|
|
dropdownClass="gh-contentfilter-menu-dropdown"
|
|
|
|
matchTriggerWidth=false
|
|
|
|
data-test-order-select=true
|
|
|
|
as |order|
|
|
|
|
}}
|
|
|
|
{{order.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{#link-to "editor.new" "post" class="gh-btn gh-btn-green" data-test-new-post-button=true}}<span>New post</span>{{/link-to}}
|
|
|
|
</section>
|
|
|
|
</GhCanvasHeader>
|
2017-02-23 21:47:52 +03:00
|
|
|
|
|
|
|
<section class="content-list">
|
2019-06-18 13:47:21 +03:00
|
|
|
<ol class="posts-list gh-list {{unless postsInfinityModel "no-posts"}}">
|
|
|
|
{{#if postsInfinityModel}}
|
|
|
|
<li class="gh-list-row header">
|
2019-08-27 16:51:31 +03:00
|
|
|
<div class="gh-list-header no-padding">{{!--Favorite indicator column: no header--}}</div>
|
2019-06-18 13:47:21 +03:00
|
|
|
<div class="gh-list-header gh-posts-title-header">Title</div>
|
|
|
|
<div class="gh-list-header">Status</div>
|
|
|
|
<div class="gh-list-header">Last update</div>
|
|
|
|
<div class="gh-list-header">Authors</div>
|
|
|
|
</li>
|
|
|
|
{{/if}}
|
|
|
|
|
2018-01-11 01:57:43 +03:00
|
|
|
{{#each postsInfinityModel as |post|}}
|
2017-02-23 21:47:52 +03:00
|
|
|
{{gh-posts-list-item
|
|
|
|
post=post
|
2017-03-02 21:35:09 +03:00
|
|
|
data-test-post-id=post.id}}
|
2017-02-23 21:47:52 +03:00
|
|
|
{{else}}
|
2019-06-18 13:47:21 +03:00
|
|
|
<li class="no-posts-box">
|
|
|
|
<div class="no-posts">
|
|
|
|
{{#if showingAll}}
|
|
|
|
{{svg-jar "posts-placeholder" class="gh-posts-placeholder"}}
|
|
|
|
<h3>You haven't written any posts yet!</h3>
|
|
|
|
{{#link-to "editor.new" "post" class="gh-btn gh-btn-green gh-btn-lg"}}
|
|
|
|
<span>Write a new post</span>
|
|
|
|
{{/link-to}}
|
|
|
|
{{else}}
|
|
|
|
<h3>No posts match the current filter</h3>
|
|
|
|
{{#link-to "posts" (query-params type=null author=null tag=null) class="gh-btn gh-btn-lg"}}
|
|
|
|
<span>Show all posts</span>
|
|
|
|
{{/link-to}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</li>
|
2017-02-23 21:47:52 +03:00
|
|
|
{{/each}}
|
|
|
|
</ol>
|
|
|
|
|
2019-01-02 12:58:55 +03:00
|
|
|
{{gh-infinity-loader
|
2018-01-11 01:57:43 +03:00
|
|
|
infinityModel=postsInfinityModel
|
2017-02-23 21:47:52 +03:00
|
|
|
scrollable=".gh-main"
|
|
|
|
triggerOffset=1000}}
|
|
|
|
</section>
|
|
|
|
|
2017-01-25 23:05:28 +03:00
|
|
|
{{outlet}}
|
|
|
|
</section>
|