Cleanup BuildsView

This commit is contained in:
Piotr Sarnacki 2015-01-15 17:05:59 +01:00
parent 345cb6e29e
commit c205529295
4 changed files with 20 additions and 21 deletions

View File

@ -61,7 +61,7 @@
</table>
{{#if displayShowMoreButton}}
<p>
{{view view.ShowMoreButton}}
{{view 'show-more-button'}}
{{#if isLoading}}
<span class="loading"></span>
{{/if}}

View File

@ -39,3 +39,4 @@ require 'views/top'
require 'views/status_images'
require 'views/status_image_input'
require 'views/dashboard'
require 'views/show-more-button'

View File

@ -1,24 +1,4 @@
Travis.reopen
BuildsView: Travis.View.extend
buildsBinding: 'controller.builds'
ShowMoreButton: Em.View.extend
tagName: 'button'
classNameBindings: ['isLoading', 'showMore']
showMore: true
attributeBindings: ['disabled']
isLoadingBinding: 'controller.isLoading'
template: Em.Handlebars.compile('{{view.label}}')
disabledBinding: 'isLoading'
label: (->
if @get('isLoading') then 'Loading' else 'Show more'
).property('isLoading')
click: ->
@get('controller').showMore()
BuildView: Travis.View.extend
classNameBindings: ['color', 'loading']
buildBinding: 'controller.build'

View File

@ -0,0 +1,18 @@
View = Ember.View.extend
tagName: 'button'
classNameBindings: ['isLoading', 'showMore']
showMore: true
attributeBindings: ['disabled']
isLoadingBinding: 'controller.isLoading'
template: Ember.Handlebars.compile('{{view.label}}')
disabledBinding: 'isLoading'
label: (->
if @get('isLoading') then 'Loading' else 'Show more'
).property('isLoading')
click: ->
@get('controller').showMore()
Travis.ShowMoreButtonView = View