Ghost/ghost/admin/app/templates/posts.hbs
Kevin Ansfield 7c7c4962f9 Upgraded ember-power-* addons (#1459)
no issue

- bump deps
- adjust usage for breaking changes... 
  - https://github.com/cibernox/ember-power-select/blob/master/CHANGELOG.md#300-beta1
  - https://github.com/cibernox/ember-basic-dropdown/blob/master/CHANGELOG.md#200-beta3
  - https://github.com/cibernox/ember-power-datepicker/blob/master/CHANGELOG.md#070
- update overridden component and template files to match latest addon code
  - switch to class syntax w/decorators
  - adjust for angle bracket syntax
2020-01-15 13:53:51 +00:00

127 lines
5.4 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">
<div class="gh-contentfilter">
{{#unless this.session.user.isContributor}}
<PowerSelect
@selected={{this.selectedType}}
@options={{this.availableTypes}}
@searchEnabled={{false}}
@onChange={{action "changeType"}}
@tagName="div"
@classNames={{this.typeClassNames}}
@triggerClass="gh-contentfilter-menu-trigger"
@dropdownClass="gh-contentfilter-menu-dropdown"
@matchTriggerWidth={{false}}
data-test-type-select="true"
as |type|
>
{{type.name}}
</PowerSelect>
{{/unless}}
{{#unless this.session.user.isAuthorOrContributor}}
<PowerSelect
@selected={{this.selectedAuthor}}
@options={{this.availableAuthors}}
@searchField="name"
@onChange={{action "changeAuthor"}}
@tagName="div"
@classNames={{this.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}}
</PowerSelect>
{{/unless}}
{{#unless this.session.user.isContributor}}
<PowerSelect
@selected={{this.selectedTag}}
@options={{this.availableTags}}
@searchField="name"
@onChange={{action "changeTag"}}
@tagName="div"
@classNames={{this.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}}
</PowerSelect>
{{/unless}}
<PowerSelect
@selected={{this.selectedOrder}}
@options={{this.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}}
</PowerSelect>
</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>
<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>