2017-02-15 15:43:49 +03:00
|
|
|
<section class="gh-canvas">
|
2017-02-23 21:47:52 +03:00
|
|
|
<header class="gh-canvas-header">
|
|
|
|
<h2 class="gh-canvas-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-02 21:35:09 +03:00
|
|
|
{{#power-select
|
|
|
|
selected=selectedType
|
|
|
|
options=availableTypes
|
|
|
|
searchField="name"
|
|
|
|
onchange=(action "changeType")
|
|
|
|
tagName="div"
|
|
|
|
data-test-type-select=true
|
|
|
|
as |type|
|
|
|
|
}}
|
|
|
|
{{type.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
|
|
|
|
{{#unless session.user.isAuthor}}
|
|
|
|
{{#power-select
|
|
|
|
selected=selectedAuthor
|
|
|
|
options=availableAuthors
|
|
|
|
searchField="name"
|
|
|
|
onchange=(action "changeAuthor")
|
|
|
|
tagName="div"
|
|
|
|
data-test-author-select=true
|
|
|
|
as |author|
|
|
|
|
}}
|
|
|
|
{{author.name}}
|
|
|
|
{{/power-select}}
|
|
|
|
{{/unless}}
|
|
|
|
|
|
|
|
{{#power-select
|
|
|
|
selected=selectedTag
|
|
|
|
options=availableTags
|
|
|
|
searchField="name"
|
|
|
|
onchange=(action "changeTag")
|
|
|
|
tagName="div"
|
|
|
|
data-test-tag-select=true
|
|
|
|
as |tag|
|
|
|
|
}}
|
|
|
|
{{tag.name}}
|
|
|
|
{{/power-select}}
|
2017-02-23 21:47:52 +03:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<section class="content-list">
|
|
|
|
<ol class="posts-list">
|
|
|
|
{{#each model as |post|}}
|
|
|
|
{{gh-posts-list-item
|
|
|
|
post=post
|
|
|
|
active=(eq post selectedPost)
|
|
|
|
onDoubleClick="openEditor"
|
2017-03-02 21:35:09 +03:00
|
|
|
data-test-post-id=post.id}}
|
2017-02-23 21:47:52 +03:00
|
|
|
{{else}}
|
|
|
|
<li class="no-posts-box">
|
|
|
|
<div class="no-posts">
|
|
|
|
{{#if showingAll}}
|
|
|
|
<h3>You Haven't Written Any Posts Yet!</h3>
|
|
|
|
{{#link-to "editor.new"}}<button type="button" class="gh-btn gh-btn-green gh-btn-lg"><span>Write a new Post</span></button>{{/link-to}}
|
|
|
|
{{else}}
|
|
|
|
<h3>No posts that match the current filter</h3>
|
|
|
|
{{#link-to "posts.index" (query-params type=null)}}<button type="button" class="gh-btn gh-btn-lg"><span>Show all posts</span></button>{{/link-to}}
|
|
|
|
{{/if}}
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{{/each}}
|
|
|
|
</ol>
|
|
|
|
|
|
|
|
{{infinity-loader
|
|
|
|
infinityModel=model
|
|
|
|
scrollable=".gh-main"
|
|
|
|
triggerOffset=1000}}
|
|
|
|
</section>
|
|
|
|
|
|
|
|
{{#if showDeletePostModal}}
|
|
|
|
{{gh-fullscreen-modal "delete-post"
|
|
|
|
model=(hash
|
|
|
|
post=selectedPost
|
|
|
|
onSuccess=(route-action 'onPostDeletion')
|
|
|
|
)
|
|
|
|
close=(action "toggleDeletePostModal")
|
|
|
|
modifier="action wide"}}
|
|
|
|
{{/if}}
|
2015-11-18 13:50:48 +03:00
|
|
|
|
2017-01-25 23:05:28 +03:00
|
|
|
{{outlet}}
|
|
|
|
</section>
|