-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
89 lines (71 loc) · 1.63 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
const isXTR2 = ('FormData' in window);
const Request = function() {
this.isAborted = false;
this.xhr = null;
this.cb = null;
};
Request.prototype = {
send: function(req, cb) {
const xhr = new XMLHttpRequest();
this.xhr = xhr;
this.cb = cb;
if (isXTR2) {
xhr.onerror = err => this.handleResult(err);
xhr.onload = () => this.handleResult();
if (req.onprogress) {
xhr.upload.onprogress = req.onprogress;
}
} else {
xhr.onreadystatechange = () => {
if (xhr.readyState == 4) {
xhr.onreadystatechange = null;
this.handleResult();
}
};
}
xhr.open(req.method.toUpperCase(), req.url, true);
for (const k in req.headers) {
xhr.setRequestHeader(k, req.headers[k]);
}
if (req.options) {
for (const o in req.options) {
xhr[o] = req.options[o];
}
}
xhr.send(req.body);
},
abort: function() {
this.isAborted = true;
this.xhr.onreadystatechange = null;
this.xhr.abort();
},
handleResult: function(err) {
const xhr = this.xhr;
if (this.isAborted) {
return;
}
if (err || !xhr.status) {
return this.cb({
status: 'Network error',
error: err
});
}
let body;
const responseText = xhr.responseText;
try {
body = responseText ? JSON.parse(responseText) : true;
} catch (e) {
body = responseText;
}
this.cb({
status: xhr.status,
body: body
});
}
};
Request.send = function(req, cb) {
const instance = new Request();
instance.send(req, cb);
return instance;
};
export default Request;