fetch-rest-connect
Advanced tools
Comparing version
"use strict"; | ||
var __assign = (this && this.__assign) || function () { | ||
__assign = Object.assign || function(t) { | ||
for (var s, i = 1, n = arguments.length; i < n; i++) { | ||
s = arguments[i]; | ||
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) | ||
t[p] = s[p]; | ||
} | ||
return t; | ||
}; | ||
return __assign.apply(this, arguments); | ||
}; | ||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
@@ -22,70 +11,25 @@ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } | ||
}; | ||
var __generator = (this && this.__generator) || function (thisArg, body) { | ||
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g; | ||
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g; | ||
function verb(n) { return function (v) { return step([n, v]); }; } | ||
function step(op) { | ||
if (f) throw new TypeError("Generator is already executing."); | ||
while (_) try { | ||
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t; | ||
if (y = 0, t) op = [op[0] & 2, t.value]; | ||
switch (op[0]) { | ||
case 0: case 1: t = op; break; | ||
case 4: _.label++; return { value: op[1], done: false }; | ||
case 5: _.label++; y = op[1]; op = [0]; continue; | ||
case 7: op = _.ops.pop(); _.trys.pop(); continue; | ||
default: | ||
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; } | ||
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; } | ||
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; } | ||
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; } | ||
if (t[2]) _.ops.pop(); | ||
_.trys.pop(); continue; | ||
} | ||
op = body.call(thisArg, _); | ||
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; } | ||
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true }; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
const getMethod_1 = require("./lib/getMethod"); | ||
const request_1 = require("./lib/request"); | ||
const getQueryFromObject_1 = require("./lib/getQueryFromObject"); | ||
const resolveUriWithParams_1 = require("./lib/resolveUriWithParams"); | ||
const throwError = (error) => __awaiter(void 0, void 0, void 0, function* () { | ||
let responseError; | ||
try { | ||
responseError = yield error.json(); | ||
} | ||
}; | ||
var __spreadArrays = (this && this.__spreadArrays) || function () { | ||
for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length; | ||
for (var r = Array(s), k = 0, i = 0; i < il; i++) | ||
for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++) | ||
r[k] = a[j]; | ||
return r; | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
var getMethod_1 = __importDefault(require("./lib/getMethod")); | ||
var request_1 = __importDefault(require("./lib/request")); | ||
var getQueryFromObject_1 = __importDefault(require("./lib/getQueryFromObject")); | ||
var resolveUriWithParams_1 = __importDefault(require("./lib/resolveUriWithParams")); | ||
var throwError = function (error) { return __awaiter(void 0, void 0, void 0, function () { | ||
var responseError, e_1; | ||
return __generator(this, function (_a) { | ||
switch (_a.label) { | ||
case 0: | ||
_a.trys.push([0, 2, , 3]); | ||
return [4 /*yield*/, error.json()]; | ||
case 1: | ||
responseError = _a.sent(); | ||
return [3 /*break*/, 3]; | ||
case 2: | ||
e_1 = _a.sent(); | ||
responseError = error; | ||
return [3 /*break*/, 3]; | ||
case 3: return [2 /*return*/, { | ||
error: true, | ||
data: responseError, | ||
message: responseError.message, | ||
}]; | ||
} | ||
}); | ||
}); }; | ||
var Fetcher = /** @class */ (function () { | ||
function Fetcher(config) { | ||
catch (e) { | ||
responseError = error; | ||
} | ||
return { | ||
error: true, | ||
data: responseError, | ||
message: responseError.message, | ||
}; | ||
}); | ||
class Fetcher { | ||
constructor(config) { | ||
this.apiUrl = config.apiUrl; | ||
var endpoints = Object.keys(config.endpoints).map(function (key) { return [key, config.endpoints[key]]; }); | ||
const endpoints = Object.keys(config.endpoints).map((key) => [key, config.endpoints[key]]); | ||
this.endpoints = new Map(endpoints); | ||
@@ -95,87 +39,67 @@ this.options = config.options || {}; | ||
} | ||
Fetcher.prototype.getUri = function (action, id, uriParams, additionalQueryParams) { | ||
var url = this.apiUrl; | ||
getUri(action, id, uriParams, additionalQueryParams) { | ||
let url = this.apiUrl; | ||
if (!this.endpoints.has(action)) { | ||
throw new Error("Action \"" + action + "\" not defined"); | ||
throw new Error(`Action "${action}" not defined`); | ||
} | ||
var endpoint = this.endpoints.get(action); | ||
url += endpoint + "/"; | ||
const endpoint = this.endpoints.get(action); | ||
url += `${endpoint}/`; | ||
if (id) { | ||
url += id + "/"; | ||
url += `${id}/`; | ||
} | ||
url = resolveUriWithParams_1.default(url, uriParams); | ||
var filter = this.getFilter && this.getFilter(endpoint); | ||
var params = __spreadArrays((getQueryFromObject_1.default(additionalQueryParams) || []), (getQueryFromObject_1.default(filter) || [])); | ||
const filter = this.getFilter && this.getFilter(endpoint); | ||
const params = [ | ||
...(getQueryFromObject_1.default(additionalQueryParams) || []), | ||
...(getQueryFromObject_1.default(filter) || []), | ||
]; | ||
if (params.length > 0) { | ||
url += "?" + params.join("&"); | ||
url += `?${params.join("&")}`; | ||
} | ||
return url; | ||
}; | ||
Fetcher.prototype.fetch = function (action, id, uriParams, additionalQueryParams, data, method, headers) { | ||
} | ||
fetch(action, id, uriParams, additionalQueryParams, data, method, headers) { | ||
var _a; | ||
return __awaiter(this, void 0, void 0, function () { | ||
var url, headerConfig, options, response, error_1; | ||
return __generator(this, function (_b) { | ||
switch (_b.label) { | ||
case 0: | ||
url = this.getUri(action, id, uriParams, additionalQueryParams); | ||
headerConfig = __assign(__assign({ Accept: "application/json", "Content-Type": "application/json" }, headers), (_a = this.options) === null || _a === void 0 ? void 0 : _a.headers); | ||
options = __assign(__assign({}, this.options), { headers: headerConfig, method: method || getMethod_1.default(method, data, id) }); | ||
if (data) { | ||
options.body = JSON.stringify(data); | ||
} | ||
_b.label = 1; | ||
case 1: | ||
_b.trys.push([1, 3, , 4]); | ||
return [4 /*yield*/, request_1.default(url, options)]; | ||
case 2: | ||
response = _b.sent(); | ||
if (!response.ok) { | ||
return [2 /*return*/, throwError(response)]; | ||
} | ||
return [2 /*return*/, response.json()]; | ||
case 3: | ||
error_1 = _b.sent(); | ||
return [2 /*return*/, throwError(error_1)]; | ||
case 4: return [2 /*return*/]; | ||
return __awaiter(this, void 0, void 0, function* () { | ||
const url = this.getUri(action, id, uriParams, additionalQueryParams); | ||
const headerConfig = Object.assign(Object.assign({ Accept: "application/json", "Content-Type": "application/json" }, headers), (_a = this.options) === null || _a === void 0 ? void 0 : _a.headers); | ||
const options = Object.assign(Object.assign({}, this.options), { headers: headerConfig, method: method || getMethod_1.default(method, data, id) }); | ||
if (data) { | ||
options.body = JSON.stringify(data); | ||
} | ||
try { | ||
const response = yield request_1.default(url, options); | ||
if (!response.ok) { | ||
return throwError(response); | ||
} | ||
}); | ||
return response.json(); | ||
} | ||
catch (error) { | ||
return throwError(error); | ||
} | ||
}); | ||
}; | ||
} | ||
/** | ||
* Aliases | ||
*/ | ||
Fetcher.prototype.getAll = function (endpoint, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
getAll(endpoint, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, undefined, uriParams, additionalQueryParams, undefined, "GET", headers); | ||
}; | ||
Fetcher.prototype.get = function (endpoint, id, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
} | ||
get(endpoint, id, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, id, uriParams, additionalQueryParams, undefined, "GET", headers); | ||
}; | ||
Fetcher.prototype.create = function (endpoint, data, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
} | ||
create(endpoint, data, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, undefined, uriParams, additionalQueryParams, data, "POST", headers); | ||
}; | ||
Fetcher.prototype.update = function (endpoint, id, data, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
} | ||
update(endpoint, id, data, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, id, uriParams, additionalQueryParams, data, "PUT", headers); | ||
}; | ||
Fetcher.prototype.upsert = function (endpoint, id, data, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
} | ||
upsert(endpoint, id, data, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, id, uriParams, additionalQueryParams, data, id ? "PUT" : "POST", headers); | ||
}; | ||
Fetcher.prototype.delete = function (endpoint, id, uriParams, additionalQueryParams, headers) { | ||
if (uriParams === void 0) { uriParams = {}; } | ||
if (additionalQueryParams === void 0) { additionalQueryParams = {}; } | ||
} | ||
delete(endpoint, id, uriParams = {}, additionalQueryParams = {}, headers) { | ||
return this.fetch(endpoint, id, uriParams, additionalQueryParams, undefined, "DELETE", headers); | ||
}; | ||
return Fetcher; | ||
}()); | ||
} | ||
} | ||
exports.default = Fetcher; | ||
//# sourceMappingURL=index.js.map |
{ | ||
"name": "fetch-rest-connect", | ||
"version": "3.2.4", | ||
"version": "3.2.5", | ||
"main": "build/index.js", | ||
@@ -5,0 +5,0 @@ "types": "build/index.d.ts", |
38426
50.78%40
90.48%711
13.4%