bia-framework
Version:
Bia Framework to work with angular 2
52 lines • 2.4 kB
JavaScript
;
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 core_1 = require("@angular/core");
var common_1 = require("@angular/common");
var CoreForm = (function () {
function CoreForm() {
var _this = this;
this.form = new common_1.ControlGroup({});
this.sub = new core_1.EventEmitter();
this.addControl = function (name, control) {
if (_this.form == null) {
_this.form.addControl(name, control);
}
else {
_this.form.addControl(name, control);
}
};
this.onSubmit = function (data) {
if (_this.form && _this.form.valid) {
_this.sub.emit(data);
}
};
}
CoreForm.prototype.ngOnInit = function () {
return undefined;
};
__decorate([
core_1.Output(),
__metadata('design:type', Object)
], CoreForm.prototype, "sub", void 0);
CoreForm = __decorate([
core_1.Component({
selector: 'core-form',
template: "\n <form #f=\"ngForm\" [ngFormModel]=\"form\" (ngSubmit)=\"onSubmit(f.form)\" novalidate class=\"odisseia-form\">\n <ng-content></ng-content>\n </form>\n ",
encapsulation: core_1.ViewEncapsulation.None,
styleUrls: ['node_modules/bia-framework/components/odisseia-form/odisseia-form.css'],
directives: [common_1.FORM_DIRECTIVES]
}),
__metadata('design:paramtypes', [])
], CoreForm);
return CoreForm;
}());
exports.CoreForm = CoreForm;
//# sourceMappingURL=odisseia-form.js.map