Fix broadcasts

For some reason using property.[] stopped working in flash controller,
so I'm using length for now, which should work properly in case of
broadcasts as they're loaded only once anyway.
This commit is contained in:
Piotr Sarnacki 2015-09-03 11:22:07 +02:00
parent e64ceab8c4
commit df4b715ce9
2 changed files with 5 additions and 5 deletions

View File

@ -2,7 +2,7 @@
`import LimitedArray from 'travis/utils/limited-array'`
`import Broadcast from 'travis/models/broadcast'`
Controller = Ember.ArrayController.extend
Controller = Ember.Controller.extend
needs: ['currentUser']
currentUserBinding: 'controllers.currentUser.model'
@ -10,19 +10,19 @@ Controller = Ember.ArrayController.extend
@_super.apply this, arguments
@set('flashes', LimitedArray.create(limit: 1, content: []))
model: (->
messages: (->
broadcasts = @get('unseenBroadcasts')
flashes = @get('flashes')
model = []
model.pushObjects(broadcasts) if broadcasts
model.pushObjects(flashes.toArray().reverse()) if flashes
model.uniq()
).property('unseenBroadcasts.[]', 'flashes.[]')
).property('unseenBroadcasts.[]', 'flashes.[]', 'unseenBroadcasts.length', 'flashes.length')
unseenBroadcasts: (->
@get('broadcasts').filter (broadcast) ->
!broadcast.get('isSeen')
).property('broadcasts.[]')
).property('broadcasts.[]', 'broadcasts.length')
broadcasts: (->
broadcasts = Ember.ArrayProxy.create(content: [])

View File

@ -1,4 +1,4 @@
{{#each flash in controller}}
{{#each flash in messages}}
{{#view "flash-item" flashBinding="flash"}}
<p>{{{flash.message}}}</p>
<a class="close" {{action "close" target=view}}></a>