titipata / penn-events-calendar

University of Pennsylvania events with search and recommendation engine
http://35.160.123.103/
MIT License
11 stars 3 forks source link

Pagination to improve speed of the loading #152

Closed titipata closed 4 years ago

titipata commented 4 years ago

@bluenex I added an endpoint for pagination which can be queried using

http://localhost:8888/api/pagination?page=1

You can try switching frontend to query from this endpoint. The only thing that we don't have is the number of pagination pages.

bluenex commented 4 years ago

http://localhost:8888/api/pagination?page=1

This could return a json payload like:

{
  "page": 1,
  "total": 22,
  "data": [...]
}
titipata commented 4 years ago

I tested it locally and it works perfectly.