SearchPageTableViewComponent: Add a try catch in ngOnDestroy, ngAfterViewInit to avoid crash in server mode
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@53642 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
parent
21ac8fd2f0
commit
49952604f4
|
@ -112,21 +112,28 @@ export class SearchPageTableViewComponent implements OnInit, AfterViewInit {
|
||||||
if(this.piwiksub){
|
if(this.piwiksub){
|
||||||
this.piwiksub.unsubscribe();
|
this.piwiksub.unsubscribe();
|
||||||
}
|
}
|
||||||
|
try{
|
||||||
$.fn['dataTable'].ext.search.pop();
|
$.fn['dataTable'].ext.search.pop();
|
||||||
|
}catch(e){
|
||||||
|
console.error("An error occured in ngOnDestroy of SearchPageTableViewComponent ", e)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
ngAfterViewInit(): void {
|
ngAfterViewInit(): void {
|
||||||
|
try{
|
||||||
$.fn['dataTable'].ext.search.push((settings, data, dataIndex) => {
|
$.fn['dataTable'].ext.search.push((settings, data, dataIndex) => {
|
||||||
|
|
||||||
if (this.filterData(data, this.searchUtils.keyword, this.filters)) {
|
if (this.filterData(data, this.searchUtils.keyword, this.filters)) {
|
||||||
console.info("filter true (keyword:"+this.searchUtils.keyword+")");
|
// console.info("filter true (keyword:"+this.searchUtils.keyword+")");
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
console.info("filter false (keyword:"+this.searchUtils.keyword+")");
|
// console.info("filter false (keyword:"+this.searchUtils.keyword+")");
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
});
|
});
|
||||||
|
}catch(e){
|
||||||
|
console.error("An error occured in ngAfterViewInit of SearchPageTableViewComponent ", e)
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue