2015-01-30 01:10:49 +00:00
|
|
|
/**
|
2015-03-23 22:07:33 +00:00
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
2015-01-30 01:10:49 +00:00
|
|
|
*
|
|
|
|
* @providesModule XMLHttpRequest
|
|
|
|
* @flow
|
|
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
|
2015-06-09 19:25:24 +00:00
|
|
|
var FormData = require('FormData');
|
2015-11-17 14:28:44 +00:00
|
|
|
var RCTNetworking = require('RCTNetworking');
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-03-25 02:34:12 +00:00
|
|
|
var XMLHttpRequestBase = require('XMLHttpRequestBase');
|
2015-01-30 01:10:49 +00:00
|
|
|
|
2015-03-25 02:34:12 +00:00
|
|
|
class XMLHttpRequest extends XMLHttpRequestBase {
|
2015-06-05 22:23:30 +00:00
|
|
|
constructor() {
|
|
|
|
super();
|
2015-11-17 14:28:44 +00:00
|
|
|
// iOS supports upload
|
2015-07-21 05:44:51 +00:00
|
|
|
this.upload = {};
|
2015-06-05 22:23:30 +00:00
|
|
|
}
|
|
|
|
|
2016-01-18 15:47:04 +00:00
|
|
|
sendImpl(method: ?string, url: ?string, headers: Object, data: any, timeout: number): void {
|
2015-06-09 19:25:24 +00:00
|
|
|
if (typeof data === 'string') {
|
2015-08-01 01:54:25 +00:00
|
|
|
data = {string: data};
|
2015-08-14 12:13:40 +00:00
|
|
|
} else if (data instanceof FormData) {
|
2015-08-01 01:54:25 +00:00
|
|
|
data = {formData: data.getParts()};
|
2015-06-09 19:25:24 +00:00
|
|
|
}
|
2015-06-18 16:41:38 +00:00
|
|
|
RCTNetworking.sendRequest(
|
2015-04-10 08:33:10 +00:00
|
|
|
{
|
2015-06-09 19:25:24 +00:00
|
|
|
method,
|
|
|
|
url,
|
2015-08-01 01:54:25 +00:00
|
|
|
data,
|
2015-06-09 19:25:24 +00:00
|
|
|
headers,
|
2015-06-09 19:25:33 +00:00
|
|
|
incrementalUpdates: this.onreadystatechange ? true : false,
|
2016-01-18 15:47:04 +00:00
|
|
|
timeout
|
2015-04-10 08:33:10 +00:00
|
|
|
},
|
2015-11-17 14:28:44 +00:00
|
|
|
this.didCreateRequest.bind(this)
|
2015-01-30 01:10:49 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = XMLHttpRequest;
|