Sha256: 9dd8f8f65e9b195ce38049d9ceb2e9aabcb47d4919c1e88b96f0ce95d7ebfce9

Contents?: true

Size: 1.54 KB

Versions: 15

Compression:

Stored size: 1.54 KB

Contents

# frozen_string_literal: true

module Nanoc
  class ItemWithoutRepsView < ::Nanoc::View
    include Nanoc::DocumentViewMixin

    # Returns the children of this item. For items with identifiers that have
    # extensions, returns an empty collection.
    #
    # @return [Enumerable<Nanoc::ItemWithRepsView>]
    def children
      unless unwrap.identifier.legacy?
        raise Nanoc::Int::Errors::CannotGetParentOrChildrenOfNonLegacyItem.new(unwrap.identifier)
      end

      children_pattern = Nanoc::Int::Pattern.from(unwrap.identifier.to_s + '*/')
      children = @context.items.select { |i| children_pattern.match?(i.identifier) }

      children.map { |i| self.class.new(i, @context) }.freeze
    end

    # Returns the parent of this item, if one exists. For items with identifiers
    # that have extensions, returns nil.
    #
    # @return [Nanoc::ItemWithRepsView] if the item has a parent
    #
    # @return [nil] if the item has no parent
    def parent
      unless unwrap.identifier.legacy?
        raise Nanoc::Int::Errors::CannotGetParentOrChildrenOfNonLegacyItem.new(unwrap.identifier)
      end

      parent_identifier = '/' + unwrap.identifier.components[0..-2].join('/') + '/'
      parent_identifier = '/' if parent_identifier == '//'

      parent = @context.items[parent_identifier]

      parent && self.class.new(parent, @context)
    end

    # @return [Boolean] True if the item is binary, false otherwise
    def binary?
      unwrap.content.binary?
    end

    # @api private
    def raw_filename
      unwrap.content.filename
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
nanoc-4.8.9 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.8 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.7 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.6 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.5 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.4 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.3 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.2 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.1 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.8.0 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.7.14 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.7.13 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.7.12 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.7.11 lib/nanoc/base/views/item_without_reps_view.rb
nanoc-4.7.10 lib/nanoc/base/views/item_without_reps_view.rb