Sha256: 5fc94b505564a9e9f78fb916514e04aa1be7e33ea586efccbc2d4fb4b83832db

Contents?: true

Size: 1.73 KB

Versions: 3

Compression:

Stored size: 1.73 KB

Contents

# frozen_string_literal: true

module Vedeu

  module Views

    # A collection of {Vedeu::Cells::Char} instances.
    #
    # @api private
    #
    class Chars < Vedeu::Repositories::Collection

      # @param collection [void]
      # @param parent [Vedeu::Views::Stream]
      # @param name [NilClass|Symbol|String]
      # @raise [Vedeu::Error::InvalidSyntax] When the collection
      #   cannot be coerced since it is unrecognised or unsupported.
      # @return [Vedeu::Views::Chars]
      def self.coerce(collection = [], parent = nil, name = nil)
        if collection.is_a?(Vedeu::Views::Chars)
          collection

        elsif collection.is_a?(Array)
          return new(collection, parent, name) if collection.empty?

          coerced_collection = []
          collection.each do |element|
            coerced_collection << element if element.is_a?(Vedeu::Cells::Char)
          end

          new(coerced_collection, parent, name)

        elsif collection.is_a?(Vedeu::Views::Stream)
          Vedeu::Views::Chars.coerce(collection.value,
                                     collection.parent,
                                     collection.name)

        elsif collection.is_a?(String)
          return new([], parent, name) if collection.empty?

          if parent && parent.attributes
            new_collection = Vedeu::DSL::Text.new(collection,
                                                  parent.attributes).chars

            new(new_collection, parent, name)
          end

        else
          fail Vedeu::Error::InvalidSyntax,
               'Cannot coerce for Vedeu::View::Chars, as collection is ' \
               'unrecognised.'

        end
      end

      alias_method :chars, :value

    end # Chars

  end # Views

end # Vedeu

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
vedeu-0.8.5 lib/vedeu/views/chars.rb
vedeu-0.8.4 lib/vedeu/views/chars.rb
vedeu-0.8.3 lib/vedeu/views/chars.rb