Sha256: afeb5a80d4b7da5b0643b37dfbff23ebcf6072fea9a358a66ef6b7e7b42c3f7c

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

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

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

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

    def suffix
      "</#{name}>"
    end

    def render
      [prefix, content, suffix].compact * ''
    end

    private

    attr_reader :attributes, :activator

    def expand_data_attributes! attrs
      if attrs.key? :data
        attrs.delete(:data).each { |key, value| attrs["data-#{key}"] = value }
      end
    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

1 entries across 1 versions & 1 rubygems

Version Path
navigator-1.0.0 lib/navigator/tag.rb