Angular 6 Material table Server and Client side pagination









up vote
1
down vote

favorite
1












I'd like to ask for some help. I have to make a generic angular material datatable, that gets it's data from a Jira webservice. My problem is that for some cases I'll have to do the pagination on the client site and for some cases I'll have to do it on Jira, because the maximum result that it can return is set to 1000 elements.



The reason why I'll have to do pagination on the client side, is that in many cases a chart is embedded next to the datatbale, what'll have to work with all available elements, not just the ones that are visible on the material table.



What I'd like to avoid is to have more parameters that check if either I'll have to use client/server side pagination.



The related code:






import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;







What this basically does is that on any event change (sorting, paging and on a toggleswitch) an HTTP request is sent to the Jira backend. In most cases the maximum result will be 10-20 results, but I have a screen where I'll have to fetch 1000-3000 results. In the later case server side pagination is the correct approach I know, but if the results are below reasonable number, I'd like to use client side pagination, again because the Chart uses tha data from the material table.



How should I approach this problem, without adding another @Input to the table component?



Thank you guys in advance!



Edit
Removed timeouts from code to avoid confusion










share|improve this question























  • So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
    – Antoniossss
    Nov 10 at 9:57











  • But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
    – TKrisee
    Nov 10 at 10:05















up vote
1
down vote

favorite
1












I'd like to ask for some help. I have to make a generic angular material datatable, that gets it's data from a Jira webservice. My problem is that for some cases I'll have to do the pagination on the client site and for some cases I'll have to do it on Jira, because the maximum result that it can return is set to 1000 elements.



The reason why I'll have to do pagination on the client side, is that in many cases a chart is embedded next to the datatbale, what'll have to work with all available elements, not just the ones that are visible on the material table.



What I'd like to avoid is to have more parameters that check if either I'll have to use client/server side pagination.



The related code:






import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;







What this basically does is that on any event change (sorting, paging and on a toggleswitch) an HTTP request is sent to the Jira backend. In most cases the maximum result will be 10-20 results, but I have a screen where I'll have to fetch 1000-3000 results. In the later case server side pagination is the correct approach I know, but if the results are below reasonable number, I'd like to use client side pagination, again because the Chart uses tha data from the material table.



How should I approach this problem, without adding another @Input to the table component?



Thank you guys in advance!



Edit
Removed timeouts from code to avoid confusion










share|improve this question























  • So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
    – Antoniossss
    Nov 10 at 9:57











  • But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
    – TKrisee
    Nov 10 at 10:05













up vote
1
down vote

favorite
1









up vote
1
down vote

favorite
1






1





I'd like to ask for some help. I have to make a generic angular material datatable, that gets it's data from a Jira webservice. My problem is that for some cases I'll have to do the pagination on the client site and for some cases I'll have to do it on Jira, because the maximum result that it can return is set to 1000 elements.



The reason why I'll have to do pagination on the client side, is that in many cases a chart is embedded next to the datatbale, what'll have to work with all available elements, not just the ones that are visible on the material table.



What I'd like to avoid is to have more parameters that check if either I'll have to use client/server side pagination.



The related code:






import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;







What this basically does is that on any event change (sorting, paging and on a toggleswitch) an HTTP request is sent to the Jira backend. In most cases the maximum result will be 10-20 results, but I have a screen where I'll have to fetch 1000-3000 results. In the later case server side pagination is the correct approach I know, but if the results are below reasonable number, I'd like to use client side pagination, again because the Chart uses tha data from the material table.



How should I approach this problem, without adding another @Input to the table component?



Thank you guys in advance!



Edit
Removed timeouts from code to avoid confusion










share|improve this question















I'd like to ask for some help. I have to make a generic angular material datatable, that gets it's data from a Jira webservice. My problem is that for some cases I'll have to do the pagination on the client site and for some cases I'll have to do it on Jira, because the maximum result that it can return is set to 1000 elements.



The reason why I'll have to do pagination on the client side, is that in many cases a chart is embedded next to the datatbale, what'll have to work with all available elements, not just the ones that are visible on the material table.



What I'd like to avoid is to have more parameters that check if either I'll have to use client/server side pagination.



The related code:






import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;







What this basically does is that on any event change (sorting, paging and on a toggleswitch) an HTTP request is sent to the Jira backend. In most cases the maximum result will be 10-20 results, but I have a screen where I'll have to fetch 1000-3000 results. In the later case server side pagination is the correct approach I know, but if the results are below reasonable number, I'd like to use client side pagination, again because the Chart uses tha data from the material table.



How should I approach this problem, without adding another @Input to the table component?



Thank you guys in advance!



Edit
Removed timeouts from code to avoid confusion






import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;







import 
Component,
Input,
ViewChild,
AfterViewInit,
ChangeDetectionStrategy,
ChangeDetectorRef from '@angular/core';
import MatPaginator, MatSort, MatTableDataSource, MatSlideToggle from '@angular/material';
import TableService from './table.service';
import merge from 'rxjs';

@Component(
selector: 'app-table-component',
templateUrl: './table.component.html',
styleUrls: ['./table.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
)
export class TableComponent implements AfterViewInit {

@Input() dataTypes: any;
@Input() columnsToDisplay: string;
@ViewChild(MatPaginator) paginator: MatPaginator;
@ViewChild(MatSort) sort: MatSort;
@ViewChild(MatSlideToggle) toggle: MatSlideToggle;
private dataSource: any = new MatTableDataSource<any>();
private currentPage;
public selectedTab: any;
public resultsLength: number;


constructor(private service: TableService, private ref: ChangeDetectorRef)

ngAfterViewInit()
this.service.changeFilter(
previousPageIndex: 0,
pageIndex: this.paginator._pageIndex,
pageSize: 5,
length: this.paginator._length,
active: this.sort.active,
direction: 'asc',
checked: false
);
merge(this.paginator.page, this.sort.sortChange, this.toggle.change).subscribe(res =>
this.currentPage = this.paginator.pageIndex;
this.service.changeFilter(res);
)

this.service.dataChanged$.subscribe(res =>
this.dataSource.paginator = this.paginator;
this.dataSource.data = res.tickets;
this.dataSource.paginator.pageIndex = this.currentPage;
this.dataSource.paginator.length = res.results;








angular angular-material angular6 material angular-material-table






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 10:08

























asked Nov 10 at 9:19









TKrisee

165




165











  • So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
    – Antoniossss
    Nov 10 at 9:57











  • But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
    – TKrisee
    Nov 10 at 10:05

















  • So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
    – Antoniossss
    Nov 10 at 9:57











  • But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
    – TKrisee
    Nov 10 at 10:05
















So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
– Antoniossss
Nov 10 at 9:57





So cant you just always fetch that "reasonable" page size and paginate on client side ? Besides, its kind of simple if-then scenario to me - just write the code for it. Why are you using timeouts your subscribtion is a mystery to me .
– Antoniossss
Nov 10 at 9:57













But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
– TKrisee
Nov 10 at 10:05





But in that case how do I tell Jira, when a pagination should happen? The timeouts are there because I tried different approaches, what didn't work, but I'll remove them to avoid confusions
– TKrisee
Nov 10 at 10:05


















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237569%2fangular-6-material-table-server-and-client-side-pagination%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.





Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


Please pay close attention to the following guidance:


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53237569%2fangular-6-material-table-server-and-client-side-pagination%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to how show current date and time by default on contact form 7 in WordPress without taking input from user in datetimepicker

Syphilis

Darth Vader #20