oxjs/source/Ox.UI/js/Core/Ox.App.js

134 lines
4 KiB
JavaScript
Raw Normal View History

2011-04-23 16:45:50 +00:00
// vim: et:ts=4:sw=4:sts=4:ft=js
2011-04-22 22:03:10 +00:00
2011-05-16 08:24:46 +00:00
/*@
Ox.App <f> Basic application instance that communicates with a JSON API
() -> <f> App object
(options) -> <f> App object
(options, self) -> <f> App object
options <o> Options object
timeout <n> request timeout
2011-05-16 10:49:48 +00:00
type <s> HTTP Request type, i.e. 'GET' or 'POST'
2011-05-16 08:24:46 +00:00
url <s> JSON API url
self <o> Shared private variable
load <!> app loaded
2011-04-22 22:03:10 +00:00
2011-05-16 08:24:46 +00:00
@*/
2011-04-22 22:03:10 +00:00
2011-05-16 08:24:46 +00:00
Ox.App = (function() {
2011-04-22 22:03:10 +00:00
return function(options) {
options = options || {};
2011-04-23 17:28:21 +00:00
var self = {
options: Ox.extend({
timeout: 60000,
type: 'POST',
url: '/api/',
}, options || {}),
time: new Date()
},
2011-04-23 18:02:41 +00:00
that = new Ox.Element({}, self);
2011-04-22 22:03:10 +00:00
2011-04-23 17:28:21 +00:00
that.api = {
api: function(callback) {
Ox.Request.send({
url: self.options.url,
data: {
action: 'api'
},
callback: callback
});
},
cancel: function(id) {
Ox.Request.cancel(id);
}
};
2011-04-22 22:03:10 +00:00
2011-04-23 17:28:21 +00:00
$.ajaxSetup({
timeout: self.options.timeout,
type: self.options.type,
url: self.options.url
});
2011-05-16 08:24:46 +00:00
/*@
api <o> bakcend API
[action] <f> all api requests available on backend
cancel <f> cancel a request
options <f> get or set options
@*/
2011-04-23 17:28:21 +00:00
that.api.api(function(result) {
Ox.forEach(result.data.actions, function(val, key) {
that.api[key] = function(data, callback) {
if (arguments.length == 1 && Ox.isFunction(data)) {
callback = data;
data = {};
}
return Ox.Request.send($.extend({
url: self.options.url,
data: {
action: key,
data: JSON.stringify(data)
},
callback: callback
}, !val.cache ? {age: 0}: {}));
};
2011-04-22 22:03:10 +00:00
});
2011-04-23 17:28:21 +00:00
that.api.init(getUserData(), function(result) {
//Ox.UI.hideLoadingScreen();
2011-04-23 17:28:21 +00:00
that.triggerEvent({
load: result.data
});
});
});
2011-04-22 22:03:10 +00:00
function getUserData() {
return {
document: {
referrer: document.referrer
},
history: {
length: history.length
},
navigator: {
cookieEnabled: navigator.cookieEnabled,
plugins: $.map(navigator.plugins, function(plugin, i) {
return plugin.name;
}),
userAgent: navigator.userAgent
},
screen: screen,
time: (+new Date() - self.time) / 1000,
window: {
innerHeight: window.innerHeight,
innerWidth: window.innerWidth,
outerHeight: window.outerHeight,
outerWidth: window.outerWidth,
screenLeft: window.screenLeft,
screenTop: window.screenTop
}
};
}
2011-05-16 10:49:48 +00:00
/*@
change <f> change key/value
(key, value) -> <u> currently not implemented
@*/
2011-04-22 22:03:10 +00:00
self.change = function(key, value) {
};
2011-05-16 10:49:48 +00:00
/*@
options <f> get/set options, see Ox.getset
() -> <o> get options
(options) -> <o> update/set options
@*/
2011-04-22 22:03:10 +00:00
that.options = function() {
return Ox.getset(self.options, Array.prototype.slice.call(arguments), self.change, that);
};
return that;
};
}());