1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-12 06:30:40 +00:00

Adapter: utils

This commit is contained in:
Ming Deng
2020-09-05 18:07:42 +08:00
parent 35f1bd2119
commit f4a43814be
25 changed files with 1455 additions and 0 deletions

View File

@ -0,0 +1,26 @@
// Copyright 2014 beego Author. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pagination
import (
"github.com/astaxie/beego/pkg/adapter/context"
beecontext "github.com/astaxie/beego/pkg/server/web/context"
"github.com/astaxie/beego/pkg/server/web/pagination"
)
// SetPaginator Instantiates a Paginator and assigns it to context.Input.Data("paginator").
func SetPaginator(ctx *context.Context, per int, nums int64) (paginator *Paginator) {
return (*Paginator)(pagination.SetPaginator((*beecontext.Context)(ctx), per, nums))
}

View File

@ -0,0 +1,58 @@
/*
Package pagination provides utilities to setup a paginator within the
context of a http request.
Usage
In your beego.Controller:
package controllers
import "github.com/astaxie/beego/utils/pagination"
type PostsController struct {
beego.Controller
}
func (this *PostsController) ListAllPosts() {
// sets this.Data["paginator"] with the current offset (from the url query param)
postsPerPage := 20
paginator := pagination.SetPaginator(this.Ctx, postsPerPage, CountPosts())
// fetch the next 20 posts
this.Data["posts"] = ListPostsByOffsetAndLimit(paginator.Offset(), postsPerPage)
}
In your view templates:
{{if .paginator.HasPages}}
<ul class="pagination pagination">
{{if .paginator.HasPrev}}
<li><a href="{{.paginator.PageLinkFirst}}">{{ i18n .Lang "paginator.first_page"}}</a></li>
<li><a href="{{.paginator.PageLinkPrev}}">&laquo;</a></li>
{{else}}
<li class="disabled"><a>{{ i18n .Lang "paginator.first_page"}}</a></li>
<li class="disabled"><a>&laquo;</a></li>
{{end}}
{{range $index, $page := .paginator.Pages}}
<li{{if $.paginator.IsActive .}} class="active"{{end}}>
<a href="{{$.paginator.PageLink $page}}">{{$page}}</a>
</li>
{{end}}
{{if .paginator.HasNext}}
<li><a href="{{.paginator.PageLinkNext}}">&raquo;</a></li>
<li><a href="{{.paginator.PageLinkLast}}">{{ i18n .Lang "paginator.last_page"}}</a></li>
{{else}}
<li class="disabled"><a>&raquo;</a></li>
<li class="disabled"><a>{{ i18n .Lang "paginator.last_page"}}</a></li>
{{end}}
</ul>
{{end}}
See also
http://beego.me/docs/mvc/view/page.md
*/
package pagination

View File

@ -0,0 +1,112 @@
// Copyright 2014 beego Author. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package pagination
import (
"net/http"
"github.com/astaxie/beego/pkg/infrastructure/utils/pagination"
)
// Paginator within the state of a http request.
type Paginator pagination.Paginator
// PageNums Returns the total number of pages.
func (p *Paginator) PageNums() int {
return (*pagination.Paginator)(p).PageNums()
}
// Nums Returns the total number of items (e.g. from doing SQL count).
func (p *Paginator) Nums() int64 {
return (*pagination.Paginator)(p).Nums()
}
// SetNums Sets the total number of items.
func (p *Paginator) SetNums(nums interface{}) {
(*pagination.Paginator)(p).SetNums(nums)
}
// Page Returns the current page.
func (p *Paginator) Page() int {
return (*pagination.Paginator)(p).Page()
}
// Pages Returns a list of all pages.
//
// Usage (in a view template):
//
// {{range $index, $page := .paginator.Pages}}
// <li{{if $.paginator.IsActive .}} class="active"{{end}}>
// <a href="{{$.paginator.PageLink $page}}">{{$page}}</a>
// </li>
// {{end}}
func (p *Paginator) Pages() []int {
return (*pagination.Paginator)(p).Pages()
}
// PageLink Returns URL for a given page index.
func (p *Paginator) PageLink(page int) string {
return (*pagination.Paginator)(p).PageLink(page)
}
// PageLinkPrev Returns URL to the previous page.
func (p *Paginator) PageLinkPrev() (link string) {
return (*pagination.Paginator)(p).PageLinkPrev()
}
// PageLinkNext Returns URL to the next page.
func (p *Paginator) PageLinkNext() (link string) {
return (*pagination.Paginator)(p).PageLinkNext()
}
// PageLinkFirst Returns URL to the first page.
func (p *Paginator) PageLinkFirst() (link string) {
return (*pagination.Paginator)(p).PageLinkFirst()
}
// PageLinkLast Returns URL to the last page.
func (p *Paginator) PageLinkLast() (link string) {
return (*pagination.Paginator)(p).PageLinkLast()
}
// HasPrev Returns true if the current page has a predecessor.
func (p *Paginator) HasPrev() bool {
return (*pagination.Paginator)(p).HasPrev()
}
// HasNext Returns true if the current page has a successor.
func (p *Paginator) HasNext() bool {
return (*pagination.Paginator)(p).HasNext()
}
// IsActive Returns true if the given page index points to the current page.
func (p *Paginator) IsActive(page int) bool {
return (*pagination.Paginator)(p).IsActive(page)
}
// Offset Returns the current offset.
func (p *Paginator) Offset() int {
return (*pagination.Paginator)(p).Offset()
}
// HasPages Returns true if there is more than one page.
func (p *Paginator) HasPages() bool {
return (*pagination.Paginator)(p).HasPages()
}
// NewPaginator Instantiates a paginator struct for the current http request.
func NewPaginator(req *http.Request, per int, nums interface{}) *Paginator {
return (*Paginator)(pagination.NewPaginator(req, per, nums))
}