1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 23:24:39 +01:00
gojekyll/plugins/paginate.go
2021-06-16 14:51:59 +08:00

53 lines
1.3 KiB
Go

package plugins
import (
"fmt"
"strings"
)
type paginatePlugin struct{ plugin }
func init() {
register("jekyll-paginate", &paginatePlugin{})
}
func (p *paginatePlugin) ModifyRenderContext(s Site, m map[string]interface{}) error {
m["paginator"] = createPaginator(1, 5, s.Posts())
return nil
}
func (p *paginatePlugin) PostReadSite(s Site) error {
// s.AddDocument(newTemplateDoc(s, "/sitemap.xml", sitemapTemplateSource), true)
// s.AddDocument(newTemplateDoc(s, "/robots.txt", `Sitemap: {{ "sitemap.xml" | absolute_url }}`), true)
// iterate over pagesets
return nil
}
func createPaginator(n, perPage int, posts []Page) map[string]interface{} {
pageCount := (len(posts) + perPage - 1) / perPage
paginatePath := "/blog/page:num/"
pagePath := func(n int) string {
return strings.Replace(paginatePath, ":num", fmt.Sprint(n), -1)
}
m := map[string]interface{}{
"page": n,
"per_page": perPage,
"posts": posts,
"total_posts": len(posts),
"total_pages": pageCount,
"previous_page": nil,
"previous_page_path": nil,
"next_page": nil,
"next_page_path": nil,
}
if n > 1 {
m["previous_page"] = n - 1
m["previous_page_path"] = pagePath(n - 1)
}
if n < pageCount {
m["next_page"] = n + 1
m["next_page_path"] = pagePath(n + 1)
}
return m
}