web-atoms-core
Version:
283 lines • 13.8 kB
JavaScript
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 __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 };
}
};
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "@web-atoms/unit-test/dist/Assert", "@web-atoms/unit-test/dist/Category", "@web-atoms/unit-test/dist/Test", "../../Atom", "../../di/DISingleton", "../../di/Inject", "../../view-model/Action", "../../view-model/AtomViewModel", "../web/AtomWebTest"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var Assert_1 = require("@web-atoms/unit-test/dist/Assert");
var Category_1 = require("@web-atoms/unit-test/dist/Category");
var Test_1 = require("@web-atoms/unit-test/dist/Test");
var Atom_1 = require("../../Atom");
var DISingleton_1 = require("../../di/DISingleton");
var Inject_1 = require("../../di/Inject");
var Action_1 = require("../../view-model/Action");
var AtomViewModel_1 = require("../../view-model/AtomViewModel");
var AtomWebTest_1 = require("../web/AtomWebTest");
var RemoteService = /** @class */ (function () {
function RemoteService() {
}
RemoteService.prototype.signUp = function (user) {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, Atom_1.Atom.delay(100)];
case 1:
_a.sent();
if (!/\@/i.test(user.email)) {
throw new Error("Invalid email address");
}
return [2 /*return*/, "Success " + user.name];
}
});
});
};
RemoteService = __decorate([
DISingleton_1.default()
], RemoteService);
return RemoteService;
}());
var ActionViewModel = /** @class */ (function (_super) {
__extends(ActionViewModel, _super);
function ActionViewModel() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.model = {
name: "",
email: ""
};
return _this;
}
Object.defineProperty(ActionViewModel.prototype, "errorName", {
get: function () {
return this.model.name ? "" : "Name is required";
},
enumerable: true,
configurable: true
});
ActionViewModel.prototype.cancel = function () {
return __awaiter(this, void 0, void 0, function () {
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, Atom_1.Atom.delay(10)];
case 1:
_a.sent();
this.model.name = "";
this.model.email = "";
return [2 /*return*/];
}
});
});
};
ActionViewModel.prototype.signUp = function () {
return __awaiter(this, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = this;
return [4 /*yield*/, this.remoteService.signUp(this.model)];
case 1:
_a.result = _b.sent();
return [2 /*return*/];
}
});
});
};
__decorate([
AtomViewModel_1.Validate,
__metadata("design:type", String),
__metadata("design:paramtypes", [])
], ActionViewModel.prototype, "errorName", null);
__decorate([
Inject_1.Inject,
__metadata("design:type", RemoteService)
], ActionViewModel.prototype, "remoteService", void 0);
__decorate([
Action_1.default({ confirm: "Are you sure you want to cancel" }),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionViewModel.prototype, "cancel", null);
__decorate([
Action_1.default({ success: "Operation completed successfully", validate: true }),
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionViewModel.prototype, "signUp", null);
return ActionViewModel;
}(AtomViewModel_1.AtomViewModel));
var ActionTest = /** @class */ (function (_super) {
__extends(ActionTest, _super);
function ActionTest() {
return _super !== null && _super.apply(this, arguments) || this;
}
ActionTest.prototype.validate = function () {
return __awaiter(this, void 0, void 0, function () {
var vm;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.createViewModel(ActionViewModel)];
case 1:
vm = _a.sent();
this.navigationService.expectAlert("Please enter correct information");
return [4 /*yield*/, vm.signUp()];
case 2:
_a.sent();
return [2 /*return*/];
}
});
});
};
ActionTest.prototype.exception = function () {
return __awaiter(this, void 0, void 0, function () {
var vm;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.createViewModel(ActionViewModel)];
case 1:
vm = _a.sent();
vm.model.name = "a";
vm.model.email = "a";
this.navigationService.expectAlert("Error: Invalid email address");
return [4 /*yield*/, vm.signUp()];
case 2:
_a.sent();
return [2 /*return*/];
}
});
});
};
ActionTest.prototype.success = function () {
return __awaiter(this, void 0, void 0, function () {
var vm;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.createViewModel(ActionViewModel)];
case 1:
vm = _a.sent();
vm.model.name = "a";
vm.model.email = "a@a";
this.navigationService.expectAlert("Operation completed successfully");
return [4 /*yield*/, vm.signUp()];
case 2:
_a.sent();
Assert_1.default.equals("Success a", vm.result);
return [2 /*return*/];
}
});
});
};
ActionTest.prototype.confirm = function () {
return __awaiter(this, void 0, void 0, function () {
var vm;
return __generator(this, function (_a) {
switch (_a.label) {
case 0: return [4 /*yield*/, this.createViewModel(ActionViewModel)];
case 1:
vm = _a.sent();
vm.model.name = "a";
vm.model.email = "a@a";
this.navigationService.expectConfirm("Are you sure you want to cancel", function () { return true; });
return [4 /*yield*/, vm.cancel()];
case 2:
_a.sent();
Assert_1.default.equals("", vm.model.name);
return [2 /*return*/];
}
});
});
};
__decorate([
Test_1.default,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionTest.prototype, "validate", null);
__decorate([
Test_1.default,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionTest.prototype, "exception", null);
__decorate([
Test_1.default,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionTest.prototype, "success", null);
__decorate([
Test_1.default,
__metadata("design:type", Function),
__metadata("design:paramtypes", []),
__metadata("design:returntype", Promise)
], ActionTest.prototype, "confirm", null);
ActionTest = __decorate([
Category_1.default("View Model Action")
], ActionTest);
return ActionTest;
}(AtomWebTest_1.default));
exports.default = ActionTest;
});
//# sourceMappingURL=ActionTest.js.map