35 lines
1.0 KiB
CoffeeScript
35 lines
1.0 KiB
CoffeeScript
Travis.FlashController = Ember.ArrayController.extend
|
|
needs: ['currentUser']
|
|
currentUserBinding: 'controllers.currentUser'
|
|
|
|
init: ->
|
|
@_super.apply this, arguments
|
|
@set('flashes', Ember.A())
|
|
|
|
content: (->
|
|
@get('unseenBroadcasts').concat(@get('flashes')).filter( (o) -> o ).uniq()
|
|
).property('unseenBroadcasts.length', 'flashes.length')
|
|
|
|
unseenBroadcasts: (->
|
|
@get('broadcasts').filterProperty('isSeen', false)
|
|
).property('broadcasts.isLoaded', 'broadcasts.length')
|
|
|
|
broadcasts: (->
|
|
if @get('currentUser.id') then Travis.Broadcast.find() else Ember.A()
|
|
).property('currentUser.id')
|
|
|
|
loadFlashes: (msgs) ->
|
|
for msg in msgs
|
|
type = Ember.keys(msg)[0]
|
|
msg = { type: type, message: msg[type] }
|
|
@get('flashes').pushObject(msg)
|
|
Ember.run.later(this, (-> @get('flashes').removeObject(msg)), 15000)
|
|
|
|
close: (msg) ->
|
|
if msg instanceof Travis.Broadcast
|
|
msg.setSeen()
|
|
@notifyPropertyChange('unseenBroadcasts')
|
|
else
|
|
@get('flashes').removeObject(msg)
|
|
|