Fix show more button by changing it into component

This commit is contained in:
Piotr Sarnacki 2015-08-06 12:03:51 +02:00
parent 7e59794571
commit 8c35e42b2b
5 changed files with 10 additions and 8 deletions

View File

@ -1,21 +1,19 @@
`import Ember from 'ember'`
View = Ember.View.extend
ShowMoreButtonComponent = Ember.Component.extend
tagName: 'button'
classNames: ['button button--grey button--showmore']
classNameBindings: ['isLoading', 'showMore']
showMore: true
attributeBindings: ['disabled']
isLoadingBinding: 'controller.isLoading'
templateName: 'show-more-button'
disabledBinding: 'isLoading'
label: (->
buttonLabel: (->
if @get('isLoading') then 'Loading' else 'Show more'
).property('isLoading')
click: ->
@get('controller').showMore()
this.attrs.showMore()
`export default View`
`export default ShowMoreButtonComponent`

View File

@ -28,4 +28,8 @@ Controller = Ember.ArrayController.extend
@store.find('build', options)
actions:
showMoreBuilds: ->
@showMore()
`export default Controller`

View File

@ -7,7 +7,7 @@
{{/each}}
{{#if displayShowMoreButton}}
<p>
{{view 'show-more-button'}}
{{show-more-button isLoading=isLoading showMore=(action 'showMoreBuilds')}}
{{#if isLoading}}
{{loading-indicator}}
{{/if}}

View File

@ -0,0 +1 @@
<span class="icon icon--eye"></span>{{buttonLabel}}

View File

@ -1 +0,0 @@
<span class="icon icon--eye"></span>{{view.label}}