pagination.go 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package util
  2. const (
  3. // DefaultPerPage .
  4. DefaultPerPage = 20
  5. )
  6. // SimplePage calculate "from", "to" without total_counts
  7. // "from" index start from 1
  8. func (p *Pagination) SimplePage() (from int64, to int64) {
  9. if p.CurPage == 0 || p.PerPage == 0 {
  10. p.CurPage, p.PerPage = 1, DefaultPerPage
  11. }
  12. from = (p.CurPage-1)*p.PerPage + 1
  13. to = from + p.PerPage - 1
  14. return
  15. }
  16. // Page calculate "from", "to" with total_counts
  17. // index start from 1
  18. func (p *Pagination) Page(total int64) (from int64, to int64) {
  19. if p.CurPage == 0 {
  20. p.CurPage = 1
  21. }
  22. if p.PerPage == 0 {
  23. p.PerPage = DefaultPerPage
  24. }
  25. if total == 0 || total < p.PerPage*(p.CurPage-1) {
  26. return
  27. }
  28. if total <= p.PerPage {
  29. return 1, total
  30. }
  31. from = (p.CurPage-1)*p.PerPage + 1
  32. if (total - from + 1) < p.PerPage {
  33. return from, total
  34. }
  35. return from, from + p.PerPage - 1
  36. }
  37. // VagueOffsetLimit calculate "offset", "limit" without total_counts
  38. func (p *Pagination) VagueOffsetLimit() (offset int64, limit int64) {
  39. from, to := p.SimplePage()
  40. if to == 0 || from == 0 {
  41. return 0, 0
  42. }
  43. return from - 1, to - from + 1
  44. }
  45. // OffsetLimit calculate "offset" and "start" with total_counts
  46. func (p *Pagination) OffsetLimit(total int64) (offset int64, limit int64) {
  47. from, to := p.Page(total)
  48. if to == 0 || from == 0 {
  49. return 0, 0
  50. }
  51. return from - 1, to - from + 1
  52. }
  53. // Pagination perform page algorithm
  54. type Pagination struct {
  55. CurPage int64
  56. PerPage int64
  57. }