Sha256: 0b704d0c590ef6842e7fbe86a8e8d4c184bb30c7b3614cda7b3752a9c9d9cbff

Contents?: true

Size: 1.36 KB

Versions: 3

Compression:

Stored size: 1.36 KB

Contents

module Infoboxer
  module Tree
    # Represents image (or other media file).
    #
    # See [Wikipedia Tutorial](https://en.wikipedia.org/wiki/Wikipedia:Extended_image_syntax)
    # for explanation of attributes.
    class Image < Node
      def initialize(path, caption: nil, **params)
        @caption = caption
        super({path: path}.merge(params))
      end

      # Image caption. Can have (sometimes many) other nodes inside.
      #
      # @return [Nodes]
      attr_reader :caption

      # @!attribute [r] path
      # @!attribute [r] type
      # @!attribute [r] location
      # @!attribute [r] alignment
      # @!attribute [r] link
      # @!attribute [r] alt

      def_readers :path, :type,
                  :location, :alignment, :link,
                  :alt

      def border?
        !params[:border].to_s.empty?
      end

      def width
        params[:width].to_i
      end

      def height
        params[:height].to_i
      end

      def to_tree(level = 0)
        super(level) +
          if caption && !caption.empty?
            indent(level + 1) + "caption:\n" +
            caption.children.map { |c| c.to_tree(level + 2) }.join
          else
            ''
          end
      end

      private

      def _eq(other)
        path == other.path
      end
    end

    # Represents image caption.
    class ImageCaption < Compound
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
infoboxer-0.3.3 lib/infoboxer/tree/image.rb
infoboxer-0.3.2 lib/infoboxer/tree/image.rb
infoboxer-0.3.1 lib/infoboxer/tree/image.rb