Ghost/ghost/admin/app/templates/posts.hbs

119 lines
4.6 KiB
Handlebars
Raw Normal View History

<section class="gh-canvas">
<header class="gh-canvas-header">
<h2 class="gh-canvas-title" data-test-screen-title>Your stories</h2>
<section class="view-actions">
{{#link-to "editor.new" class="gh-btn gh-btn-green" data-test-new-post-button=true}}<span>New story</span>{{/link-to}}
</section>
</header>
<div class="gh-contentfilter">
2017-03-11 14:23:44 +03:00
<div class="gh-contentfilter-left">
{{#unless session.user.isContributor}}
2017-03-11 14:23:44 +03:00
{{#power-select
selected=selectedType
options=availableTypes
2017-04-10 14:16:19 +03:00
searchEnabled=false
2017-03-11 14:23:44 +03:00
onchange=(action "changeType")
tagName="div"
2017-03-13 13:48:21 +03:00
classNames="gh-contentfilter-menu gh-contentfilter-type"
2017-04-10 14:16:19 +03:00
triggerClass="gh-contentfilter-menu-trigger"
dropdownClass="gh-contentfilter-menu-dropdown"
matchTriggerWidth=false
2017-03-11 14:23:44 +03:00
data-test-type-select=true
as |type|
}}
{{type.name}}
{{/power-select}}
{{/unless}}
{{#unless session.user.isAuthorOrContributor}}
2017-03-11 14:23:44 +03:00
{{#power-select
selected=selectedAuthor
options=availableAuthors
searchField="name"
onchange=(action "changeAuthor")
tagName="div"
2017-03-13 13:48:21 +03:00
classNames="gh-contentfilter-menu gh-contentfilter-author"
2017-04-10 14:16:19 +03:00
triggerClass="gh-contentfilter-menu-trigger"
dropdownClass="gh-contentfilter-menu-dropdown"
searchPlaceholder="Search authors"
matchTriggerWidth=false
2017-03-11 14:23:44 +03:00
data-test-author-select=true
as |author|
}}
{{author.name}}
{{/power-select}}
{{/unless}}
{{#unless session.user.isContributor}}
2017-03-11 14:23:44 +03:00
{{#power-select
selected=selectedTag
options=availableTags
searchField="name"
onchange=(action "changeTag")
tagName="div"
2017-03-13 13:48:21 +03:00
classNames="gh-contentfilter-menu gh-contentfilter-tag"
2017-04-10 14:16:19 +03:00
triggerClass="gh-contentfilter-menu-trigger"
dropdownClass="gh-contentfilter-menu-dropdown"
searchPlaceholder="Search tags"
matchTriggerWidth=false
optionsComponent="power-select-vertical-collection-options"
2017-03-11 14:23:44 +03:00
data-test-tag-select=true
as |tag|
}}
{{tag.name}}
{{/power-select}}
{{/unless}}
2017-03-11 14:23:44 +03:00
</div>
2017-03-11 14:23:44 +03:00
<div class="gh-contentfilter-right">
Sort by:
{{#power-select
selected=selectedOrder
options=availableOrders
searchEnabled=false
onchange=(action "changeOrder")
tagName="div"
2017-03-13 13:48:21 +03:00
classNames="gh-contentfilter-menu gh-contentfilter-sort"
2017-04-10 14:16:19 +03:00
triggerClass="gh-contentfilter-menu-trigger"
dropdownClass="gh-contentfilter-menu-dropdown"
horizontalPosition="right"
matchTriggerWidth=false
2017-03-11 14:23:44 +03:00
data-test-order-select=true
as |order|
}}
{{order.name}}
{{/power-select}}
</div>
</div>
<section class="content-list">
<ol class="posts-list">
{{#each postsInfinityModel as |post|}}
{{gh-posts-list-item
post=post
onDoubleClick=(action "openEditor")
data-test-post-id=post.id}}
{{else}}
<li class="no-posts-box">
<div class="no-posts">
{{#if showingAll}}
<h3>You haven't written any stories yet!</h3>
{{#link-to "editor.new"}}<button type="button" class="gh-btn gh-btn-green gh-btn-lg"><span>Write a new Story</span></button>{{/link-to}}
{{else}}
<h3>No stories match the current filter</h3>
{{#link-to "posts.index" (query-params type=null author=null tag=null)}}<button type="button" class="gh-btn gh-btn-lg"><span>Show all stories</span></button>{{/link-to}}
{{/if}}
</div>
</li>
{{/each}}
</ol>
{{infinity-loader
infinityModel=postsInfinityModel
scrollable=".gh-main"
triggerOffset=1000}}
</section>
{{outlet}}
</section>