hugolib: Introduce Page.NextPage and Page.PrevPage

Introduce new page position variables in order to fix the ordering issue
of `.Next` and `.Prev` while also allowing an upgrade path via
deprecation.

`.NextInSection` becomes `.NextPageInSection`.
`.PrevInSection` becomes `.PrevPageInSection`.

`.Next` becomes a function returning `.PrevPage`.
`.Prev` becomes a function returning `.NextPage`.

Fixes #1061
This commit is contained in:
Ricardo N Feliciano 2018-09-24 18:06:29 -04:00 committed by Bjørn Erik Pedersen
parent 52ac85fbc4
commit ad705aac06
4 changed files with 37 additions and 19 deletions

View file

@ -96,11 +96,14 @@ See also `.ExpiryDate`, `.Date`, `.PublishDate`, and [`.GitInfo`][gitinfo].
.LinkTitle .LinkTitle
: access when creating links to the content. If set, Hugo will use the `linktitle` from the front matter before `title`. : access when creating links to the content. If set, Hugo will use the `linktitle` from the front matter before `title`.
.Next .Next (deprecated)
: pointer to the following content (based on the `publishdate` field in front matter). : In older Hugo versions this pointer went the wrong direction. Please use `.PrevPage` instead.
.NextPage
: Pointer to the next [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .NextPage}}{{.NextPage.Permalink}}{{end}}`.
.NextInSection .NextInSection
: pointer to the following content within the same section (based on `publishdate` field in front matter). : Pointer to the next [regular page](/variables/site/#site-pages) within the same section. Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{if .NextInSection}}{{.NextInSection.Permalink}}{{end}}`.
.OutputFormats .OutputFormats
: contains all formats, including the current format, for a given page. Can be combined the with [`.Get` function](/functions/get/) to grab a specific format. (See [Output Formats](/templates/output-formats/).) : contains all formats, including the current format, for a given page. Can be combined the with [`.Get` function](/functions/get/) to grab a specific format. (See [Output Formats](/templates/output-formats/).)
@ -118,11 +121,14 @@ See also `.ExpiryDate`, `.Date`, `.PublishDate`, and [`.GitInfo`][gitinfo].
.PlainWords .PlainWords
: the Page content stripped of HTML as a `[]string` using Go's [`strings.Fields`](https://golang.org/pkg/strings/#Fields) to split `.Plain` into a slice. : the Page content stripped of HTML as a `[]string` using Go's [`strings.Fields`](https://golang.org/pkg/strings/#Fields) to split `.Plain` into a slice.
.Prev .Prev (deprecated)
: Pointer to the previous content (based on `publishdate` in front matter). : In older Hugo versions this pointer went the wrong direction. Please use `.NextPage` instead.
.PrevPage
: Pointer to the previous [regular page](/variables/site/#site-pages) (sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath)). Example: `{{if .PrevPage}}{{.PrevPage.Permalink}}{{end}}`.
.PrevInSection .PrevInSection
: Pointer to the previous content within the same section (based on `publishdate` in front matter). For example, `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`. : Pointer to the previous [regular page](/variables/site/#site-pages) within the same section. Pages are sorted by Hugo's [default sort](/templates/lists#default-weight-date-linktitle-filepath). Example: `{{if .PrevInSection}}{{.PrevInSection.Permalink}}{{end}}`.
.PublishDate .PublishDate
: the date on which the content was or will be published; `.Publishdate` pulls from the `publishdate` field in a content's front matter. See also `.ExpiryDate`, `.Date`, and `.Lastmod`. : the date on which the content was or will be published; `.Publishdate` pulls from the `publishdate` field in a content's front matter. See also `.ExpiryDate`, `.Date`, and `.Lastmod`.

View file

@ -268,7 +268,7 @@ func doTestMultiSitesBuild(t *testing.T, configTemplate, configSuffix string) {
require.Equal(t, "/superbob", doc3.URL(), "invalid url, was specified on doc3") require.Equal(t, "/superbob", doc3.URL(), "invalid url, was specified on doc3")
b.AssertFileContent("public/superbob/index.html", "doc3|Hello|en") b.AssertFileContent("public/superbob/index.html", "doc3|Hello|en")
require.Equal(t, doc2.Next, doc3, "doc3 should follow doc2, in .Next") require.Equal(t, doc2.PrevPage, doc3, "doc3 should follow doc2, in .PrevPage")
doc1fr := doc1en.Translations()[0] doc1fr := doc1en.Translations()[0]
permalink = doc1fr.Permalink() permalink = doc1fr.Permalink()
@ -398,16 +398,16 @@ func doTestMultiSitesBuild(t *testing.T, configTemplate, configSuffix string) {
require.Equal(t, template.URL(""), enSite.RegularPages[0].RSSLink()) require.Equal(t, template.URL(""), enSite.RegularPages[0].RSSLink())
// Issue #3108 // Issue #3108
next := enSite.RegularPages[0].Next prevPage := enSite.RegularPages[0].PrevPage
require.NotNil(t, next) require.NotNil(t, prevPage)
require.Equal(t, KindPage, next.Kind) require.Equal(t, KindPage, prevPage.Kind)
for { for {
if next == nil { if prevPage == nil {
break break
} }
require.Equal(t, KindPage, next.Kind) require.Equal(t, KindPage, prevPage.Kind)
next = next.Next prevPage = prevPage.PrevPage
} }
// Check bundles // Check bundles

View file

@ -505,8 +505,8 @@ type PageMeta struct {
} }
type Position struct { type Position struct {
Prev *Page PrevPage *Page
Next *Page NextPage *Page
PrevInSection *Page PrevInSection *Page
NextInSection *Page NextInSection *Page
} }
@ -2308,3 +2308,15 @@ func (p *Page) pathOrTitle() string {
} }
return p.title return p.title
} }
func (p *Page) Next() *Page {
// TODO Remove in Hugo 0.52
helpers.Deprecated("Page", ".Next", "Use .PrevPage (yes, not .NextPage).", false)
return p.PrevPage
}
func (p *Page) Prev() *Page {
// TODO Remove in Hugo 0.52
helpers.Deprecated("Page", ".Prev", "Use .NextPage (yes, not .PrevPage).", false)
return p.NextPage
}

View file

@ -990,12 +990,12 @@ func (s *Site) setupSitePages() {
var siteLastChange time.Time var siteLastChange time.Time
for i, page := range s.RegularPages { for i, page := range s.RegularPages {
if i < len(s.RegularPages)-1 { if i > 0 {
page.Next = s.RegularPages[i+1] page.NextPage = s.RegularPages[i-1]
} }
if i > 0 { if i < len(s.RegularPages)-1 {
page.Prev = s.RegularPages[i-1] page.PrevPage = s.RegularPages[i+1]
} }
// Determine Site.Info.LastChange // Determine Site.Info.LastChange