Change PaginationBinder interface

- Fix typo
master
David Vogel 12 months ago
parent c149bbfc06
commit 60823564d4

@ -1,26 +1,26 @@
package navigation
// PaginationBinder is an interface that everything that every type that wants to bind to an pagination component must implement.
// PaginationBinder is an interface that everything that every type that wants to bind to a pagination component must implement.
type PaginationBinder interface {
Page() int // Page returns the current page, as a 1-based index. A value of 0 means there is no active page.
Pages() int // Pages returns the total number of pages.
SetPage(page int) // SetPage changes the current page as a 1-based index. A value of 0 means there is no active page.
PaginationPage() int // Page returns the current page, as a 1-based index. A value of 0 means there is no active page.
PaginationPages() int // Pages returns the total number of pages.
SetPaginationPage(page int) // SetPage changes the current page as a 1-based index. A value of 0 means there is no active page.
}
// PaginationInfo implements the PaginationBinder interface and represents the current state of a pagination component.
type PaginationInfo struct {
CurrentPage int // The current page as a 1-based index. A value of 0 means there is no current page.
TotalPages int // The number of total pages.
Page int // The current page as a 1-based index. A value of 0 means there is no current page.
Pages int // The number of total pages.
}
func (p *PaginationInfo) Page() int {
return p.CurrentPage
func (p *PaginationInfo) PaginationPage() int {
return p.Page
}
func (p *PaginationInfo) Pages() int {
return p.TotalPages
func (p *PaginationInfo) PaginationPages() int {
return p.Pages
}
func (p *PaginationInfo) SetPage(page int) {
p.CurrentPage = page
func (p *PaginationInfo) SetPaginationPage(page int) {
p.Page = page
}

@ -20,20 +20,23 @@ type paginationButtonInfo struct {
Class string
}
// Page returns the currently selected page as a 1-based index.
// A result of 0 means there is no selected page.
func (c *Pagination) Page() int {
if c.Bind == nil {
return 0
}
return c.Bind.Page()
return c.Bind.PaginationPage()
}
// Pages returns the total page number that this pagination component shows.
func (c *Pagination) Pages() int {
if c.Bind == nil {
return 0
}
return c.Bind.Pages()
return c.Bind.PaginationPages()
}
func (c *Pagination) handleClickPrev(event input.ClickEvent) {
@ -52,15 +55,15 @@ func (c *Pagination) handleClickPage(event input.ClickEvent, page int) {
}
if c.Bind != nil {
c.Bind.SetPage(page)
c.Bind.SetPaginationPage(page)
}
if c.Paginate != nil {
c.Paginate.PaginateHandle(PaginateEvent{
DOMEvent: event,
PaginationInfo: PaginationInfo{
CurrentPage: page,
TotalPages: pages,
Page: page,
Pages: pages,
},
})
}

@ -12,8 +12,8 @@ type PageLayout struct {
}
func (c *PageLayout) Init(ctx vugu.InitCtx) {
c.Pagination.CurrentPage = 2
c.Pagination.TotalPages = 10
c.Pagination.Page = 2
c.Pagination.Pages = 10
}
func (c *PageLayout) handlePagination(event navigation.PaginateEvent) {

Loading…
Cancel
Save