From 016dd4a69a765061bb3da8490d3cac6ec47a91eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bj=C3=B8rn=20Erik=20Pedersen?= Date: Mon, 23 Jul 2018 20:19:32 +0200 Subject: [PATCH] Add Page.FirstSection It was added and then removed by accident some time ago. Let us add it again, as it is useful. --- hugolib/site_sections.go | 23 +++++++++++++++++++++++ hugolib/site_sections_test.go | 2 ++ 2 files changed, 25 insertions(+) diff --git a/hugolib/site_sections.go b/hugolib/site_sections.go index b87388c5..2a92a342 100644 --- a/hugolib/site_sections.go +++ b/hugolib/site_sections.go @@ -58,6 +58,29 @@ func (p *Page) CurrentSection() *Page { return v.parent } +// FirstSection returns the section on level 1 below home, e.g. "/docs". +// For the home page, this will return itself. +func (p *Page) FirstSection() *Page { + v := p + if v.origOnCopy != nil { + v = v.origOnCopy + } + + if v.parent == nil || v.parent.IsHome() { + return v + } + + parent := v.parent + for { + current := parent + parent = parent.parent + if parent == nil || parent.IsHome() { + return current + } + } + +} + // InSection returns whether the given page is in the current section. // Note that this will always return false for pages that are // not either regular, home or section pages. diff --git a/hugolib/site_sections_test.go b/hugolib/site_sections_test.go index 603f2898..bfec623e 100644 --- a/hugolib/site_sections_test.go +++ b/hugolib/site_sections_test.go @@ -176,6 +176,7 @@ PAG|{{ .Title }}|{{ $sect.InSection . }} active, err := home.InSection(home) assert.NoError(err) assert.True(active) + assert.Equal(p, p.FirstSection()) }}, {"l1", func(p *Page) { assert.Equal("L1s", p.title) @@ -249,6 +250,7 @@ PAG|{{ .Title }}|{{ $sect.InSection . }} isAncestor, err = p.IsAncestor(l1) assert.NoError(err) assert.False(isAncestor) + assert.Equal(l1, p.FirstSection()) }}, {"perm a,link", func(p *Page) { -- 2.30.2