ngx-academia-uniandes-library
Version:
This library is used for Academia-Uniandes system.
79 lines • 5.09 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var 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 function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var core_1 = require("@angular/core");
var search_academy_combo_box_component_1 = require("../search-academy-combo-box/search-academy-combo-box.component");
var service_locator_1 = require("../../service-locator");
var search_combo_box_service_1 = require("../search-combo-box.service");
var search_combo_box_generic_model_1 = require("../search-combo-box-generic/search-combo-box-generic.model");
var core_2 = require("@ngx-translate/core");
var utils_1 = require("../../utils/utils");
var SearchResearchGroupComboBoxComponent = /** @class */ (function (_super) {
__extends(SearchResearchGroupComboBoxComponent, _super);
function SearchResearchGroupComboBoxComponent(urlService, searchBoxUtils, transService, titlecasePipe) {
var _this = _super.call(this, urlService, searchBoxUtils, transService, new search_combo_box_generic_model_1.SearchComboBoxGenericModel(urlService.getResearchGroupsUrl(), [{ "name": "limit", "value": 10 }], null, "researchGroups", "name", 'selectResearchGroup'), titlecasePipe) || this;
_this.urlService = urlService;
_this.searchBoxUtils = searchBoxUtils;
_this.transService = transService;
_this.titlecasePipe = titlecasePipe;
return _this;
}
Object.defineProperty(SearchResearchGroupComboBoxComponent.prototype, "usernameRestrict", {
set: function (userdata) {
this.addUserNameRestriction(userdata);
},
enumerable: true,
configurable: true
});
;
SearchResearchGroupComboBoxComponent.prototype.ngOnInit = function () {
_super.prototype.ngOnInit.call(this);
this.setUrlServiceHost();
};
SearchResearchGroupComboBoxComponent.prototype.setUrlServiceHost = function () {
if (this.debugFlag) {
this.model.urlService = this.urlService.getResearchGroupsUrl(this.debugFlag);
}
};
SearchResearchGroupComboBoxComponent.prototype.addUserNameRestriction = function (userData) {
if (userData != null) {
this.setUrlServiceHost();
this.rsgCombo.componentModel = this.model;
if (userData['dependency']) {
var extId = userData['dependency']['externalId'];
_super.prototype.addQueryParams.call(this, { "name": "dependencyExternalId", "value": extId });
this.rsgCombo.setInitialValue(userData['dependency']);
}
}
};
SearchResearchGroupComboBoxComponent.decorators = [
{ type: core_1.Component, args: [{
selector: 'search-research-group-combo-box',
template: "\n <ng-template #customItemTemplate let-model=\"item\" let-index=\"index\">\n <div class=\"card-container\">\n <div class=\"item\"><p><span>{{model.name}}</span></p></div>\n </div>\n </ng-template>\n\n <app-search-combo-box-generic #rsgcombo [customTemplate]=\"customItemTemplate\" [preSelectedValue]= \"preSelectedValue\" [componentModel]=\"model\" [itemControl]=\"itemControl\" [isScrollable]=\"isScrollable\" (noResults)=\"sendNoResults($event)\" (itemSelected)=\"sendItemSelectedEvent($event)\"></app-search-combo-box-generic>\n ",
styles: ["\n .card-container{\n display: grid;\n grid-template-columns: minmax(150px, 300px) minmax(100px, 1fr);\n }\n\n .item{\n align-self: center;\n justify-content: center;\n overflow: hidden;\n }\n\n p{\n margin: 0;\n }\n\n p span \n {\n display: block;\n white-space: pre-line;\n }\n "]
},] },
];
/** @nocollapse */
SearchResearchGroupComboBoxComponent.ctorParameters = function () { return [
{ type: service_locator_1.ServiceLocator, },
{ type: search_combo_box_service_1.SearchComboBoxService, },
{ type: core_2.TranslateService, },
{ type: utils_1.TitleCaseAcademiaPipe, },
]; };
SearchResearchGroupComboBoxComponent.propDecorators = {
"usernameRestrict": [{ type: core_1.Input, args: ['userRestrict',] },],
"rsgCombo": [{ type: core_1.ViewChild, args: ["rsgcombo",] },],
};
return SearchResearchGroupComboBoxComponent;
}(search_academy_combo_box_component_1.SearchAcademyComboBoxComponent));
exports.SearchResearchGroupComboBoxComponent = SearchResearchGroupComboBoxComponent;
//# sourceMappingURL=search-research-group-combo-box.component.js.map