bigbluebutton-Github/labs/bbb-html5-client/public/js/models/chat.coffee
Leonardo Crauss Daronco 21c79844c5 HTML5: remove events emitted on Connection, now emitted on the event bus
And removed duplicated events for 'connected' and 'disconnected'.
2013-05-20 17:41:29 -03:00

31 lines
888 B
CoffeeScript

define [
'underscore',
'backbone',
'globals'
], (_, Backbone, globals) ->
# TODO: this class should actually store ChatModel's, for now it is only trigerring events
ChatModel = Backbone.Model.extend
initialize: ->
start: ->
# TODO: this should be in `initialize`, but can't be right now because
# globals.connection doesn't exist yet
# Bind to the event triggered when the client connects to the server
if globals.connection.isConnected()
@_registerEvents()
else
globals.events.on "connection:connected", =>
@_registerEvents()
_registerEvents: ->
globals.events.on "connection:msg", (name, msg) =>
globals.events.trigger("chat:msg", name, msg)
globals.events.on "connection:all_messages", (messages) =>
globals.events.trigger("chat:all_messages", messages)
ChatModel