mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
0f8610a6e9
no issue - posts and pages (and their corresponding `-loading` counterparts) templates were all duplicating a lengthy section of handlebars - extracted the duplicated handlebars into a template for easier design changes or upgrading of `ember-power-select` - moved generation of the "selected" CSS classes into the template to clean up code in the controller
67 lines
2.9 KiB
Handlebars
67 lines
2.9 KiB
Handlebars
<section class="gh-canvas">
|
|
<GhCanvasHeader class="gh-canvas-header post-header">
|
|
<h2 class="gh-canvas-title" data-test-screen-title>Posts</h2>
|
|
<section class="view-actions">
|
|
<GhContentfilter
|
|
@selectedType={{this.selectedType}}
|
|
@availableTypes={{this.availableTypes}}
|
|
@onTypeChange={{action "changeType"}}
|
|
@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"}}
|
|
/>
|
|
|
|
{{#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>
|
|
|
|
<section class="content-list">
|
|
<ol class="posts-list gh-list {{unless this.postsInfinityModel "no-posts"}}">
|
|
{{#if this.postsInfinityModel}}
|
|
<li class="gh-list-row header">
|
|
<div class="gh-list-header no-padding">{{!--Favorite indicator column: no header--}}</div>
|
|
<div class="gh-list-header gh-posts-title-header">Title</div>
|
|
<div class="gh-list-header gh-posts-status-header">Status</div>
|
|
<div class="gh-list-header gh-posts-lastupdate-header">Last update</div>
|
|
</li>
|
|
{{/if}}
|
|
|
|
{{#each this.postsInfinityModel as |post|}}
|
|
{{gh-posts-list-item
|
|
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"}}
|
|
<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>
|
|
{{/each}}
|
|
</ol>
|
|
|
|
{{gh-infinity-loader
|
|
infinityModel=this.postsInfinityModel
|
|
scrollable=".gh-main"
|
|
triggerOffset=1000}}
|
|
</section>
|
|
|
|
{{outlet}}
|
|
</section>
|