2015-05-18 11:57:20 -07:00
|
|
|
import {Injectable} from 'angular2/di';
|
2015-01-30 09:43:21 +01:00
|
|
|
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
|
|
|
|
import {XHR} from './xhr';
|
|
|
|
|
2015-03-16 14:44:14 -07:00
|
|
|
@Injectable()
|
2015-01-30 09:43:21 +01:00
|
|
|
export class XHRImpl extends XHR {
|
|
|
|
get(url: string): Promise<string> {
|
|
|
|
var completer = PromiseWrapper.completer();
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.open('GET', url, true);
|
|
|
|
xhr.responseType = 'text';
|
|
|
|
|
|
|
|
xhr.onload = function() {
|
|
|
|
var status = xhr.status;
|
|
|
|
if (200 <= status && status <= 300) {
|
2015-02-25 12:46:50 +01:00
|
|
|
completer.resolve(xhr.responseText);
|
2015-01-30 09:43:21 +01:00
|
|
|
} else {
|
|
|
|
completer.reject(`Failed to load ${url}`);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-18 11:57:20 -07:00
|
|
|
xhr.onerror = function() { completer.reject(`Failed to load ${url}`); };
|
2015-01-30 09:43:21 +01:00
|
|
|
|
|
|
|
xhr.send();
|
|
|
|
return completer.promise;
|
|
|
|
}
|
|
|
|
}
|