2017-12-19 13:53:46 +01:00
|
|
|
import {Component, Input, ViewChild} from '@angular/core';
|
|
|
|
import { ActivatedRoute} from '@angular/router';
|
|
|
|
import {Location} from '@angular/common';
|
|
|
|
|
|
|
|
import { Filter, Value} from '../searchUtils/searchHelperClasses.class';
|
|
|
|
|
|
|
|
import {RefineFieldResultsService} from '../../services/refineFieldResults.service';
|
2018-02-15 11:36:12 +01:00
|
|
|
import {ErrorCodes} from '../../utils/properties/errorCodes';
|
2019-02-15 13:50:24 +01:00
|
|
|
import {ErrorMessagesComponent} from '../../utils/errorMessages.component';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {SearchFields, FieldDetails} from '../../utils/properties/searchFields';
|
|
|
|
import {SearchPageComponent } from '../searchUtils/searchPage.component';
|
|
|
|
import {SearchUtilsClass} from '../searchUtils/searchUtils.class';
|
2018-02-05 14:14:59 +01:00
|
|
|
import{EnvProperties} from '../../utils/properties/env-properties';
|
2018-11-19 11:15:13 +01:00
|
|
|
import {StringUtils} from '../../utils/string-utils.class';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'browse-entities',
|
|
|
|
template: `
|
|
|
|
<div>
|
2018-10-03 16:12:42 +02:00
|
|
|
<!--div *ngIf="status == errorCodes.LOADING" class="uk-animation-fade uk-margin-large-top uk-width-1-1" role="alert"><span class="loading-gif uk-align-center" ></span></div>
|
2017-12-19 13:53:46 +01:00
|
|
|
<div *ngIf="status == errorCodes.NONE" class="uk-alert uk-alert-primary uk-animation-fade" role="alert">No Results found</div>
|
|
|
|
<div *ngIf="status == errorCodes.ERROR" class="uk-alert uk-alert-warning uk-animation-fade" role="alert">An Error Occured</div>
|
|
|
|
<div *ngIf="status == errorCodes.NOT_AVAILABLE" class="uk-alert uk-alert-danger" role="alert">Service temprorarily unavailable. Please try again later.</div>
|
|
|
|
<div *ngIf="status == errorCodes.NOT_FOUND" class="uk-alert uk-alert-danger" role="alert">No filters found</div-->
|
|
|
|
<errorMessages [status]="[status]" [type]="'results'"></errorMessages>
|
|
|
|
|
|
|
|
<div class ="uk-grid">
|
2018-06-01 14:28:49 +02:00
|
|
|
<div *ngFor= "let filter of filters" class = "uk-margin-bottom uk-width-1-3@l uk-width-1-3@m uk-width-1-2@s">
|
2017-12-19 13:53:46 +01:00
|
|
|
<browse-statistic [baseUrl]=baseUrl [filter]=filter ></browse-statistic>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
|
|
|
|
})
|
|
|
|
export class BrowseEntitiesComponent {
|
|
|
|
public searchFields:SearchFields = new SearchFields();
|
|
|
|
public filters =[];
|
|
|
|
@Input() public baseUrl:string = "";
|
|
|
|
@Input() public entityName:string = "";
|
|
|
|
@Input() public refineFields: string[] ;//= this.searchFields.RESULT_REFINE_FIELDS;
|
2018-02-05 14:14:59 +01:00
|
|
|
@Input() properties:EnvProperties;
|
2018-11-19 11:15:13 +01:00
|
|
|
@Input() connectCommunityId =null;
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
public sub: any;
|
|
|
|
public errorCodes:ErrorCodes = new ErrorCodes();
|
2019-02-15 13:50:24 +01:00
|
|
|
private errorMessages: ErrorMessagesComponent;
|
2017-12-19 13:53:46 +01:00
|
|
|
public status = this.errorCodes.LOADING;
|
|
|
|
public fieldIdsMap=this.searchFields.RESULT_REFINE_FIELDS;
|
|
|
|
|
|
|
|
constructor ( private _refineFieldsService: RefineFieldResultsService ) {
|
2019-02-15 13:50:24 +01:00
|
|
|
this.errorMessages = new ErrorMessagesComponent();
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnInit() {
|
|
|
|
for(var i=0; i < this.searchFields.HIDDEN_FIELDS.length; i++){
|
|
|
|
var index = this.refineFields.indexOf(this.searchFields.HIDDEN_FIELDS[i]) ;
|
|
|
|
if(index > -1){
|
|
|
|
this.refineFields.splice(index,1);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.getStats();
|
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnDestroy() {
|
|
|
|
if(this.sub){
|
|
|
|
this.sub.unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private getStats(){
|
|
|
|
|
|
|
|
this.status = this.errorCodes.LOADING;
|
2018-11-19 11:15:13 +01:00
|
|
|
var refineParams = this.connectCommunityId?("&fq="+StringUtils.URIEncode("communityId exact " + StringUtils.quote((this.connectCommunityId )))):null;
|
|
|
|
|
|
|
|
this.sub = this._refineFieldsService.getRefineFieldsResultsByEntityName(this.refineFields,this.entityName, this.properties,refineParams).subscribe(
|
2017-12-19 13:53:46 +01:00
|
|
|
data => {
|
2019-02-14 11:15:44 +01:00
|
|
|
//console.info("Get Stats for "+this.entityName+ ": [Total:"+data[0]+" ] [fields: "+data[1].length+"]");
|
2017-12-19 13:53:46 +01:00
|
|
|
this.filters = data[1];
|
|
|
|
this.status = this.errorCodes.DONE;
|
|
|
|
if(data[0] == 0 ){
|
|
|
|
this.status = this.errorCodes.NONE;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
err => {
|
2019-02-15 13:50:24 +01:00
|
|
|
//console.log(err);
|
|
|
|
this.handleError("Error getting refine fields results (stats) by entity: "+this.entityName, err);
|
|
|
|
this.status = this.errorMessages.getErrorCode(err.status);
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
//TODO check erros (service not available, bad request)
|
|
|
|
// if( ){
|
|
|
|
// this.searchUtils.status = ErrorCodes.ERROR;
|
|
|
|
// }
|
|
|
|
//this.status = this.errorCodes.ERROR;
|
2019-02-15 13:50:24 +01:00
|
|
|
/*if(err.status == '404') {
|
2017-12-19 13:53:46 +01:00
|
|
|
this.status = this.errorCodes.NOT_FOUND;
|
|
|
|
} else if(err.status == '500') {
|
|
|
|
this.status = this.errorCodes.ERROR;
|
|
|
|
} else {
|
|
|
|
this.status = this.errorCodes.NOT_AVAILABLE;
|
2019-02-15 13:50:24 +01:00
|
|
|
}*/
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
);
|
2019-02-15 13:50:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private handleError(message: string, error) {
|
|
|
|
console.error("Browse Entities (Search): "+message, error);
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|