Sha256: eb8f0731dea6ff5106571ce4b6464926c6d3ceea8834e5b3186e9c0ad036cbc2

Contents?: true

Size: 925 Bytes

Versions: 6

Compression:

Stored size: 925 Bytes

Contents

# encoding: utf-8

module Nanoc::Helpers

  # Provides support for breadcrumbs, which allow the user to go up in the
  # page hierarchy.
  module Breadcrumbs

    # Creates a breadcrumb trail leading from the current item to its parent,
    # to its parent’s parent, etc, until the root item is reached. This
    # function does not require that each intermediate item exist; for
    # example, if there is no `/foo/` item, breadcrumbs for a `/foo/bar/` item
    # will contain a `nil` element.
    #
    # @return [Array] The breadcrumbs, starting with the root item and ending
    #   with the item itself
    def breadcrumbs_trail
      trail      = []
      idx_start  = 0

      loop do
        idx = @item.identifier.index('/', idx_start)
        break if idx.nil?

        idx_start = idx+1
        identifier = @item.identifier[0..idx]
        trail << @items[identifier]
      end

      trail
    end

  end

end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
nanoc-3.6.7 lib/nanoc/helpers/breadcrumbs.rb
nanoc-3.6.6 lib/nanoc/helpers/breadcrumbs.rb
nanoc-3.6.5 lib/nanoc/helpers/breadcrumbs.rb
nanoc-3.6.4 lib/nanoc/helpers/breadcrumbs.rb
nanoc-3.6.3 lib/nanoc/helpers/breadcrumbs.rb
nanoc-3.6.2 lib/nanoc/helpers/breadcrumbs.rb