2014-04-23 02:59:19 -04:00
|
|
|
// Copyright © 2013-14 Steve Francia <spf@spf13.com>.
|
|
|
|
//
|
|
|
|
// Licensed under the Simple Public License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
// http://opensource.org/licenses/Simple-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package hugolib
|
|
|
|
|
2014-04-24 18:11:08 -04:00
|
|
|
import (
|
2014-05-27 18:34:29 -04:00
|
|
|
"html/template"
|
2014-04-24 18:11:08 -04:00
|
|
|
"sort"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/spf13/cast"
|
|
|
|
)
|
2014-04-23 02:59:19 -04:00
|
|
|
|
|
|
|
type MenuEntry struct {
|
2014-05-14 18:01:13 -04:00
|
|
|
Url string
|
|
|
|
Name string
|
|
|
|
Menu string
|
|
|
|
Identifier string
|
2014-05-27 18:34:29 -04:00
|
|
|
Pre template.HTML
|
|
|
|
Post template.HTML
|
2014-05-14 18:01:13 -04:00
|
|
|
Weight int
|
|
|
|
Parent string
|
|
|
|
Children Menu
|
2014-04-23 02:59:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
type Menu []*MenuEntry
|
|
|
|
type Menus map[string]*Menu
|
|
|
|
type PageMenus map[string]*MenuEntry
|
|
|
|
|
|
|
|
func (me *MenuEntry) AddChild(child *MenuEntry) {
|
|
|
|
me.Children = append(me.Children, child)
|
|
|
|
me.Children.Sort()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *MenuEntry) HasChildren() bool {
|
|
|
|
return me.Children != nil
|
|
|
|
}
|
|
|
|
|
2014-05-14 18:01:13 -04:00
|
|
|
func (me *MenuEntry) KeyName() string {
|
|
|
|
if me.Identifier != "" {
|
|
|
|
return me.Identifier
|
|
|
|
}
|
|
|
|
return me.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *MenuEntry) hopefullyUniqueId() string {
|
|
|
|
if me.Identifier != "" {
|
|
|
|
return me.Identifier
|
|
|
|
} else if me.Url != "" {
|
|
|
|
return me.Url
|
|
|
|
} else {
|
|
|
|
return me.Name
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *MenuEntry) IsEqual(inme *MenuEntry) bool {
|
|
|
|
return me.hopefullyUniqueId() == inme.hopefullyUniqueId() && me.Parent == inme.Parent
|
|
|
|
}
|
|
|
|
|
2014-04-24 18:11:08 -04:00
|
|
|
func (me *MenuEntry) MarshallMap(ime map[string]interface{}) {
|
|
|
|
for k, v := range ime {
|
|
|
|
loki := strings.ToLower(k)
|
|
|
|
switch loki {
|
|
|
|
case "url":
|
|
|
|
me.Url = cast.ToString(v)
|
|
|
|
case "weight":
|
|
|
|
me.Weight = cast.ToInt(v)
|
|
|
|
case "name":
|
|
|
|
me.Name = cast.ToString(v)
|
2014-05-27 18:34:29 -04:00
|
|
|
case "pre":
|
|
|
|
me.Pre = template.HTML(cast.ToString(v))
|
|
|
|
case "post":
|
|
|
|
me.Post = template.HTML(cast.ToString(v))
|
2014-05-14 18:01:13 -04:00
|
|
|
case "identifier":
|
|
|
|
me.Identifier = cast.ToString(v)
|
2014-04-24 18:11:08 -04:00
|
|
|
case "parent":
|
|
|
|
me.Parent = cast.ToString(v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-23 02:59:19 -04:00
|
|
|
func (m Menu) Add(me *MenuEntry) Menu {
|
|
|
|
app := func(slice Menu, x ...*MenuEntry) Menu {
|
|
|
|
n := len(slice) + len(x)
|
|
|
|
if n > cap(slice) {
|
|
|
|
size := cap(slice) * 2
|
|
|
|
if size < n {
|
|
|
|
size = n
|
|
|
|
}
|
|
|
|
new := make(Menu, size)
|
|
|
|
copy(new, slice)
|
|
|
|
slice = new
|
|
|
|
}
|
|
|
|
slice = slice[0:n]
|
|
|
|
copy(slice[n-len(x):], x)
|
|
|
|
return slice
|
|
|
|
}
|
|
|
|
|
|
|
|
m = app(m, me)
|
|
|
|
m.Sort()
|
|
|
|
return m
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Implementation of a custom sorter for Menu
|
|
|
|
*/
|
|
|
|
|
|
|
|
// A type to implement the sort interface for Menu
|
|
|
|
type MenuSorter struct {
|
|
|
|
menu Menu
|
|
|
|
by MenuEntryBy
|
|
|
|
}
|
|
|
|
|
|
|
|
// Closure used in the Sort.Less method.
|
|
|
|
type MenuEntryBy func(m1, m2 *MenuEntry) bool
|
|
|
|
|
|
|
|
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.
|
|
|
|
}
|
2014-09-09 05:59:47 -04:00
|
|
|
sort.Stable(ms)
|
2014-04-23 02:59:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
var DefaultMenuEntrySort = func(m1, m2 *MenuEntry) bool {
|
|
|
|
if m1.Weight == m2.Weight {
|
|
|
|
return m1.Name < m2.Name
|
|
|
|
} else {
|
|
|
|
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] }
|
|
|
|
|
|
|
|
// 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 (p Menu) Sort() {
|
|
|
|
MenuEntryBy(DefaultMenuEntrySort).Sort(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Menu) Limit(n int) Menu {
|
|
|
|
if len(p) < n {
|
|
|
|
return p[0:n]
|
|
|
|
} else {
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Menu) ByWeight() Menu {
|
|
|
|
MenuEntryBy(DefaultMenuEntrySort).Sort(p)
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p Menu) ByName() Menu {
|
|
|
|
title := func(m1, m2 *MenuEntry) bool {
|
|
|
|
return m1.Name < m2.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
MenuEntryBy(title).Sort(p)
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
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]
|
|
|
|
}
|
|
|
|
|
|
|
|
return m
|
|
|
|
}
|