Sha256: 509a382b1cca1165a53bef235b7464733e9dc611af4974b3215dffc8ea129552

Contents?: true

Size: 1.28 KB

Versions: 2

Compression:

Stored size: 1.28 KB

Contents

# frozen_string_literal: true

module Navigator
  # Renders a HTML tag.
  class Tag
    attr_reader :name, :content

    def self.names_without_suffix
      %w[img input]
    end

    def initialize name, content = nil, attributes: {}, activator: Navigator::TagActivator.new
      @name = String(name)
      @content = content
      @attributes = attributes.with_indifferent_access
      @activator = activator
    end

    def prefix
      ["<#{name}", format_attributes, ">"].compact * ""
    end

    def computed_content
      self.class.names_without_suffix.include?(name) ? nil : content
    end

    def suffix
      self.class.names_without_suffix.include?(name) ? nil : "</#{name}>"
    end

    def render
      [prefix, computed_content, suffix].compact * ""
    end

    private

    attr_reader :attributes, :activator

    def expand_data_attributes! attrs
      return unless attrs.key? :data
      attrs.delete(:data).each { |key, value| attrs["data-#{key}"] = value }
    end

    def concatenate_attributes attrs
      activator.activate(attrs).map { |key, value| %(#{key}="#{value}") } * " "
    end

    def format_attributes
      attrs = attributes.clone
      expand_data_attributes! attrs
      attrs = concatenate_attributes attrs
      attrs.empty? ? nil : " #{attrs}"
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
navigator-2.1.0 lib/navigator/tag.rb
navigator-2.0.0 lib/navigator/tag.rb