Move API outside couchpotato.js

This commit is contained in:
Ruud
2011-10-12 23:04:48 +02:00
parent 20f20389ce
commit b129a39c3d
2 changed files with 29 additions and 31 deletions
+29
View File
@@ -0,0 +1,29 @@
var ApiClass = new Class({
setup: function(options){
var self = this
self.options = options;
},
request: function(type, options){
var self = this;
var r_type = self.options.is_remote ? 'JSONP' : 'JSON';
return new Request[r_type](Object.merge({
'callbackKey': 'json_callback',
'method': 'get',
'url': self.createUrl(type),
}, options)).send()
},
createUrl: function(action, params){
return this.options.url + (action || 'default') + '/' + (params ? '?'+Object.toQueryString(params) : '')
},
getOption: function(name){
return this.options[name]
}
});
window.Api = new ApiClass()
-31
View File
@@ -117,37 +117,6 @@ var CouchPotato = new Class({
});
window.App = new CouchPotato();
var ApiClass = new Class({
setup: function(options){
var self = this
self.options = options;
},
request: function(type, options){
var self = this;
var r_type = self.options.is_remote ? 'JSONP' : 'JSON';
return new Request[r_type](Object.merge({
'callbackKey': 'json_callback',
'method': 'get',
'url': self.createUrl(type),
}, options)).send()
},
createUrl: function(action, params){
return this.options.url + (action || 'default') + '/' + (params ? '?'+Object.toQueryString(params) : '')
},
getOption: function(name){
return this.options[name]
}
});
window.Api = new ApiClass()
var Route = new Class({
defaults: {},