Description
Nature of issue?
- New feature request
New feature details:
Currently, the sketches are being fetched form the api and being displayed at once.
This would work fine if we have only a few sketches but would definitely fail when the scale is increased.
So, I think implementation of Pagination is the way to tackle this.
We should implement in both front-end and back-end, only sending a few sketches per request and displaying them in pages
But, there is a catch!!
Currently, the search functionality for sketches is being done only in the front-end. I.e, we search from the sketches set in the state and show the results.
But, if we implement pagination, the results should be fetched from the api and be displayed in the pagination fashion.
The only tradeoff I see here is that we loose live-searching functionality and we need to search only when the user hits enter in the searchBox.
@catarak & others, Please share your thoughts!!