2019-04-20 09:45:19 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-20 09:45:19 +05:30
|
|
|
|
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
2022-04-03 15:16:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/paginator"
|
2019-04-20 09:45:19 +05:30
|
|
|
)
|
|
|
|
|
2022-04-03 15:16:48 +05:30
|
|
|
// Pagination provides a pagination via paginator.Paginator and additional configurations for the link params used in rendering
|
2019-04-20 09:45:19 +05:30
|
|
|
type Pagination struct {
|
2022-04-03 15:16:48 +05:30
|
|
|
Paginater *paginator.Paginator
|
2019-04-20 09:45:19 +05:30
|
|
|
urlParams []string
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewPagination creates a new instance of the Pagination struct
|
2021-12-20 10:11:31 +05:30
|
|
|
func NewPagination(total, page, issueNum, numPages int) *Pagination {
|
2019-04-20 09:45:19 +05:30
|
|
|
p := &Pagination{}
|
2022-04-03 15:16:48 +05:30
|
|
|
p.Paginater = paginator.New(total, page, issueNum, numPages)
|
2019-04-20 09:45:19 +05:30
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddParam adds a value from context identified by ctxKey as link param under a given paramKey
|
2021-12-20 10:11:31 +05:30
|
|
|
func (p *Pagination) AddParam(ctx *Context, paramKey, ctxKey string) {
|
2019-04-20 09:45:19 +05:30
|
|
|
_, exists := ctx.Data[ctxKey]
|
|
|
|
if !exists {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
paramData := fmt.Sprintf("%v", ctx.Data[ctxKey]) // cast interface{} to string
|
|
|
|
urlParam := fmt.Sprintf("%s=%v", url.QueryEscape(paramKey), url.QueryEscape(paramData))
|
|
|
|
p.urlParams = append(p.urlParams, urlParam)
|
|
|
|
}
|
|
|
|
|
2020-11-08 22:51:54 +05:30
|
|
|
// AddParamString adds a string parameter directly
|
2021-12-20 10:11:31 +05:30
|
|
|
func (p *Pagination) AddParamString(key, value string) {
|
2020-11-08 22:51:54 +05:30
|
|
|
urlParam := fmt.Sprintf("%s=%v", url.QueryEscape(key), url.QueryEscape(value))
|
|
|
|
p.urlParams = append(p.urlParams, urlParam)
|
|
|
|
}
|
|
|
|
|
2019-04-20 09:45:19 +05:30
|
|
|
// GetParams returns the configured URL params
|
|
|
|
func (p *Pagination) GetParams() template.URL {
|
2019-06-13 01:11:28 +05:30
|
|
|
return template.URL(strings.Join(p.urlParams, "&"))
|
2019-04-20 09:45:19 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
// SetDefaultParams sets common pagination params that are often used
|
|
|
|
func (p *Pagination) SetDefaultParams(ctx *Context) {
|
|
|
|
p.AddParam(ctx, "sort", "SortType")
|
|
|
|
p.AddParam(ctx, "q", "Keyword")
|
2022-04-03 15:16:48 +05:30
|
|
|
// do not add any more uncommon params here!
|
2021-01-27 15:30:35 +05:30
|
|
|
p.AddParam(ctx, "t", "queryType")
|
2019-04-20 09:45:19 +05:30
|
|
|
}
|