mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-22 17:22:22 -05:00
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
/*global $, app, me, client, XMPP*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var async = require('async');
|
|
var Backbone = require('backbone');
|
|
var MeModel = require('./models/me');
|
|
var MainView = require('./views/main');
|
|
var Router = require('./router');
|
|
var Storage = require('./storage');
|
|
var xmppEventHandlers = require('./helpers/xmppEventHandlers');
|
|
|
|
|
|
module.exports = {
|
|
launch: function () {
|
|
var self = this;
|
|
|
|
_.extend(this, Backbone.Events);
|
|
|
|
var app = window.app = this;
|
|
|
|
$(function () {
|
|
async.series([
|
|
function (cb) {
|
|
app.storage = new Storage();
|
|
app.storage.open(cb);
|
|
},
|
|
function (cb) {
|
|
var me = window.me = new MeModel();
|
|
|
|
new Router();
|
|
app.history = Backbone.history;
|
|
|
|
if (!localStorage.config) {
|
|
return app.navigate('signin');
|
|
}
|
|
|
|
app.view = new MainView({
|
|
model: me,
|
|
el: document.body
|
|
});
|
|
app.view.render();
|
|
|
|
var rosterVer = localStorage.rosterVersion;
|
|
var config = JSON.parse(localStorage.config);
|
|
|
|
config.rosterVer = rosterVer;
|
|
|
|
var client = window.client = app.client = XMPP.createClient(config);
|
|
xmppEventHandlers(client, app);
|
|
client.connect();
|
|
|
|
// we have what we need, we can now start our router and show the appropriate page
|
|
app.history.start({pushState: true, root: '/'});
|
|
|
|
cb();
|
|
}
|
|
]);
|
|
});
|
|
},
|
|
whenConnected: function (func) {
|
|
if (client.sessionStarted) {
|
|
func();
|
|
} else {
|
|
client.once('session:started', func);
|
|
}
|
|
},
|
|
navigate: function (page) {
|
|
var url = (page.charAt(0) === '/') ? page.slice(1) : page;
|
|
app.history.navigate(url, true);
|
|
},
|
|
renderPage: function (view, animation) {
|
|
var container = $('#pages');
|
|
|
|
if (app.currentPage) {
|
|
app.currentPage.hide(animation);
|
|
}
|
|
// we call render, but if animation is none, we want to tell the view
|
|
// to start with the active class already before appending to DOM.
|
|
container.append(view.render(animation === 'none').el);
|
|
view.show(animation);
|
|
}
|
|
};
|
|
|
|
|
|
module.exports.launch();
|