/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this file, * You can obtain one at http://mozilla.org/MPL/2.0/. */ /* global loop:true */ var loop = loop || {}; loop.shared = loop.shared || {}; loop.shared.router = (function(l10n) { "use strict"; /** * Base Router. Allows defining a main active view and ease toggling it when * the active route changes. * * @link http://mikeygee.com/blog/backbone.html */ var BaseRouter = Backbone.Router.extend({ /** * Active view. * @type {loop.shared.views.BaseView} */ _activeView: undefined, /** * Notifications dispatcher. * @type {loop.shared.views.NotificationListView} */ _notifier: undefined, /** * Constructor. * * Required options: * - {loop.shared.views.NotificationListView} notifier Notifier view. * * @param {Object} options Options object. */ constructor: function(options) { options = options || {}; if (!options.notifier) { throw new Error("missing required notifier"); } this._notifier = options.notifier; Backbone.Router.apply(this, arguments); }, /** * Loads and render current active view. * * @param {loop.shared.views.BaseView} view View. */ loadView : function(view) { if (this._activeView) { this._activeView.remove(); } this._activeView = view.render().show(); this.updateView(this._activeView.$el); }, /** * Updates main div element with provided contents. * * @param {jQuery} $el Element. */ updateView: function($el) { $("#main").html($el); } }); /** * Base conversation router, implementing common behaviors when handling * a conversation. */ var BaseConversationRouter = BaseRouter.extend({ /** * Current conversation. * @type {loop.shared.models.ConversationModel} */ _conversation: undefined, /** * Constructor. Defining it as `constructor` allows implementing an * `initialize` method in child classes without needing calling this parent * one. See http://backbonejs.org/#Model-constructor (same for Router) * * Required options: * - {loop.shared.model.ConversationModel} model Conversation model. * * @param {Object} options Options object. */ constructor: function(options) { options = options || {}; if (!options.conversation) { throw new Error("missing required conversation"); } this._conversation = options.conversation; this.listenTo(this._conversation, "session:ready", this._onSessionReady); this.listenTo(this._conversation, "session:ended", this._onSessionEnded); this.listenTo(this._conversation, "session:peer-hungup", this._onPeerHungup); this.listenTo(this._conversation, "session:network-disconnected", this._onNetworkDisconnected); BaseRouter.apply(this, arguments); }, /** * Starts the call. This method should be overriden. */ startCall: function() {}, /** * Ends the call. This method should be overriden. */ endCall: function() {}, /** * Session is ready. */ _onSessionReady: function() { this.startCall(); }, /** * Session has ended. Notifies the user and ends the call. */ _onSessionEnded: function() { this._notifier.warnL10n("call_has_ended"); this.endCall(); }, /** * Peer hung up. Notifies the user and ends the call. * * Event properties: * - {String} connectionId: OT session id * * @param {Object} event */ _onPeerHungup: function() { this._notifier.warnL10n("peer_ended_conversation"); this.endCall(); }, /** * Network disconnected. Notifies the user and ends the call. */ _onNetworkDisconnected: function() { this._notifier.warnL10n("network_disconnected"); this.endCall(); } }); return { BaseRouter: BaseRouter, BaseConversationRouter: BaseConversationRouter }; })(document.webL10n || document.mozL10n);