77 lines
2.0 KiB
TypeScript
77 lines
2.0 KiB
TypeScript
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';
|
|
import {ErrorCodes} from '../../utils/properties/errorCodes';
|
|
import {SearchFields, FieldDetails} from '../../utils/properties/searchFields';
|
|
import {SearchPageComponent } from '../searchUtils/searchPage.component';
|
|
import {SearchUtilsClass} from '../searchUtils/searchUtils.class';
|
|
import {RouterHelper} from '../../utils/routerHelper.class';
|
|
import{EnvProperties} from '../../utils/properties/env-properties';
|
|
|
|
@Component({
|
|
selector: 'browse-statistic',
|
|
templateUrl: 'browseStatistic.component.html'
|
|
|
|
})
|
|
export class BrowseStatisticComponent {
|
|
|
|
@Input() public baseUrl:string = "";
|
|
@Input() public filter:any = "";
|
|
private _maxCharacters = 30;
|
|
public viewAll = false;
|
|
public routerHelper:RouterHelper = new RouterHelper();
|
|
keyword = "";
|
|
sortBy = "num";
|
|
constructor () {
|
|
|
|
}
|
|
|
|
public ngOnInit() {
|
|
|
|
|
|
}
|
|
|
|
quote(str:string){
|
|
return '"'+str+'"';
|
|
}
|
|
|
|
private _formatName(value){
|
|
return value.name+" ";//(((value.name+" ("+value.number+")").length >this._maxCharacters)?(value.name.substring(0,(this._maxCharacters - (" ("+value.number+")").length - ('...').length))+"..."):value.name)
|
|
}
|
|
filterKeywords(value){
|
|
if(this.keyword.length > 0){
|
|
if(value.toLowerCase().indexOf(this.keyword.toLowerCase()) ==-1){
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
getValues(filter, sortBy:string = "num"):any{
|
|
|
|
if(sortBy == "name"){
|
|
var array = filter.values.slice();
|
|
array.sort((n1,n2)=> {
|
|
if (n1.name > n2.name) {
|
|
return 1;
|
|
}
|
|
|
|
if (n1.name < n2.name) {
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
});
|
|
return array;
|
|
}else{
|
|
return filter.values;
|
|
}
|
|
|
|
|
|
}
|
|
}
|