2019-02-22 06:17:33 +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>Pages</h2>
|
2019-02-22 06:17:33 +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}}
|
2019-02-22 06:17:33 +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}}
|
2019-02-22 06:17:33 +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}}
|
2019-02-22 06:17:33 +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" "page" class="gh-btn gh-btn-green" data-test-new-page-button=true}}<span>New page</span>{{/link-to}}
|
|
|
|
</section>
|
|
|
|
</GhCanvasHeader>
|
2019-02-22 06:17:33 +03:00
|
|
|
|
|
|
|
<section class="content-list">
|
2019-06-18 13:47:21 +03:00
|
|
|
<ol class="gh-list {{unless postsInfinityModel "no-posts"}}">
|
|
|
|
{{#if postsInfinityModel}}
|
|
|
|
<li class="gh-list-row header">
|
|
|
|
<div class="gh-list-header">{{!--Favorite indicator column: no header--}}</div>
|
|
|
|
<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}}
|
|
|
|
|
2019-02-22 06:17:33 +03:00
|
|
|
{{#each postsInfinityModel as |page|}}
|
|
|
|
{{gh-posts-list-item
|
|
|
|
post=page
|
|
|
|
data-test-page-id=page.id}}
|
|
|
|
{{else}}
|
|
|
|
<li class="no-posts-box">
|
|
|
|
<div class="no-posts">
|
|
|
|
{{#if showingAll}}
|
2019-03-25 18:43:38 +03:00
|
|
|
{{svg-jar "pages-placeholder" class="gh-pages-placeholder"}}
|
2019-02-22 06:17:33 +03:00
|
|
|
<h3>You haven't created any pages yet!</h3>
|
2019-06-18 13:47:21 +03:00
|
|
|
{{#link-to "editor.new" "page" class="gh-btn gh-btn-green gh-btn-lg"}}
|
|
|
|
<span>Create a new page</span>
|
|
|
|
{{/link-to}}
|
2019-02-22 06:17:33 +03:00
|
|
|
{{else}}
|
|
|
|
<h3>No pages match the current filter</h3>
|
2019-06-18 13:47:21 +03:00
|
|
|
{{#link-to "pages" (query-params type=null author=null tag=null) class="gh-btn gh-btn-lg"}}
|
|
|
|
<span>Show all pages</span>
|
|
|
|
{{/link-to}}
|
2019-02-22 06:17:33 +03:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
{{gh-infinity-loader
|
|
|
|
infinityModel=postsInfinityModel
|
|
|
|
scrollable=".gh-main"
|
|
|
|
triggerOffset=1000}}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{outlet}}
|
|
|
|
</section>
|