2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache 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://www.apache.org/licenses/LICENSE-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 page
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"github.com/gohugoio/hugo/common/collections"
|
|
|
|
)
|
|
|
|
|
2020-12-02 07:23:25 -05:00
|
|
|
var _ collections.Slicer = WeightedPage{}
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
// WeightedPages is a list of Pages with their corresponding (and relative) weight
|
|
|
|
// [{Weight: 30, Page: *1}, {Weight: 40, Page: *2}]
|
|
|
|
type WeightedPages []WeightedPage
|
|
|
|
|
|
|
|
// Page will return the Page (of Kind taxonomyList) that represents this set
|
|
|
|
// of pages. This method will panic if p is empty, as that should never happen.
|
|
|
|
func (p WeightedPages) Page() Page {
|
|
|
|
if len(p) == 0 {
|
|
|
|
panic("WeightedPages is empty")
|
|
|
|
}
|
|
|
|
|
|
|
|
first := p[0]
|
|
|
|
|
|
|
|
// TODO(bep) fix tests
|
2019-04-13 05:40:51 -04:00
|
|
|
if first.owner == nil {
|
2019-01-02 06:33:26 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-08-03 11:27:40 -04:00
|
|
|
return first.owner
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// A WeightedPage is a Page with a weight.
|
|
|
|
type WeightedPage struct {
|
|
|
|
Weight int
|
|
|
|
Page
|
|
|
|
|
2019-04-13 05:40:51 -04:00
|
|
|
// Reference to the owning Page. This avoids having to do
|
2019-01-02 06:33:26 -05:00
|
|
|
// manual .Site.GetPage lookups. It is implemented in this roundabout way
|
|
|
|
// because we cannot add additional state to the WeightedPages slice
|
|
|
|
// without breaking lots of templates in the wild.
|
2019-08-03 11:27:40 -04:00
|
|
|
owner Page
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
2019-08-03 11:27:40 -04:00
|
|
|
func NewWeightedPage(weight int, p Page, owner Page) WeightedPage {
|
2019-04-13 05:40:51 -04:00
|
|
|
return WeightedPage{Weight: weight, Page: p, owner: owner}
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (w WeightedPage) String() string {
|
|
|
|
return fmt.Sprintf("WeightedPage(%d,%q)", w.Weight, w.Page.Title())
|
|
|
|
}
|
|
|
|
|
2022-04-21 04:59:13 -04:00
|
|
|
// Slice is for internal use.
|
2019-01-02 06:33:26 -05:00
|
|
|
// for the template functions. See collections.Slice.
|
2022-03-17 17:03:27 -04:00
|
|
|
func (p WeightedPage) Slice(in any) (any, error) {
|
2019-01-02 06:33:26 -05:00
|
|
|
switch items := in.(type) {
|
|
|
|
case WeightedPages:
|
|
|
|
return items, nil
|
2022-03-17 17:03:27 -04:00
|
|
|
case []any:
|
2019-01-02 06:33:26 -05:00
|
|
|
weighted := make(WeightedPages, len(items))
|
|
|
|
for i, v := range items {
|
|
|
|
g, ok := v.(WeightedPage)
|
|
|
|
if !ok {
|
|
|
|
return nil, fmt.Errorf("type %T is not a WeightedPage", v)
|
|
|
|
}
|
|
|
|
weighted[i] = g
|
|
|
|
}
|
|
|
|
return weighted, nil
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("invalid slice type %T", items)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Pages returns the Pages in this weighted page set.
|
|
|
|
func (wp WeightedPages) Pages() Pages {
|
|
|
|
pages := make(Pages, len(wp))
|
|
|
|
for i := range wp {
|
|
|
|
pages[i] = wp[i].Page
|
|
|
|
}
|
|
|
|
return pages
|
|
|
|
}
|
|
|
|
|
2019-10-11 05:09:43 -04:00
|
|
|
// Next returns the next Page relative to the given Page in
|
2019-01-02 06:33:26 -05:00
|
|
|
// this weighted page set.
|
2019-10-11 05:09:43 -04:00
|
|
|
func (wp WeightedPages) Next(cur Page) Page {
|
2019-01-02 06:33:26 -05:00
|
|
|
for x, c := range wp {
|
2019-10-11 07:55:46 -04:00
|
|
|
if c.Page.Eq(cur) {
|
2019-01-02 06:33:26 -05:00
|
|
|
if x == 0 {
|
2019-10-11 05:09:43 -04:00
|
|
|
return nil
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
return wp[x-1].Page
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-10-11 05:09:43 -04:00
|
|
|
// Prev returns the previous Page relative to the given Page in
|
2019-01-02 06:33:26 -05:00
|
|
|
// this weighted page set.
|
2019-10-11 05:09:43 -04:00
|
|
|
func (wp WeightedPages) Prev(cur Page) Page {
|
2019-01-02 06:33:26 -05:00
|
|
|
for x, c := range wp {
|
2019-10-11 07:55:46 -04:00
|
|
|
if c.Page.Eq(cur) {
|
2019-01-02 06:33:26 -05:00
|
|
|
if x < len(wp)-1 {
|
|
|
|
return wp[x+1].Page
|
|
|
|
}
|
2019-10-11 05:09:43 -04:00
|
|
|
return nil
|
2019-01-02 06:33:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (wp WeightedPages) Len() int { return len(wp) }
|
|
|
|
func (wp WeightedPages) Swap(i, j int) { wp[i], wp[j] = wp[j], wp[i] }
|
|
|
|
|
|
|
|
// Sort stable sorts this weighted page set.
|
|
|
|
func (wp WeightedPages) Sort() { sort.Stable(wp) }
|
|
|
|
|
|
|
|
// Count returns the number of pages in this weighted page set.
|
|
|
|
func (wp WeightedPages) Count() int { return len(wp) }
|
|
|
|
|
|
|
|
func (wp WeightedPages) Less(i, j int) bool {
|
|
|
|
if wp[i].Weight == wp[j].Weight {
|
|
|
|
return DefaultPageSort(wp[i].Page, wp[j].Page)
|
|
|
|
}
|
|
|
|
return wp[i].Weight < wp[j].Weight
|
|
|
|
}
|