Skip to content

Instantly share code, notes, and snippets.

@navanathjadhav
Created December 26, 2020 08:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navanathjadhav/2c237ed0698928f5dc2342910c020e76 to your computer and use it in GitHub Desktop.
Save navanathjadhav/2c237ed0698928f5dc2342910c020e76 to your computer and use it in GitHub Desktop.
6. Watch changes on search term and records per page and reload the API
// Current page number
currentPageNumber: number = 1;
// Total records count
totalRecordsCount: number = 0;
// Total pages
totalPages: number = 0;
// Pager
pager: any = {};
constructor(private http: HttpClient, private pagerService: PagerService) {}
// API route
@Input() apiRoute: string = '';
// Search term
@Input() searchTerm: string = '';
// Records per page
@Input() recordsPerPage: number = 0;
// Response data
@Output() responseData = new EventEmitter<any[]>();
// Loading
@Output() loading = new EventEmitter<boolean>();
// Reload
@Input() reload: EventEmitter<boolean> | undefined;
// On init
ngOnInit() {
this.watchReload();
}
// To be emitted from parent component
watchReload() {
if (this.reload) {
this.reload.subscribe((reload: any) => {
if (reload) {
this.getData(this.currentPageNumber);
}
});
}
}
// Fetch new page data
next() {
this.getData(this.currentPageNumber + 1)
}
// Fetch previous page data
prev() {
this.getData(this.currentPageNumber - 1)
}
// Fetch data from API
getData(pageNo: any) {
this.loading.emit(true);
this.responseData.emit([]);
this.currentPageNumber = Number(pageNo);
let finalPath = `${this.apiRoute}?pageNumber=${this.currentPageNumber}&recordsPerPage=${this.recordsPerPage}`;
// add search term only if search available
if (this.searchTerm && this.searchTerm.length) {
finalPath = `${finalPath}&searchTerm=${this.searchTerm}`;
}
this.http.get(finalPath).subscribe(
(response: any) => {
this.totalRecordsCount = response.count;
this.responseData.emit(response.data);
this.totalPages = Math.ceil(response.count / this.recordsPerPage);
this.setPagination(this.currentPageNumber);
this.loading.emit(false);
},
(error) => {
this.loading.emit(false);
alert(error.message);
}
);
}
// Set pagination data and pager data
setPagination(pageNo: any) {
pageNo = Number(pageNo);
this.currentPageNumber = pageNo;
this.pager = this.pagerService.getPager(
this.totalRecordsCount,
pageNo,
this.recordsPerPage
);
}
// Watch for changes: [searchTerm & recordsPerPage]
ngOnChanges(changes: { [propName: string]: SimpleChange }): void {
const term = changes['searchTerm'] && changes['searchTerm'].currentValue;
const recordsPerPage =
changes['recordsPerPage'] && changes['recordsPerPage'].currentValue;
if (term) {
this.getData(this.currentPageNumber);
}
if (recordsPerPage) {
this.getData(this.currentPageNumber);
}
}
// Track by
trackByFn(index: any, item: any) {
return item; // or item.id
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment