mirror of
https://github.com/moparisthebest/kaiwa
synced 2024-11-05 17:15:04 -05:00
109 lines
3.2 KiB
JavaScript
109 lines
3.2 KiB
JavaScript
/*global $, app, me, client*/
|
|
"use strict";
|
|
|
|
var _ = require('underscore');
|
|
var async = require('async');
|
|
var Backbone = require('backbone');
|
|
var StanzaIO = require('stanza.io');
|
|
|
|
var AppState = require('./models/state');
|
|
var MeModel = require('./models/me');
|
|
var MainView = require('./views/main');
|
|
var Router = require('./router');
|
|
var Storage = require('./storage');
|
|
var xmppEventHandlers = require('./helpers/xmppEventHandlers');
|
|
var notifier = require('./helpers/notifications');
|
|
|
|
|
|
module.exports = {
|
|
launch: function () {
|
|
var self = window.app = this;
|
|
var config = localStorage.config;
|
|
|
|
self.notifier = notifier;
|
|
|
|
if (!config) {
|
|
console.log('missing config');
|
|
window.location = '/login';
|
|
}
|
|
|
|
config = JSON.parse(config);
|
|
|
|
_.extend(this, Backbone.Events);
|
|
|
|
async.series([
|
|
function (cb) {
|
|
app.storage = new Storage();
|
|
app.storage.open(cb);
|
|
},
|
|
function (cb) {
|
|
app.storage.rosterver.get(config.jid, function (err, ver) {
|
|
if (ver) {
|
|
config.rosterVer = ver;
|
|
}
|
|
cb();
|
|
});
|
|
},
|
|
function (cb) {
|
|
app.state = new AppState();
|
|
app.me = window.me = new MeModel();
|
|
|
|
window.onbeforeunload = function () {
|
|
if (app.api.sessionStarted) {
|
|
app.api.disconnect();
|
|
}
|
|
};
|
|
|
|
self.api = window.client = StanzaIO.createClient(config);
|
|
xmppEventHandlers(self.api, self);
|
|
|
|
self.api.once('session:started', function () {
|
|
app.state.hasConnected = true;
|
|
cb();
|
|
});
|
|
self.api.connect();
|
|
},
|
|
function (cb) {
|
|
new Router();
|
|
app.history = Backbone.history;
|
|
|
|
self.view = new MainView({
|
|
model: app.state,
|
|
el: document.body
|
|
});
|
|
self.view.render();
|
|
|
|
// 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 (app.api.sessionStarted) {
|
|
func();
|
|
} else {
|
|
app.api.once('session:started', func);
|
|
}
|
|
},
|
|
navigate: function (page) {
|
|
var url = (page.charAt(0) === '/') ? page.slice(1) : page;
|
|
app.state.markActive();
|
|
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();
|