user.service.js
2.85 KB
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
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
//import { HttpClient, HttpParams, HttpRequest} from "@angular/common/http";
var http_1 = require("@angular/http");
require("rxjs/add/operator/map");
require("rxjs/add/operator/catch");
require("rxjs/add/observable/throw");
require("rxjs/add/operator/do");
var Observable_1 = require("rxjs/Observable");
var global_1 = require("../../Shared/global");
var UserService = /** @class */ (function () {
function UserService(http, commonService) {
this.http = http;
this.commonService = commonService;
}
UserService.prototype.GetUserById = function () {
var _this = this;
return this.http.get(this.commonService.resourceBaseUrl + "/api/GetUserProfile/1")
.map(this.extractData)
.catch(function (res) { return _this.handleError(res); });
;
};
UserService.prototype.UpdateUserProfileById = function (obj) {
var _this = this;
//let options = new RequestOptions({ headers: this.headers });
return this.http.post(this.commonService.resourceBaseUrl + "/api/UpdateProfile", obj)
.map(this.extractData)
.catch(function (res) { return _this.handleError(res); });
};
UserService.prototype.extractData = function (res) {
//debugger;
var body = res.json();
return body;
};
UserService.prototype.handleError = function (error) {
// In a real world app, we might use a remote logging infrastructure
// We'd also dig deeper into the error to get a better message
var errMsg = (error.message) ? error.message :
error.status ? error.status + " - " + error.statusText : 'Server error';
console.error(errMsg); // log to console instead
return Observable_1.Observable.throw(errMsg);
};
UserService = __decorate([
core_1.Injectable(),
__metadata("design:paramtypes", [http_1.Http, global_1.GlobalService])
], UserService);
return UserService;
}());
exports.UserService = UserService;
//# sourceMappingURL=user.service.js.map