2019-04-20 06:15:19 +02:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-04-20 06:15:19 +02:00
|
|
|
|
|
|
|
package context
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"html/template"
|
2024-12-11 14:33:24 +08:00
|
|
|
"net/http"
|
2019-04-20 06:15:19 +02:00
|
|
|
"net/url"
|
|
|
|
"strings"
|
|
|
|
|
2022-04-03 17:46:48 +08:00
|
|
|
"code.gitea.io/gitea/modules/paginator"
|
2019-04-20 06:15:19 +02:00
|
|
|
)
|
|
|
|
|
2022-04-03 17:46:48 +08:00
|
|
|
// Pagination provides a pagination via paginator.Paginator and additional configurations for the link params used in rendering
|
2019-04-20 06:15:19 +02:00
|
|
|
type Pagination struct {
|
2022-04-03 17:46:48 +08:00
|
|
|
Paginater *paginator.Paginator
|
2019-04-20 06:15:19 +02:00
|
|
|
urlParams []string
|
|
|
|
}
|
|
|
|
|
2023-03-14 13:11:38 +08:00
|
|
|
// NewPagination creates a new instance of the Pagination struct.
|
|
|
|
// "pagingNum" is "page size" or "limit", "current" is "page"
|
|
|
|
func NewPagination(total, pagingNum, current, numPages int) *Pagination {
|
2019-04-20 06:15:19 +02:00
|
|
|
p := &Pagination{}
|
2023-03-14 13:11:38 +08:00
|
|
|
p.Paginater = paginator.New(total, pagingNum, current, numPages)
|
2019-04-20 06:15:19 +02:00
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
2024-12-11 14:33:24 +08:00
|
|
|
func (p *Pagination) AddParamFromRequest(req *http.Request) {
|
|
|
|
for key, values := range req.URL.Query() {
|
2024-12-30 09:57:38 +08:00
|
|
|
if key == "page" || len(values) == 0 || (len(values) == 1 && values[0] == "") {
|
2024-12-11 14:33:24 +08:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
for _, value := range values {
|
2024-12-30 09:57:38 +08:00
|
|
|
urlParam := fmt.Sprintf("%s=%v", url.QueryEscape(key), url.QueryEscape(value))
|
2024-12-11 14:33:24 +08:00
|
|
|
p.urlParams = append(p.urlParams, urlParam)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-20 06:15:19 +02:00
|
|
|
// GetParams returns the configured URL params
|
|
|
|
func (p *Pagination) GetParams() template.URL {
|
2019-06-12 21:41:28 +02:00
|
|
|
return template.URL(strings.Join(p.urlParams, "&"))
|
2019-04-20 06:15:19 +02:00
|
|
|
}
|