-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend support for Titanium SDK #529
Comments
+1 |
1 similar comment
+1 |
+1 (excellent speech) |
What type of changes are needed? |
First of all something that was not explicitly stated, but it’s really important. By now Titanium SDK has no compatibility with Node.js builtins, and as a de-facto philosophy is more oriented towards reducing the learning gap for web devs rather than node devs. For that reason we’re extending and using the browser version of We have three different kind of changes that can be made: Changes to simplify
|
+1 |
So, what’s your opinion on this, @defunctzombie? |
Sorry I am really busy at work. Have not had a chance to review yet but Apologies and I do appreciate the detailed explanation! On Thursday, January 22, 2015, Pier Paolo Ramon [email protected]
|
|
I think making you life for ti-superagent easier should be the first goal (we can do that with relative ease). I am also onboard with most of the items in |
Great. I’ll try to transform every task in a relative PR. |
There is no need to add titanium support to superagent. All you have to do is polyfill Xhr in your TI project. Especially since the Titanium Xhr lib only deviates a little. Ti-xhrfix.jsvar Emitter = require('emitter');
// Global Context
var globalCTX = Function('return this')();
// Patch global scope
globalCTX.XMLHttpRequest = XMLHttpRequest;
// sub for browser global location property.
globalCTX.location = {};
// expose XMLHttpRequest
module.exports = XMLHttpRequest;
/**
* XMLHttpRequest
*/
function XMLHttpRequest() {
var self = this;
// titanium xhr client
this._proxy = Ti.Network.createHTTPClient();
this.upload = {
onprogress: function(){}
}
this._proxy.onsendstream = function(e){
self.upload.onprogress({loaded:e.progress, total:1});
}
}
XMLHttpRequest.prototype.__proto__ = Emitter.prototype;
XMLHttpRequest.prototype.abort = function() {
this._proxy.abort();
};
XMLHttpRequest.prototype.open = function(method, url, async) {
this._proxy.open(method, url, async);
};
XMLHttpRequest.prototype.getResponseHeader = function(name) {
return this._proxy.getResponseHeader(name);
};
XMLHttpRequest.prototype.send = function(data) {
this._proxy.send(data);
};
XMLHttpRequest.prototype.setRequestHeader = function(key, val) {
this._proxy.setRequestHeader(key, val);
};
Object.defineProperties(XMLHttpRequest.prototype, {
'onreadystatechange' : {
set: function (val) {
return this._proxy.onreadystatechange = val
}
},
'readyState': {
get: function () {
return this._proxy.readyState;
}
},
'responseText': {
get: function () {
return this._proxy.responseText;
}
},
'responseXML': {
get: function () {
return this._proxy.responseXML;
}
},
'status': {
get: function () {
return this._proxy.status;
}
}
});
XMLHttpRequest.prototype.getAllResponseHeaders = function() {
return '';
}; Then you can just wrap it all ti-superagent.jsrequire('./TI-xhrfix');
module.exports = require('superagent'); |
This is in fact a great solution, but you’re not dealing with timeouts and Android |
BTW, where does that code comes from? Could add a small CC license to it or refer to the original author? I’d like to use it in the future. |
I wrote it over a year ago. Had it on github but i no longer use titanium so it got dropped on accident. It was MIT though so go nuts , :-) I have a better version with timeouts and multipart I just have to dig it up. I will put it back up on github when I find it. |
At @smclab we extended the support of
superagent
to Titanium SDK on a project called ti-superagent.Are the maintainers of
superagent
willing to accept some contribution in order to eitherIn case we chose to extend
superagent
’s itself, are you willing to accept to have another test environment? Those tests would run as native iOS, Android and (later this year) Windows applications.Don’t hesitate in asking everything about either Titanium SDK, the changes we made and how we plan to have native tests running.
Some background about Titanium SDK
Titanium SDK is a platform to build cross-platform mobile apps using JavaScript and native views and components. No WebViews are harmed in a Titanium SDK app.
That means that they use just JSC on iOS and V8 on Android, and many things had to be re-implemented. Among those we can highlight
Titanium.Network.HTTPClient
which is an API almost, but not quite, entirely unlikeXMLHttpRequest
.To make
superagent
work we needed toTo solve the packaging issue we built titaniumifier.
The text was updated successfully, but these errors were encountered: