forked from mirrors/gecko-dev
--HG-- rename : static/shared/README.md => browser/components/loop/content/shared/README.md rename : static/shared/css/common.css => browser/components/loop/content/shared/css/common.css rename : static/shared/css/conversation.css => browser/components/loop/content/shared/css/conversation.css rename : static/shared/css/panel.css => browser/components/loop/content/shared/css/panel.css rename : static/shared/css/readme.html => browser/components/loop/content/shared/css/readme.html rename : static/shared/img/icon_32.png => browser/components/loop/content/shared/img/icon_32.png rename : static/shared/img/icon_64.png => browser/components/loop/content/shared/img/icon_64.png rename : static/shared/js/models.js => browser/components/loop/content/shared/js/models.js rename : static/shared/js/views.js => browser/components/loop/content/shared/js/views.js rename : static/shared/libs/backbone-1.1.2.js => browser/components/loop/content/shared/libs/backbone-1.1.2.js rename : static/shared/libs/jquery-2.1.0.js => browser/components/loop/content/shared/libs/jquery-2.1.0.js rename : static/shared/libs/lodash-2.4.1.js => browser/components/loop/content/shared/libs/lodash-2.4.1.js rename : static/shared/libs/sdk.js => browser/components/loop/content/shared/libs/sdk.js rename : static/shared/libs/webl10n-20130617.js => browser/components/loop/content/shared/libs/webl10n-20130617.js rename : static/css/webapp.css => browser/components/loop/standalone/content/css/webapp.css rename : static/index.html => browser/components/loop/standalone/content/index.html rename : static/js/webapp.js => browser/components/loop/standalone/content/js/webapp.js rename : static/l10n/data.ini => browser/components/loop/standalone/content/l10n/data.ini rename : test/webapp_test.js => browser/components/loop/test/standalone/webapp_test.js extra : transplant_source : %DA%D9%3A%E9%C6%E0d%13%84%C1%BEps%C8b%F09o%D7m
166 lines
4.2 KiB
JavaScript
166 lines
4.2 KiB
JavaScript
/* 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.webapp = (function($, TB) {
|
|
"use strict";
|
|
|
|
/**
|
|
* Base Loop server URL.
|
|
*
|
|
* XXX: should be configurable, but how?
|
|
*
|
|
* @type {String}
|
|
*/
|
|
var sharedModels = loop.shared.models,
|
|
sharedViews = loop.shared.views,
|
|
// XXX this one should be configurable
|
|
// see https://bugzilla.mozilla.org/show_bug.cgi?id=987086
|
|
baseServerUrl = "http://localhost:5000";
|
|
|
|
/**
|
|
* App router.
|
|
* @type {loop.webapp.WebappRouter}
|
|
*/
|
|
var router;
|
|
|
|
/**
|
|
* Current conversation model instance.
|
|
* @type {loop.shared.models.ConversationModel}
|
|
*/
|
|
var conversation;
|
|
|
|
/**
|
|
* Homepage view.
|
|
*/
|
|
var HomeView = sharedViews.BaseView.extend({
|
|
el: "#home"
|
|
});
|
|
|
|
/**
|
|
* Conversation launcher view. A ConversationModel is associated and attached
|
|
* as a `model` property.
|
|
*/
|
|
var ConversationFormView = sharedViews.BaseView.extend({
|
|
el: "#conversation-form",
|
|
|
|
events: {
|
|
"submit": "initiate"
|
|
},
|
|
|
|
initialize: function() {
|
|
this.listenTo(this.model, "session:error", function(error) {
|
|
// XXX: display a proper error notification to end user, probably
|
|
// reusing the BB notification system from the Loop desktop client.
|
|
alert(error);
|
|
});
|
|
},
|
|
|
|
initiate: function(event) {
|
|
event.preventDefault();
|
|
this.model.initiate(baseServerUrl);
|
|
}
|
|
});
|
|
|
|
/**
|
|
* Webapp Router. Allows defining a main active view and easily toggling it
|
|
* when the active route changes.
|
|
*
|
|
* @link http://mikeygee.com/blog/backbone.html
|
|
*/
|
|
var WebappRouter = loop.shared.router.BaseRouter.extend({
|
|
_conversation: undefined,
|
|
|
|
routes: {
|
|
"": "home",
|
|
"call/ongoing": "conversation",
|
|
"call/:token": "initiate"
|
|
},
|
|
|
|
initialize: 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);
|
|
|
|
// Load default view
|
|
this.loadView(new HomeView());
|
|
},
|
|
|
|
/**
|
|
* Navigates to conversation when the call session is ready.
|
|
*/
|
|
_onSessionReady: function() {
|
|
this.navigate("call/ongoing", {trigger: true});
|
|
},
|
|
|
|
/**
|
|
* Navigates back to initiate when the call session has ended.
|
|
*/
|
|
_onSessionEnded: function() {
|
|
this.navigate("call/" + this._conversation.get("token"), {trigger: true});
|
|
},
|
|
|
|
/**
|
|
* Default entry point.
|
|
*/
|
|
home: function() {
|
|
this.loadView(new HomeView());
|
|
},
|
|
|
|
/**
|
|
* Loads conversation launcher view, setting the received conversation token
|
|
* to the current conversation model.
|
|
*
|
|
* @param {String} loopToken Loop conversation token.
|
|
*/
|
|
initiate: function(loopToken) {
|
|
this._conversation.set("loopToken", loopToken);
|
|
this.loadView(new ConversationFormView({model: this._conversation}));
|
|
},
|
|
|
|
/**
|
|
* Loads conversation establishment view.
|
|
*
|
|
*/
|
|
conversation: function() {
|
|
if (!this._conversation.isSessionReady()) {
|
|
var loopToken = this._conversation.get("loopToken");
|
|
if (loopToken) {
|
|
return this.navigate("call/" + loopToken, {trigger: true});
|
|
} else {
|
|
// XXX: notify user that a call token is missing
|
|
return this.navigate("home", {trigger: true});
|
|
}
|
|
}
|
|
this.loadView(
|
|
new sharedViews.ConversationView({
|
|
sdk: TB,
|
|
model: this._conversation
|
|
}));
|
|
}
|
|
});
|
|
|
|
/**
|
|
* App initialization.
|
|
*/
|
|
function init() {
|
|
conversation = new sharedModels.ConversationModel();
|
|
router = new WebappRouter({conversation: conversation});
|
|
Backbone.history.start();
|
|
}
|
|
|
|
return {
|
|
ConversationFormView: ConversationFormView,
|
|
HomeView: HomeView,
|
|
init: init,
|
|
WebappRouter: WebappRouter
|
|
};
|
|
})(jQuery, window.TB);
|