angular2-resource-and-ajax-interceptor
Version:
angular2-resource-and-ajax-interceptor is angular2 http service helper.
78 lines • 3.78 kB
JavaScript
System.register(["@angular/core", "../httpresource", "@angular/http"], function (exports_1, context_1) {
"use strict";
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
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);
};
var __param = (this && this.__param) || function (paramIndex, decorator) {
return function (target, key) { decorator(target, key, paramIndex); }
};
var core_1, httpresource_1, http_1, httpresource_2, SampleRestService;
var __moduleName = context_1 && context_1.id;
return {
setters: [
function (core_1_1) {
core_1 = core_1_1;
},
function (httpresource_1_1) {
httpresource_1 = httpresource_1_1;
httpresource_2 = httpresource_1_1;
},
function (http_1_1) {
http_1 = http_1_1;
}
],
execute: function () {
SampleRestService = /** @class */ (function (_super) {
__extends(SampleRestService, _super);
// resource:Resource
function SampleRestService(http, ajaxInterceptor) {
var _this = _super.call(this, http, ajaxInterceptor) || this;
_this.config('/user/:id', { id: '@id' }, {
getList: {
method: 'get'
},
getExample: {
method: 'get',
url: '/app/example.json'
},
saveMyData: {
params: { id: '@id' },
url: 'customer/:id',
method: 'post',
header: { 'contentType': 'application/json', 'custom-key': 'sample value' }
}
});
return _this;
}
SampleRestService = __decorate([
core_1.Injectable(),
__param(0, core_1.Inject(http_1.Http)),
__metadata("design:paramtypes", [http_1.Http, httpresource_2.AjaxInterceptor])
], SampleRestService);
return SampleRestService;
}(httpresource_1.Resource));
exports_1("SampleRestService", SampleRestService);
;
}
};
});
//# sourceMappingURL=sample-restservice.js.map