1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00

feat(util/gpage): marked deprecated (#4230)

This commit is contained in:
John Guo 2025-04-02 19:56:28 +08:00 committed by GitHub
parent fee38b4531
commit 1534abdb05
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

@ -1 +1 @@
Subproject commit b57e4575ce971e6a6e581b1de0e77eccf61705c4 Subproject commit f15e0c1978935dbe44ae6a7b8fe91de53abf1beb

View File

@ -17,10 +17,12 @@ import (
// GetPage creates and returns the pagination object for given `totalSize` and `pageSize`. // GetPage creates and returns the pagination object for given `totalSize` and `pageSize`.
// NOTE THAT the page parameter name from clients is constantly defined as gpage.DefaultPageName // NOTE THAT the page parameter name from clients is constantly defined as gpage.DefaultPageName
// for simplification and convenience. // for simplification and convenience.
//
// Deprecated: wrap this pagination html content in business layer.
func (r *Request) GetPage(totalSize, pageSize int) *gpage.Page { func (r *Request) GetPage(totalSize, pageSize int) *gpage.Page {
// It must have Router object attribute. // It must have Router object attribute.
if r.Router == nil { if r.Router == nil {
panic("Router object not found") panic("router object not found")
} }
var ( var (
url = *r.URL url = *r.URL

View File

@ -5,6 +5,8 @@
// You can obtain one at https://github.com/gogf/gf. // You can obtain one at https://github.com/gogf/gf.
// Package gpage provides useful paging functionality for web pages. // Package gpage provides useful paging functionality for web pages.
//
// Deprecated: wrap this pagination html content in business layer.
package gpage package gpage
import ( import (
@ -18,6 +20,8 @@ import (
// Page is the pagination implementer. // Page is the pagination implementer.
// All the attributes are public, you can change them when necessary. // All the attributes are public, you can change them when necessary.
//
// Deprecated: wrap this pagination html content in business layer.
type Page struct { type Page struct {
TotalSize int // Total size. TotalSize int // Total size.
TotalPage int // Total page, which is automatically calculated. TotalPage int // Total page, which is automatically calculated.
@ -48,6 +52,8 @@ const (
// /user/list/{.page}, /user/list/{.page}.html, /user/list?page={.page}&type=1, etc. // /user/list/{.page}, /user/list/{.page}.html, /user/list?page={.page}&type=1, etc.
// The build-in variable in `urlTemplate` "{.page}" specifies the page number, which will be replaced by certain // The build-in variable in `urlTemplate` "{.page}" specifies the page number, which will be replaced by certain
// page number when producing. // page number when producing.
//
// Deprecated: wrap this pagination html content in business layer.
func New(totalSize, pageSize, currentPage int, urlTemplate string) *Page { func New(totalSize, pageSize, currentPage int, urlTemplate string) *Page {
p := &Page{ p := &Page{
LinkStyle: "GPageLink", LinkStyle: "GPageLink",