2020-07-07 18:58:46 +00:00
|
|
|
import EventTarget from 'consul-ui/utils/dom/event-target/rsvp';
|
|
|
|
export default class extends EventTarget {
|
|
|
|
constructor(method, url, headers) {
|
|
|
|
super();
|
2019-01-25 12:30:51 +00:00
|
|
|
this._url = url;
|
|
|
|
this._method = method;
|
|
|
|
this._headers = headers;
|
|
|
|
this._headers = {
|
|
|
|
...headers,
|
|
|
|
'content-type': 'application/json',
|
|
|
|
};
|
|
|
|
if (typeof this._headers.body.index !== 'undefined') {
|
|
|
|
// this should probably be in a response
|
|
|
|
this._headers['content-type'] = 'text/event-stream';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
headers() {
|
|
|
|
return this._headers;
|
|
|
|
}
|
2020-07-07 18:58:46 +00:00
|
|
|
open(xhr) {
|
|
|
|
this._xhr = xhr;
|
|
|
|
this.dispatchEvent({ type: 'open' });
|
|
|
|
}
|
|
|
|
respond(data) {
|
|
|
|
this.dispatchEvent({ type: 'message', data: data });
|
2019-01-25 12:30:51 +00:00
|
|
|
}
|
2020-07-07 18:58:46 +00:00
|
|
|
error(error) {
|
|
|
|
// if the xhr was aborted (status = 0)
|
|
|
|
// and this requests was aborted with a different status
|
|
|
|
// switch the status
|
|
|
|
if (error.statusCode === 0 && typeof this.statusCode !== 'undefined') {
|
|
|
|
error.statusCode = this.statusCode;
|
|
|
|
}
|
|
|
|
this.dispatchEvent({ type: 'error', error: error });
|
|
|
|
}
|
|
|
|
close() {
|
|
|
|
this.dispatchEvent({ type: 'close' });
|
2019-01-25 12:30:51 +00:00
|
|
|
}
|
|
|
|
connection() {
|
|
|
|
return this._xhr;
|
|
|
|
}
|
2020-07-07 18:58:46 +00:00
|
|
|
abort(statusCode = 0) {
|
|
|
|
if (this.headers()['content-type'] === 'text/event-stream') {
|
|
|
|
this.statusCode = statusCode;
|
|
|
|
const xhr = this.connection();
|
|
|
|
// unsent and opened get aborted
|
|
|
|
// headers and loading means wait for it
|
|
|
|
// to finish for the moment
|
|
|
|
if (xhr.readyState) {
|
|
|
|
switch (xhr.readyState) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
xhr.abort();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-01-25 12:30:51 +00:00
|
|
|
}
|