2017-12-19 13:53:46 +01:00
|
|
|
import {Component, Input, Output, EventEmitter} from '@angular/core';
|
|
|
|
import {Observable} from 'rxjs/Observable';
|
2018-02-15 11:36:12 +01:00
|
|
|
import {ErrorCodes} from '../../utils/properties/errorCodes';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'search-paging',
|
|
|
|
template: `
|
|
|
|
<div class= "searchPaging uk-panel uk-margin-top uk-grid uk-margin-bottom">
|
|
|
|
<div class="uk-h6 uk-width-1-1@s uk-width-1-2@m" *ngIf="results && searchUtils.totalResults > 0">
|
|
|
|
{{searchUtils.totalResults}} {{type}}, page {{searchUtils.page}} of {{(totalPages(searchUtils.totalResults))}}
|
|
|
|
</div>
|
|
|
|
<div class="uk-h6 uk-width-1-1@s uk-width-1-2@m" *ngIf="!loadPaging && oldTotalResults > 0 && searchUtils.status == errorCodes.LOADING">
|
|
|
|
{{oldTotalResults}} {{type}}, page {{searchUtils.page}} of {{(totalPages(oldTotalResults))}}
|
|
|
|
</div>
|
|
|
|
<div class="float-children-right-at-medium margin-small-top-at-small uk-width-1-1@s uk-width-1-2@m" *ngIf="results && searchUtils.totalResults > searchUtils.size">
|
|
|
|
<paging [currentPage]="searchUtils.page" [totalResults]="searchUtils.totalResults" [baseUrl]="baseUrl" [size]="searchUtils.size" [parameterNames] = "parameterNames" [parameterValues] = "parameterValues" > </paging>
|
|
|
|
</div>
|
|
|
|
<div class="float-children-right-at-medium margin-small-top-at-small uk-width-1-1@s uk-width-1-2@m" *ngIf="!loadPaging && oldTotalResults > searchUtils.size && searchUtils.status == errorCodes.LOADING">
|
|
|
|
<paging [currentPage]="searchUtils.page" [totalResults]="oldTotalResults" [baseUrl]="baseUrl" [size]="searchUtils.size" [parameterNames] = "parameterNames" [parameterValues] = "parameterValues" > </paging>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class SearchPagingComponent {
|
|
|
|
@Input() searchUtils;
|
|
|
|
@Input() results;
|
|
|
|
@Input() baseUrl;
|
|
|
|
@Input() type;
|
|
|
|
@Input() parameterNames:string[];
|
|
|
|
@Input() parameterValues:string[];
|
|
|
|
|
|
|
|
@Input() loadPaging: boolean = true;
|
|
|
|
@Input() oldTotalResults: number = 0;
|
|
|
|
|
|
|
|
public totalResults: number = 0;
|
|
|
|
public errorCodes:ErrorCodes = new ErrorCodes();
|
|
|
|
|
|
|
|
// @Input() totalResults:number = 0;
|
|
|
|
constructor () {}
|
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
// this.totalResults = this.searchUtils.totalResults;
|
|
|
|
// if(!this.loadPaging && this.totalResults == 0) {
|
|
|
|
// this.totalResults = this.oldTotalResults;
|
|
|
|
// }
|
|
|
|
}
|
|
|
|
|
|
|
|
totalPages(totalResults: number): number {
|
|
|
|
let totalPages:any = totalResults/(this.searchUtils.size);
|
|
|
|
if(!(Number.isInteger(totalPages))) {
|
|
|
|
totalPages = (parseInt(totalPages, 10) + 1);
|
|
|
|
}
|
|
|
|
return totalPages;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|