wfm-mobile-core
Version:
WFM Mobile Core
264 lines (263 loc) • 13.6 kB
JavaScript
"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 __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
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 });
exports.NotificationApi = void 0;
var mobx_1 = require("mobx");
var constants_1 = require("../constants");
var EFetchingStatus_1 = require("../enums/EFetchingStatus");
var http_1 = require("../http");
var createDate_1 = require("../utils/createDate");
var linkParser_1 = require("../utils/linkParser");
var NotificationApi = /** @class */ (function () {
function NotificationApi() {
}
NotificationApi.setFetchingStatus = function (newStatus) {
NotificationApi.fetchingStatusNotification = newStatus;
};
NotificationApi.rejected = function (error) {
this.error = error;
NotificationApi.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.ERROR);
return Promise.reject(error);
};
NotificationApi.resolved = function (response) {
NotificationApi.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.DONE);
return Promise.resolve(response);
};
NotificationApi.getProfileInfo = function () {
return __awaiter(this, void 0, void 0, function () {
var response, e_1;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
_a.label = 1;
case 1:
_a.trys.push([1, 4, , 5]);
return [4 /*yield*/, http_1.httpClient.get(http_1.httpClient.links[constants_1.ResourceNames.PROFILE_INFO].href, constants_1.headersHAL)];
case 2:
response = (_a.sent());
NotificationApi.profileInfo = response;
NotificationApi.profileInfoLinks = response === null || response === void 0 ? void 0 : response._links;
return [4 /*yield*/, this.getNotifications()];
case 3:
_a.sent();
return [2 /*return*/, this.resolved(response)];
case 4:
e_1 = _a.sent();
return [2 /*return*/, this.rejected(e_1)];
case 5: return [2 /*return*/];
}
});
});
};
NotificationApi.applyAction = function (link) {
return __awaiter(this, void 0, void 0, function () {
var response, e_2;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, http_1.httpClient.get(link, constants_1.headersHAL)];
case 2:
response = (_a.sent());
return [2 /*return*/, this.resolved(response)];
case 3:
e_2 = _a.sent();
return [2 /*return*/, this.rejected(e_2)];
case 4: return [2 /*return*/];
}
});
});
};
NotificationApi.getNotifications = function (deleted, received, allNotification, size) {
if (deleted === void 0) { deleted = false; }
if (received === void 0) { received = false; }
if (allNotification === void 0) { allNotification = true; }
if (size === void 0) { size = 1e4; }
return __awaiter(this, void 0, void 0, function () {
var params, response, embedded, e_3;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
params = "?deleted=" + deleted + "&size=" + size;
if (!allNotification)
params += "&received=" + received;
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, http_1.httpClient.get("" + linkParser_1.parseLinksTemplate(NotificationApi.profileInfoLinks.notifications.href) + params, constants_1.headersHAL)];
case 2:
response = (_a.sent());
embedded = response === null || response === void 0 ? void 0 : response._embedded;
NotificationApi.notifications = embedded ? this.sortNotification(embedded === null || embedded === void 0 ? void 0 : embedded.notifications) : [];
return [2 /*return*/, this.resolved(response)];
case 3:
e_3 = _a.sent();
NotificationApi.notifications = [];
return [2 /*return*/, this.rejected(e_3)];
case 4: return [2 /*return*/];
}
});
});
};
NotificationApi.notificationReceived = function (link) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
return [4 /*yield*/, http_1.httpClient.put(link, constants_1.headersHAL, { received: true })];
case 1: return [2 /*return*/, _a.sent()];
}
});
});
};
NotificationApi.deleteNotification = function (link) {
return __awaiter(this, void 0, void 0, function () {
var response, e_4;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, http_1.httpClient.delete(link, constants_1.headersHAL)];
case 2:
response = _a.sent();
this.getProfileInfo();
return [2 /*return*/, this.resolved(response)];
case 3:
e_4 = _a.sent();
return [2 /*return*/, this.rejected(e_4)];
case 4: return [2 /*return*/];
}
});
});
};
NotificationApi.responseToExchange = function (link) {
return __awaiter(this, void 0, void 0, function () {
var response, e_5;
return __generator(this, function (_a) {
switch (_a.label) {
case 0:
this.setFetchingStatus(EFetchingStatus_1.EFetchingStatus.IN_PROGRESS);
_a.label = 1;
case 1:
_a.trys.push([1, 3, , 4]);
return [4 /*yield*/, http_1.httpClient.get(http_1.httpClient.entryPoint + "/" + link, constants_1.headersHAL, false)];
case 2:
response = (_a.sent());
return [2 /*return*/, this.resolved(response)];
case 3:
e_5 = _a.sent();
return [2 /*return*/, this.rejected(e_5)];
case 4: return [2 /*return*/];
}
});
});
};
NotificationApi.sortNotification = function (notifications) {
var initialDate = createDate_1.default({ months: -36 });
return notifications.reduce(function (acc, item) {
if (new Date(item.creationTime).getTime() > initialDate.getTime())
acc = acc.concat(item);
return acc;
}, []);
};
NotificationApi.updateNotificationKey = function (token, remove) {
var _a, _b, _c;
if (remove === void 0) { remove = false; }
return __awaiter(this, void 0, void 0, function () {
var url, response, data, _1;
return __generator(this, function (_d) {
switch (_d.label) {
case 0:
_d.trys.push([0, 4, , 5]);
url = (_b = (_a = http_1.httpClient.links) === null || _a === void 0 ? void 0 : _a[constants_1.ResourceNames.NOTIFICATION_KEY]) === null || _b === void 0 ? void 0 : _b.href;
return [4 /*yield*/, http_1.httpClient[remove ? 'delete' : 'put'](url !== null && url !== void 0 ? url : http_1.httpClient.entryPoint + "/users/notification-key", constants_1.headersHAL, { token: token })];
case 1:
response = _d.sent();
if (!response.ok) return [3 /*break*/, 3];
return [4 /*yield*/, response.json()];
case 2:
data = _d.sent();
if (Array.isArray(data) && ((_c = data) === null || _c === void 0 ? void 0 : _c.some(function (re) { return (re === null || re === void 0 ? void 0 : re.logref) === 'error'; }))) {
return [2 /*return*/, Promise.resolve(false)];
}
_d.label = 3;
case 3: return [2 /*return*/, Promise.resolve(response.ok)];
case 4:
_1 = _d.sent();
return [2 /*return*/, Promise.resolve(false)];
case 5: return [2 /*return*/];
}
});
});
};
NotificationApi.error = {};
NotificationApi.notifications = [];
NotificationApi.fetchingStatusNotification = EFetchingStatus_1.EFetchingStatus.DONE;
__decorate([
mobx_1.observable
], NotificationApi, "error", void 0);
__decorate([
mobx_1.observable
], NotificationApi, "profileInfo", void 0);
__decorate([
mobx_1.observable
], NotificationApi, "profileInfoLinks", void 0);
__decorate([
mobx_1.observable
], NotificationApi, "notifications", void 0);
__decorate([
mobx_1.observable
], NotificationApi, "fetchingStatusNotification", void 0);
return NotificationApi;
}());
exports.NotificationApi = NotificationApi;