Spring cleaning of the menu code
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Mar 2016 23:29:39 +0000 (00:29 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 22 Mar 2016 23:29:39 +0000 (00:29 +0100)
hugolib/menu.go
hugolib/menu_test.go
hugolib/page.go
hugolib/site.go

index 6c3738953911ac8a83c69c1f2a2c6a176856fb06..116545a9a9ed8d1152b581c8a08c2180653f62cb 100644 (file)
@@ -21,6 +21,8 @@ import (
        "github.com/spf13/cast"
 )
 
+// MenuEntry represents a menu item defined in either Page front matter
+// or in the site config.
 type MenuEntry struct {
        URL        string
        Name       string
@@ -33,67 +35,79 @@ type MenuEntry struct {
        Children   Menu
 }
 
+// Menu is a collection of menu entries.
 type Menu []*MenuEntry
+
+// Menus is a dictionary of menus.
 type Menus map[string]*Menu
+
+// PageMenus is a dictionary of menus defined in the Pages.
 type PageMenus map[string]*MenuEntry
 
-func (me *MenuEntry) AddChild(child *MenuEntry) {
-       me.Children = append(me.Children, child)
-       me.Children.Sort()
+// addChild adds a new child to this menu entry.
+// The default sort order will then be applied.
+func (m *MenuEntry) addChild(child *MenuEntry) {
+       m.Children = append(m.Children, child)
+       m.Children.Sort()
 }
 
-func (me *MenuEntry) HasChildren() bool {
-       return me.Children != nil
+// HasChildren returns whether this menu item has any children.
+func (m *MenuEntry) HasChildren() bool {
+       return m.Children != nil
 }
 
-func (me *MenuEntry) KeyName() string {
-       if me.Identifier != "" {
-               return me.Identifier
+// KeyName returns the key used to identify this menu entry.
+func (m *MenuEntry) KeyName() string {
+       if m.Identifier != "" {
+               return m.Identifier
        }
-       return me.Name
+       return m.Name
 }
 
-func (me *MenuEntry) hopefullyUniqueID() string {
-       if me.Identifier != "" {
-               return me.Identifier
-       } else if me.URL != "" {
-               return me.URL
+func (m *MenuEntry) hopefullyUniqueID() string {
+       if m.Identifier != "" {
+               return m.Identifier
+       } else if m.URL != "" {
+               return m.URL
        } else {
-               return me.Name
+               return m.Name
        }
 }
 
-func (me *MenuEntry) IsEqual(inme *MenuEntry) bool {
-       return me.hopefullyUniqueID() == inme.hopefullyUniqueID() && me.Parent == inme.Parent
+// IsEqual returns whether the two menu entries represents the same menu entry.
+func (m *MenuEntry) IsEqual(inme *MenuEntry) bool {
+       return m.hopefullyUniqueID() == inme.hopefullyUniqueID() && m.Parent == inme.Parent
 }
 
-func (me *MenuEntry) IsSameResource(inme *MenuEntry) bool {
-       return me.URL != "" && inme.URL != "" && me.URL == inme.URL
+// IsSameResource returns whether the two menu entries points to the same
+// resource (URL).
+func (m *MenuEntry) IsSameResource(inme *MenuEntry) bool {
+       return m.URL != "" && inme.URL != "" && m.URL == inme.URL
 }
 
-func (me *MenuEntry) MarshallMap(ime map[string]interface{}) {
+func (m *MenuEntry) marshallMap(ime map[string]interface{}) {
        for k, v := range ime {
                loki := strings.ToLower(k)
                switch loki {
                case "url":
-                       me.URL = cast.ToString(v)
+                       m.URL = cast.ToString(v)
                case "weight":
-                       me.Weight = cast.ToInt(v)
+                       m.Weight = cast.ToInt(v)
                case "name":
-                       me.Name = cast.ToString(v)
+                       m.Name = cast.ToString(v)
                case "pre":
-                       me.Pre = template.HTML(cast.ToString(v))
+                       m.Pre = template.HTML(cast.ToString(v))
                case "post":
-                       me.Post = template.HTML(cast.ToString(v))
+                       m.Post = template.HTML(cast.ToString(v))
                case "identifier":
-                       me.Identifier = cast.ToString(v)
+                       m.Identifier = cast.ToString(v)
                case "parent":
-                       me.Parent = cast.ToString(v)
+                       m.Parent = cast.ToString(v)
                }
        }
 }
 
-func (m Menu) Add(me *MenuEntry) Menu {
+func (m Menu) add(me *MenuEntry) Menu {
        app := func(slice Menu, x ...*MenuEntry) Menu {
                n := len(slice) + len(x)
                if n > cap(slice) {
@@ -120,16 +134,16 @@ func (m Menu) Add(me *MenuEntry) Menu {
  */
 
 // A type to implement the sort interface for Menu
-type MenuSorter struct {
+type menuSorter struct {
        menu Menu
-       by   MenuEntryBy
+       by   menuEntryBy
 }
 
 // Closure used in the Sort.Less method.
-type MenuEntryBy func(m1, m2 *MenuEntry) bool
+type menuEntryBy func(m1, m2 *MenuEntry) bool
 
-func (by MenuEntryBy) Sort(menu Menu) {
-       ms := &MenuSorter{
+func (by menuEntryBy) Sort(menu Menu) {
+       ms := &menuSorter{
                menu: menu,
                by:   by, // The Sort method's receiver is the function (closure) that defines the sort order.
        }
@@ -146,17 +160,19 @@ var defaultMenuEntrySort = func(m1, m2 *MenuEntry) bool {
        return m1.Weight < m2.Weight
 }
 
-func (ms *MenuSorter) Len() int      { return len(ms.menu) }
-func (ms *MenuSorter) Swap(i, j int) { ms.menu[i], ms.menu[j] = ms.menu[j], ms.menu[i] }
+func (ms *menuSorter) Len() int      { return len(ms.menu) }
+func (ms *menuSorter) Swap(i, j int) { ms.menu[i], ms.menu[j] = ms.menu[j], ms.menu[i] }
 
 // Less is part of sort.Interface. It is implemented by calling the "by" closure in the sorter.
-func (ms *MenuSorter) Less(i, j int) bool { return ms.by(ms.menu[i], ms.menu[j]) }
+func (ms *menuSorter) Less(i, j int) bool { return ms.by(ms.menu[i], ms.menu[j]) }
 
+// Sort sorts the menu by weight, name and then by identifier.
 func (m Menu) Sort() Menu {
-       MenuEntryBy(defaultMenuEntrySort).Sort(m)
+       menuEntryBy(defaultMenuEntrySort).Sort(m)
        return m
 }
 
+// Limit limits the returned menu to n entries.
 func (m Menu) Limit(n int) Menu {
        if len(m) > n {
                return m[0:n]
@@ -164,20 +180,23 @@ func (m Menu) Limit(n int) Menu {
        return m
 }
 
+// ByWeight sorts the menu by the weight defined in the menu configuration.
 func (m Menu) ByWeight() Menu {
-       MenuEntryBy(defaultMenuEntrySort).Sort(m)
+       menuEntryBy(defaultMenuEntrySort).Sort(m)
        return m
 }
 
+// ByName sorts the menu by the name defined in the menu configuration.
 func (m Menu) ByName() Menu {
        title := func(m1, m2 *MenuEntry) bool {
                return m1.Name < m2.Name
        }
 
-       MenuEntryBy(title).Sort(m)
+       menuEntryBy(title).Sort(m)
        return m
 }
 
+// Reverse reverses the order of the menu entries.
 func (m Menu) Reverse() Menu {
        for i, j := 0, len(m)-1; i < j; i, j = i+1, j-1 {
                m[i], m[j] = m[j], m[i]
index 8e35fd705b341d03fc1c6c3c60fdd69cdee128f3..609a87d01fdda02c2142b9e65a75718277c80f02 100644 (file)
@@ -600,8 +600,8 @@ func TestHopefullyUniqueID(t *testing.T) {
 
 func TestAddMenuEntryChild(t *testing.T) {
        root := &MenuEntry{Weight: 1}
-       root.AddChild(&MenuEntry{Weight: 2})
-       root.AddChild(&MenuEntry{Weight: 1})
+       root.addChild(&MenuEntry{Weight: 2})
+       root.addChild(&MenuEntry{Weight: 1})
        assert.Equal(t, 2, len(root.Children))
        assert.Equal(t, 1, root.Children[0].Weight)
 }
index fa403a421c677ae3c5b7acb8d0e497e6ca2463c7..5d1b495f457516b2edc56e68d19cf228faa007ed 100644 (file)
@@ -780,7 +780,7 @@ func (p *Page) Menus() PageMenus {
                                                jww.ERROR.Printf("unable to process menus for %q: %s", p.Title, err)
                                        }
 
-                                       menuEntry.MarshallMap(ime)
+                                       menuEntry.marshallMap(ime)
                                }
                                p.pageMenus[name] = &menuEntry
                        }
index 32c013489b708f4d17277945620008d35514d2b8..6c60af3c590617e091533742f90c3558520e48a3 100644 (file)
@@ -1173,13 +1173,13 @@ func (s *Site) getMenusFromConfig() Menus {
                                                jww.ERROR.Println(err)
                                        }
 
-                                       menuEntry.MarshallMap(ime)
+                                       menuEntry.marshallMap(ime)
                                        menuEntry.URL = s.Info.createNodeMenuEntryURL(menuEntry.URL)
 
                                        if ret[name] == nil {
                                                ret[name] = &Menu{}
                                        }
-                                       *ret[name] = ret[name].Add(&menuEntry)
+                                       *ret[name] = ret[name].add(&menuEntry)
                                }
                        }
                }
@@ -1249,7 +1249,7 @@ func (s *Site) assembleMenus() {
        // Create Children Menus First
        for _, e := range flat {
                if e.Parent != "" {
-                       children[twoD{e.Menu, e.Parent}] = children[twoD{e.Menu, e.Parent}].Add(e)
+                       children[twoD{e.Menu, e.Parent}] = children[twoD{e.Menu, e.Parent}].add(e)
                }
        }
 
@@ -1270,7 +1270,7 @@ func (s *Site) assembleMenus() {
                        if !ok {
                                s.Menus[menu.MenuName] = &Menu{}
                        }
-                       *s.Menus[menu.MenuName] = s.Menus[menu.MenuName].Add(e)
+                       *s.Menus[menu.MenuName] = s.Menus[menu.MenuName].add(e)
                }
        }
 }