2019-04-24 14:02:11 +02:00
|
|
|
import {Component, ViewChild} from "@angular/core";
|
2019-04-05 19:29:28 +02:00
|
|
|
import {SearchUtilsClass} from "../../openaireLibrary/searchPages/searchUtils/searchUtils.class";
|
|
|
|
import {ErrorMessagesComponent} from "../../openaireLibrary/utils/errorMessages.component";
|
|
|
|
import {ErrorCodes} from "../../openaireLibrary/utils/properties/errorCodes";
|
|
|
|
import {EnvProperties} from "../../openaireLibrary/utils/properties/env-properties";
|
|
|
|
import {SearchPageComponent} from "../../openaireLibrary/searchPages/searchUtils/searchPage.component";
|
|
|
|
import {ActivatedRoute} from "@angular/router";
|
|
|
|
import {Filter, Value} from "../../openaireLibrary/searchPages/searchUtils/searchHelperClasses.class";
|
|
|
|
import {SearchFields} from "../../openaireLibrary/utils/properties/searchFields";
|
|
|
|
import {CommunitiesService} from "../../openaireLibrary/connect/communities/communities.service";
|
2019-09-13 09:47:29 +02:00
|
|
|
import {Session, User} from "../../openaireLibrary/login/utils/helper.class";
|
2019-04-05 19:29:28 +02:00
|
|
|
import {CommunityInfo} from "../../openaireLibrary/connect/community/communityInfo";
|
|
|
|
import {SubscribeService} from "../../openaireLibrary/utils/subscribe/subscribe.service";
|
|
|
|
import {StringUtils} from "../../openaireLibrary/utils/string-utils.class";
|
2019-04-24 14:02:11 +02:00
|
|
|
import {HelperFunctions} from "../../openaireLibrary/utils/HelperFunctions.class";
|
2019-09-13 09:47:29 +02:00
|
|
|
import {UserManagementService} from "../../openaireLibrary/services/user-management.service";
|
|
|
|
import {url} from "inspector";
|
2019-04-05 19:29:28 +02:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'search-communities',
|
|
|
|
template: `
|
2019-04-15 09:46:44 +02:00
|
|
|
<search-page pageTitle="OpenAIRE-Connect | Search Communities"
|
2019-08-02 16:56:03 +02:00
|
|
|
[hasPrefix]=false [piwikSiteId]="piwikSiteId"
|
|
|
|
searchFormClass="communitiesSearchForm"
|
2019-08-05 12:31:12 +02:00
|
|
|
[formPlaceholderText]="'Search for Research Communities' + ((showType)?' and Initiatives':'')"
|
2019-04-12 16:16:08 +02:00
|
|
|
type="communities" entityType="community" [filters]="filters"
|
2019-04-05 19:29:28 +02:00
|
|
|
[results]="results" [searchUtils]="searchUtils"
|
|
|
|
[showResultCount]=true [baseUrl]="baseUrl"
|
|
|
|
[disableForms]="disableForms"
|
2019-08-05 12:31:12 +02:00
|
|
|
[lastIndex]=false [sort]=true
|
|
|
|
[showType]="showType">
|
2019-04-05 19:29:28 +02:00
|
|
|
</search-page>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
export class SearchCommunitiesComponent {
|
2019-08-02 16:56:03 +02:00
|
|
|
public piwikSiteId = null;
|
2019-04-05 19:29:28 +02:00
|
|
|
private errorCodes: ErrorCodes;
|
|
|
|
private errorMessages: ErrorMessagesComponent;
|
2019-04-13 20:21:51 +02:00
|
|
|
public results: CommunityInfo[] = [];
|
|
|
|
public totalResults: CommunityInfo[] = [];
|
2019-04-05 19:29:28 +02:00
|
|
|
public sub: any; public subResults: any;
|
|
|
|
public filters = [];
|
|
|
|
public searchFields:SearchFields = new SearchFields();
|
|
|
|
public searchUtils:SearchUtilsClass = new SearchUtilsClass();
|
|
|
|
public disableForms: boolean = false;
|
|
|
|
public baseUrl: string = null;
|
|
|
|
public refineFields: string[] = this.searchFields.COMMUNITIES_SEARCH_FIELDS;
|
2019-08-05 12:31:12 +02:00
|
|
|
public showType = false;
|
2019-04-05 19:29:28 +02:00
|
|
|
properties:EnvProperties;
|
|
|
|
@ViewChild (SearchPageComponent) searchPage : SearchPageComponent ;
|
2019-09-13 09:47:29 +02:00
|
|
|
private user: User;
|
2019-04-05 19:29:28 +02:00
|
|
|
|
2019-04-08 16:56:09 +02:00
|
|
|
constructor (private route: ActivatedRoute,
|
|
|
|
private _communitiesService: CommunitiesService,
|
2019-09-13 09:47:29 +02:00
|
|
|
private _subscribeService: SubscribeService,
|
|
|
|
private userManagementService: UserManagementService) {
|
2019-04-05 19:29:28 +02:00
|
|
|
this.errorCodes = new ErrorCodes();
|
|
|
|
this.errorMessages = new ErrorMessagesComponent();
|
|
|
|
this.searchUtils.status = this.errorCodes.LOADING;
|
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnInit() {
|
|
|
|
this.route.data
|
|
|
|
.subscribe((data: { envSpecific: EnvProperties }) => {
|
|
|
|
this.properties = data.envSpecific;
|
2019-08-02 16:56:03 +02:00
|
|
|
this.piwikSiteId = this.properties.piwikSiteId;
|
2019-04-05 19:29:28 +02:00
|
|
|
this.baseUrl = data.envSpecific.searchLinkToCommunities;
|
|
|
|
});
|
|
|
|
this.sub = this.route.queryParams.subscribe(params => {
|
2019-07-03 15:32:59 +02:00
|
|
|
this.searchPage.resultsPerPage = 10;
|
2019-04-05 19:29:28 +02:00
|
|
|
this.searchUtils.keyword = (params['keyword']?params['keyword']:'');
|
|
|
|
this.searchUtils.page = (params['page'] === undefined) ? 1: + params['page'];
|
2019-04-07 18:08:10 +02:00
|
|
|
this.searchUtils.sortBy = (params['sortBy'] === undefined)? '' : params['sortBy'];
|
2019-05-03 11:37:58 +02:00
|
|
|
this.searchUtils.size = (params['size'] === undefined) ? this.searchPage.resultsPerPage: +params['size'];
|
|
|
|
this.searchPage.searchUtils = this.searchUtils;
|
2019-04-07 18:08:10 +02:00
|
|
|
if(this.searchUtils.size != 5 && this.searchUtils.size != 10 && this.searchUtils.size != 20 && this.searchUtils.size != 50) {
|
|
|
|
this.searchUtils.size = this.searchPage.resultsPerPage;
|
|
|
|
}
|
|
|
|
if(this.searchUtils.sortBy && this.searchUtils.sortBy != "creationdate,descending" && this.searchUtils.sortBy != "creationdate,ascending") {
|
|
|
|
this.searchUtils.sortBy = "";
|
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
this.searchPage.refineFields = this.refineFields;
|
|
|
|
let queryParams = this.searchPage.getQueryParamsFromUrl(params);
|
2019-11-08 12:04:10 +01:00
|
|
|
if(typeof document !== 'undefined') {
|
|
|
|
this.userManagementService.getUserInfo(this.properties.userInfoUrl).subscribe(user => {
|
|
|
|
this.user = user;
|
|
|
|
this.initCommunities(queryParams);
|
|
|
|
});
|
|
|
|
} else {
|
2019-09-13 09:47:29 +02:00
|
|
|
this.initCommunities(queryParams);
|
2019-11-08 12:04:10 +01:00
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnDestroy() {
|
|
|
|
if(this.sub){
|
|
|
|
this.sub.unsubscribe();
|
|
|
|
}
|
|
|
|
if(this.subResults){
|
|
|
|
this.subResults.unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-12 11:50:10 +02:00
|
|
|
/**
|
2019-04-13 20:21:51 +02:00
|
|
|
* Initialize communities from Communities APIs
|
2019-04-12 11:50:10 +02:00
|
|
|
*
|
|
|
|
* @param params
|
|
|
|
*/
|
2019-04-13 20:21:51 +02:00
|
|
|
private initCommunities(params: Map<string, string>) {
|
2019-04-18 14:50:14 +02:00
|
|
|
this.subResults = this._communitiesService.getCommunitiesState().subscribe(
|
2019-04-05 19:29:28 +02:00
|
|
|
data => {
|
2019-07-30 10:59:40 +02:00
|
|
|
if(!data){
|
|
|
|
return;
|
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
for(let i = 0; i < data.length; i++) {
|
2019-04-13 20:21:51 +02:00
|
|
|
this.totalResults[i] = data[i];
|
2019-04-17 12:37:49 +02:00
|
|
|
this.totalResults[i].isManager = false;
|
|
|
|
this.totalResults[i].isSubscribed = false;
|
2019-09-13 09:47:29 +02:00
|
|
|
if(this.user) {
|
2019-04-17 12:37:49 +02:00
|
|
|
this.totalResults[i].isManager = this.isCommunityManager(this.totalResults[i]);
|
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
2019-09-13 09:47:29 +02:00
|
|
|
if(this.user) {
|
|
|
|
this._subscribeService.getCommunitiesSubscribedTo(this.properties, this.user.email).subscribe(
|
2019-04-24 14:02:11 +02:00
|
|
|
res => {
|
|
|
|
for (let i = 0; i < this.totalResults.length; i++) {
|
|
|
|
this.totalResults[i].isSubscribed = (res.indexOf(this.totalResults[i].communityId) != -1);
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
2019-04-24 14:02:11 +02:00
|
|
|
this._getResults(params);
|
|
|
|
}
|
2019-04-17 12:37:49 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
this._getResults(params);
|
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
},
|
|
|
|
err => {
|
|
|
|
this.handleError('Error getting communities', err);
|
|
|
|
this.searchUtils.status = this.errorMessages.getErrorCode(err.status);
|
|
|
|
this.disableForms = false;
|
2019-04-24 14:02:11 +02:00
|
|
|
HelperFunctions.scroll();
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
2019-04-17 12:37:49 +02:00
|
|
|
);
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
|
2019-04-13 20:21:51 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get all communities from Communities API and apply permission access validator,
|
|
|
|
* keyword searching, filter, paging and sorting.
|
|
|
|
*
|
|
|
|
* @param params, status
|
|
|
|
* @private
|
|
|
|
*/
|
2019-04-15 12:48:18 +02:00
|
|
|
private _getResults(params: Map<string, string>){
|
2019-04-13 20:21:51 +02:00
|
|
|
this.searchUtils.status = this.errorCodes.LOADING;
|
|
|
|
this.disableForms = true;
|
|
|
|
this.results = this.totalResults;
|
2019-08-05 12:31:12 +02:00
|
|
|
if(this.filters.length === 0) {
|
|
|
|
this.filters = this.createFilters();
|
|
|
|
}
|
2019-04-13 20:21:51 +02:00
|
|
|
this.searchUtils.totalResults = 0;
|
2019-04-15 12:48:18 +02:00
|
|
|
this.applyParams(params);
|
2019-04-13 20:21:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the communities in which user has permission to view or manage.
|
|
|
|
*/
|
|
|
|
private showCommunities() {
|
|
|
|
let ret: CommunityInfo[] = [];
|
|
|
|
for(let result of this.results) {
|
|
|
|
if (result.status == 'hidden') {
|
|
|
|
continue;
|
|
|
|
} else if (result.status == "manager") {
|
2019-09-20 12:31:45 +02:00
|
|
|
let mail = (this.user)?this.user.email:null;
|
2019-04-13 20:21:51 +02:00
|
|
|
if (mail == null) { // no user
|
|
|
|
continue;
|
2019-09-13 09:47:29 +02:00
|
|
|
} else if (Session.isCommunityCurator(this.user) || Session.isPortalAdministrator(this.user)) {
|
2019-04-13 20:21:51 +02:00
|
|
|
ret.push(result);
|
|
|
|
} else if (result.managers.indexOf(mail) != -1) {
|
|
|
|
ret.push(result);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ret.push(result);
|
|
|
|
}
|
|
|
|
this.results = ret;
|
|
|
|
}
|
|
|
|
|
2019-04-12 16:16:08 +02:00
|
|
|
/**
|
|
|
|
* Apply permission access validator,
|
|
|
|
* keyword searching, filter, paging and sorting.
|
|
|
|
*
|
|
|
|
* @param params
|
|
|
|
* @param status
|
|
|
|
*/
|
2019-04-15 12:48:18 +02:00
|
|
|
public applyParams(params: Map<string, string>) {
|
2019-04-12 16:16:08 +02:00
|
|
|
this.showCommunities();
|
|
|
|
if(this.searchUtils.keyword && this.searchUtils.keyword != '') {
|
|
|
|
this.searchForKeywords();
|
|
|
|
}
|
|
|
|
this.checkFilters(params);
|
|
|
|
this.sort();
|
|
|
|
this.searchUtils.totalResults = this.results.length;
|
|
|
|
this.searchPage.checkSelectedFilters(this.filters);
|
|
|
|
this.searchPage.updateBaseUrlWithParameters(this.filters);
|
|
|
|
this.results = this.results.slice((this.searchUtils.page-1)*this.searchUtils.size, (this.searchUtils.page*this.searchUtils.size));
|
2019-04-15 12:48:18 +02:00
|
|
|
this.searchUtils.status = this.errorCodes.DONE;
|
2019-04-12 16:16:08 +02:00
|
|
|
if(this.searchUtils.totalResults == 0 ){
|
|
|
|
this.searchUtils.status = this.errorCodes.NONE;
|
|
|
|
}
|
|
|
|
this.disableForms = false;
|
2019-04-15 12:48:18 +02:00
|
|
|
if(this.searchUtils.status == this.errorCodes.DONE) {
|
2019-04-12 16:16:08 +02:00
|
|
|
// Page out of limit!!!
|
|
|
|
let totalPages:any = this.searchUtils.totalResults/(this.searchUtils.size);
|
|
|
|
if(!(Number.isInteger(totalPages))) {
|
|
|
|
totalPages = (parseInt(totalPages, 10) + 1);
|
|
|
|
}
|
|
|
|
if(totalPages < this.searchUtils.page) {
|
|
|
|
this.searchUtils.totalResults = 0;
|
|
|
|
this.searchUtils.status = this.errorCodes.OUT_OF_BOUND;
|
|
|
|
}
|
|
|
|
}
|
2019-04-24 14:02:11 +02:00
|
|
|
HelperFunctions.scroll();
|
2019-04-12 16:16:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-12 11:50:10 +02:00
|
|
|
/**
|
|
|
|
* Parse the given keywords into array and check if any of the requirements field of a community includes
|
|
|
|
* one of the given words.
|
|
|
|
*/
|
2019-04-07 18:08:10 +02:00
|
|
|
private searchForKeywords() {
|
2019-04-13 20:21:51 +02:00
|
|
|
let ret: CommunityInfo[] = [];
|
2019-04-07 18:08:10 +02:00
|
|
|
let keywords: string[] = this.searchUtils.keyword.split(/,(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/,-1);
|
|
|
|
for(let i = 0; i < this.results.length; i++) {
|
|
|
|
for(let keyword of keywords) {
|
2019-04-15 14:30:29 +02:00
|
|
|
keyword = keyword.toLowerCase();
|
|
|
|
if (keyword != '' && (this.results[i].title.toLowerCase().includes(keyword) || this.results[i].shortTitle.toLowerCase().includes(keyword) ||
|
|
|
|
this.results[i].communityId.toLowerCase().includes(keyword) || this.results[i].description.toLowerCase().includes(keyword))) {
|
|
|
|
ret.push(this.results[i]);
|
|
|
|
break;
|
|
|
|
}
|
2019-04-07 18:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.results = ret;
|
|
|
|
}
|
|
|
|
|
2019-04-12 11:50:10 +02:00
|
|
|
/**
|
|
|
|
* Check the current results if they satisfy the values of each filter category and
|
|
|
|
* update the number of possible results in each value.
|
|
|
|
*
|
|
|
|
* @param params
|
|
|
|
*/
|
2019-04-05 19:29:28 +02:00
|
|
|
private checkFilters(params: Map<string, string>) {
|
2019-04-13 20:21:51 +02:00
|
|
|
let typeResults: CommunityInfo[] = this.applyFilter('type', params);
|
2019-04-15 11:16:29 +02:00
|
|
|
let statusResults: CommunityInfo[] = this.results;
|
|
|
|
let roleResults: CommunityInfo[] = this.results;
|
2019-09-13 09:47:29 +02:00
|
|
|
if(this.user) {
|
2019-04-15 11:16:29 +02:00
|
|
|
statusResults = this.applyFilter('status', params);
|
|
|
|
roleResults = this.applyFilter('role', params);
|
|
|
|
this.resetFilterNumbers('status');
|
|
|
|
this.updateFilterNumbers(typeResults.filter(value => {
|
|
|
|
return roleResults.includes(value);
|
|
|
|
}), 'status');
|
|
|
|
this.resetFilterNumbers('role');
|
|
|
|
this.updateFilterNumbers(statusResults.filter(value => {
|
|
|
|
return typeResults.includes(value);
|
|
|
|
}), 'role');
|
|
|
|
}
|
2019-04-07 18:08:10 +02:00
|
|
|
this.resetFilterNumbers('type');
|
2019-04-12 10:54:55 +02:00
|
|
|
this.updateFilterNumbers(statusResults.filter(value => {
|
|
|
|
return roleResults.includes(value);
|
|
|
|
}), 'type');
|
2019-04-07 18:08:10 +02:00
|
|
|
this.results = statusResults.filter(value => {
|
|
|
|
return typeResults.includes(value);
|
2019-04-12 10:54:55 +02:00
|
|
|
})
|
|
|
|
this.results = this.results.filter(value => {
|
|
|
|
return roleResults.includes(value);
|
2019-04-07 18:08:10 +02:00
|
|
|
});
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
|
2019-04-12 11:50:10 +02:00
|
|
|
/**
|
|
|
|
* Apply filter with filterId and return the results
|
|
|
|
*
|
|
|
|
* @param filterId
|
|
|
|
* @param params
|
|
|
|
*/
|
2019-04-13 20:21:51 +02:00
|
|
|
private applyFilter(filterId: string, params: Map<string, string>): CommunityInfo[] {
|
|
|
|
let results:CommunityInfo[] = [];
|
2019-04-12 11:50:10 +02:00
|
|
|
let values: string[] = [];
|
|
|
|
if(params.get(filterId) != undefined) {
|
|
|
|
values = (StringUtils.URIDecode(params.get(filterId))).split(/,(?=(?:[^\"]*\"[^\"]*\")*[^\"]*$)/,-1);
|
|
|
|
}
|
|
|
|
if(filterId == 'type') {
|
|
|
|
for (let i = 0; i < this.results.length; i++) {
|
|
|
|
if (values.length == 0) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
} else {
|
|
|
|
for (let value of values) {
|
2019-04-13 20:21:51 +02:00
|
|
|
if (this.results[i].type == value.replace(/["']/g, "")) {
|
2019-04-12 11:50:10 +02:00
|
|
|
results.push(this.results[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(filterId == 'status') {
|
|
|
|
for (let i = 0; i < this.results.length; i++) {
|
|
|
|
if (values.length == 0) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
} else {
|
|
|
|
for (let value of values) {
|
|
|
|
if (value.replace(/["']/g, "") == 'subscribed') {
|
|
|
|
if (this.results[i].isSubscribed) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (value.replace(/["']/g, "") == 'nonsubscribed') {
|
|
|
|
if (!this.results[i].isSubscribed) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(filterId == 'role') {
|
|
|
|
for (let i = 0; i < this.results.length; i++) {
|
|
|
|
if (values.length == 0) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
} else {
|
|
|
|
for (let value of values) {
|
|
|
|
if (value.replace(/["']/g, "") == 'manager') {
|
|
|
|
if (this.results[i].isManager) {
|
|
|
|
results.push(this.results[i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return results;
|
|
|
|
}
|
|
|
|
|
2019-04-07 18:08:10 +02:00
|
|
|
/**
|
|
|
|
* Reset the values of filter with id filterId with zero.
|
|
|
|
*
|
|
|
|
* @param filterId
|
|
|
|
*/
|
|
|
|
private resetFilterNumbers(filterId: string) {
|
2019-04-05 19:29:28 +02:00
|
|
|
for (let i = 0; i < this.filters.length; i++) {
|
2019-04-07 18:08:10 +02:00
|
|
|
if(this.filters[i].filterId == filterId) {
|
|
|
|
for (let j = 0; j < this.filters[i].values.length; j++) {
|
|
|
|
this.filters[i].values[j].number = 0;
|
|
|
|
}
|
|
|
|
break;
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
2019-04-07 18:08:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Update the values of filter with id filterId based on
|
|
|
|
* results.
|
|
|
|
*
|
|
|
|
* @param results
|
|
|
|
* @param filterId
|
|
|
|
*/
|
2019-04-13 20:21:51 +02:00
|
|
|
private updateFilterNumbers(results: CommunityInfo[], filterId: string) {
|
2019-04-05 19:29:28 +02:00
|
|
|
for(let k = 0; k < results.length; k++) {
|
|
|
|
for (let i = 0; i < this.filters.length; i++) {
|
2019-04-07 18:08:10 +02:00
|
|
|
if(this.filters[i].filterId == filterId) {
|
|
|
|
if (this.filters[i].filterId == 'type') {
|
|
|
|
for (let j = 0; j < this.filters[i].values.length; j++) {
|
2019-04-13 20:21:51 +02:00
|
|
|
if (results[k].type == this.filters[i].values[j].id) {
|
2019-04-07 18:08:10 +02:00
|
|
|
this.filters[i].values[j].number++;
|
|
|
|
}
|
|
|
|
}
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
2019-04-15 13:43:06 +02:00
|
|
|
else if (this.filters[i].filterId == 'status') {
|
2019-04-07 18:08:10 +02:00
|
|
|
if (results[k].isSubscribed) {
|
|
|
|
this.filters[i].values[0].number++;
|
|
|
|
} else {
|
|
|
|
this.filters[i].values[1].number++;
|
|
|
|
}
|
2019-04-12 10:54:55 +02:00
|
|
|
}
|
2019-04-15 13:43:06 +02:00
|
|
|
else if (this.filters[i].filterId == 'role') {
|
2019-04-07 18:08:10 +02:00
|
|
|
if (results[k].isManager) {
|
2019-04-12 10:54:55 +02:00
|
|
|
this.filters[i].values[0].number++;
|
2019-04-07 18:08:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-07 18:08:10 +02:00
|
|
|
/**
|
|
|
|
* Sorting results based on sortBy.
|
|
|
|
*/
|
|
|
|
private sort() {
|
|
|
|
if(this.searchUtils.sortBy == '') {
|
|
|
|
this.results.sort((left, right): number => {
|
2019-04-13 20:21:51 +02:00
|
|
|
if (left.title > right.title) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return 1;
|
2019-04-13 20:21:51 +02:00
|
|
|
} else if (left.title < right.title) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else if(this.searchUtils.sortBy == 'creationdate,descending') {
|
|
|
|
this.results.sort((left, right): number => {
|
2019-04-13 20:21:51 +02:00
|
|
|
if (!right.date || left.date > right.date) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return -1;
|
2019-04-13 20:21:51 +02:00
|
|
|
} else if (!left.date || left.date < right.date) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return 1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
} else if(this.searchUtils.sortBy == 'creationdate,ascending') {
|
|
|
|
this.results.sort((left, right): number => {
|
2019-04-13 20:21:51 +02:00
|
|
|
if (!right.date || left.date > right.date) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return 1;
|
2019-04-13 20:21:51 +02:00
|
|
|
} else if (!left.date || left.date < right.date) {
|
2019-04-07 18:08:10 +02:00
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-05 19:29:28 +02:00
|
|
|
private isCommunityManager(community: CommunityInfo): boolean {
|
2019-09-13 09:47:29 +02:00
|
|
|
return Session.isCommunityCurator(this.user) || community.managers.indexOf(this.user.email) != -1;
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
|
2019-04-07 18:08:10 +02:00
|
|
|
/**
|
|
|
|
* Create Search Communities filters.
|
|
|
|
*
|
|
|
|
*/
|
2019-04-05 19:29:28 +02:00
|
|
|
private createFilters(): Filter[] {
|
2019-08-05 12:31:12 +02:00
|
|
|
let filter_names = [];
|
|
|
|
let filter_ids = [];
|
2019-04-05 19:29:28 +02:00
|
|
|
let searchFields = new SearchFields();
|
|
|
|
let filter_original_ids = searchFields.COMMUNITIES_SEARCH_FIELDS;
|
2019-08-05 12:31:12 +02:00
|
|
|
let value_names = [];
|
|
|
|
let value_original_ids=[];
|
|
|
|
this.showType = this.results.filter(community => community.type === 'ri').length > 0;
|
|
|
|
if(this.showType) {
|
|
|
|
filter_names.push("Type");
|
|
|
|
filter_ids.push("type");
|
|
|
|
value_names.push([ "Research Communities", "Research Initiatives" ]);
|
|
|
|
value_original_ids.push(["community","ri"]);
|
|
|
|
} else {
|
|
|
|
filter_original_ids = searchFields.COMMUNITIES_SEARCH_FIELDS.splice(0, 1);
|
|
|
|
}
|
2019-09-13 09:47:29 +02:00
|
|
|
if(this.user) {
|
2019-08-05 12:31:12 +02:00
|
|
|
filter_names.push("Status");
|
|
|
|
filter_ids.push("status");
|
|
|
|
value_names.push([ "Subscribed", "Non-subscribed"]);
|
|
|
|
value_original_ids.push(["subscribed", "nonsubscribed"]);
|
|
|
|
filter_names.push("Role");
|
|
|
|
filter_ids.push("role");
|
|
|
|
value_names.push([ "Manager"]);
|
|
|
|
value_original_ids.push(["manager"]);
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|
|
|
|
let filters: Filter[] = [];
|
|
|
|
for(let i =0 ; i < filter_names.length; i++){
|
|
|
|
let values: Value[] = [];
|
|
|
|
for(let j =0 ; j < value_names[i].length; j++){
|
2019-04-07 18:08:10 +02:00
|
|
|
let value: Value = {name: value_names[i][j], id: value_original_ids[i][j], number:0, selected:false};
|
2019-04-05 19:29:28 +02:00
|
|
|
values.push(value);
|
|
|
|
}
|
2019-07-15 18:24:58 +02:00
|
|
|
let filter: Filter = {title: filter_names[i], filterId: filter_ids[i], originalFilterId: filter_original_ids[i], values : values, countSelectedValues:0, "filterOperator": 'or', valueIsExact: true , valueIsUnique: false};
|
2019-04-05 19:29:28 +02:00
|
|
|
filters.push(filter);
|
|
|
|
}
|
|
|
|
return filters;
|
|
|
|
}
|
|
|
|
|
|
|
|
private handleError(message: string, error) {
|
|
|
|
console.error('Communities Search Page: ' + message, error);
|
|
|
|
}
|
2019-04-08 16:56:09 +02:00
|
|
|
|
2019-04-05 19:29:28 +02:00
|
|
|
}
|