pagination

package
v0.0.0-...-f43f97b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 25, 2022 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// DefaultPageSize specifies the default page size
	DefaultPageSize = 100
	// MaxPageSize specifies the maximum page size
	MaxPageSize = 10000
	// PageVar specifies the query parameter name for page number
	PageVar = "page"
	// PageSizeVar specifies the query parameter name for page size
	PageSizeVar = "pageSize"
)

Functions

func GetPaginationParametersFromRequest

func GetPaginationParametersFromRequest(g *gin.Context) (pageIndex, pageSize int)

Types

type Pages

type Pages struct {
	Page       int         `json:"page"`
	PageSize   int         `json:"pageSize"`
	PageCount  int         `json:"pageCount"`
	TotalCount int         `json:"totalCount"`
	Items      interface{} `json:"items"`
}

Pages represents a paginated list of data items.

func New

func New(page, pageSize, total int) *Pages

New creates a new Pages instance. The page parameter is 1-based and refers to the current page index/number. The pageSize parameter refers to the number of items on each page. And the total parameter specifies the total number of data items. If total is less than 0, it means total is unknown.

func NewFromGinRequest

func NewFromGinRequest(g *gin.Context, count int) *Pages

func NewFromRequest

func NewFromRequest(req *http.Request, count int) *Pages

NewFromRequest creates a Pages object using the query parameters found in the given HTTP request. count stands for the total number of items. Use -1 if this is unknown.

func (*Pages) BuildLinkHeader

func (p *Pages) BuildLinkHeader(baseURL string, defaultPageSize int) string

BuildLinkHeader returns an HTTP header containing the links about the pagination.

func (p *Pages) BuildLinks(baseURL string, defaultPageSize int) [4]string

BuildLinks returns the first, prev, next, and last links corresponding to the pagination. A link could be an empty string if it is not needed. For example, if the pagination is at the first page, then both first and prev links will be empty.

func (*Pages) Limit

func (p *Pages) Limit() int

Limit returns the LIMIT value that can be used in a SQL statement.

func (*Pages) Offset

func (p *Pages) Offset() int

Offset returns the OFFSET value that can be used in a SQL statement.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL