mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
71 lines
2.0 KiB
TypeScript
71 lines
2.0 KiB
TypeScript
import {Injectable} from "@angular/core";
|
|
import {Headers, Http, RequestOptions} from "@angular/http";
|
|
import {Message} from "../../../../common/entities/Message";
|
|
import {SlimLoadingBarService} from "ng2-slim-loading-bar";
|
|
import "rxjs/Rx";
|
|
|
|
@Injectable()
|
|
export class NetworkService {
|
|
|
|
_baseUrl = "/api";
|
|
|
|
constructor(protected _http: Http, private slimLoadingBarService: SlimLoadingBarService) {
|
|
}
|
|
|
|
private callJson<T>(method: string, url: string, data: any = {}): Promise<T> {
|
|
let body = JSON.stringify(data);
|
|
let headers = new Headers({'Content-Type': 'application/json'});
|
|
let options = new RequestOptions({headers: headers});
|
|
|
|
this.slimLoadingBarService.visible = true;
|
|
this.slimLoadingBarService.start(() => {
|
|
this.slimLoadingBarService.visible = false;
|
|
});
|
|
|
|
const process = (res: any) => {
|
|
this.slimLoadingBarService.complete();
|
|
return <Message<any>> res.json();
|
|
};
|
|
|
|
const err = (err) => {
|
|
this.slimLoadingBarService.complete();
|
|
return NetworkService.handleError(err);
|
|
};
|
|
|
|
if (method == "get" || method == "delete") {
|
|
return <any>this._http[method](this._baseUrl + url, options)
|
|
.toPromise()
|
|
.then(process)
|
|
.catch(err);
|
|
}
|
|
return this._http[method](this._baseUrl + url, body, options)
|
|
.toPromise()
|
|
.then(process)
|
|
.catch(err);
|
|
}
|
|
|
|
public postJson<T>(url: string, data: any = {}): Promise<T> {
|
|
return this.callJson("post", url, data);
|
|
}
|
|
|
|
public putJson<T>(url: string, data: any = {}): Promise<T> {
|
|
return this.callJson("put", url, data);
|
|
}
|
|
|
|
public getJson<T>(url: string): Promise<T> {
|
|
return this.callJson("get", url);
|
|
}
|
|
|
|
|
|
public deleteJson<T>(url: string): Promise<T> {
|
|
return this.callJson("delete", url);
|
|
}
|
|
|
|
private static handleError(error: any) {
|
|
// TODO: in a real world app do smthing better
|
|
// instead of just logging it to the console
|
|
console.error(error);
|
|
return Promise.reject(error.message || error.json().error || 'Server error');
|
|
}
|
|
}
|