Sha256: 137cb55bf61afa0af3974eae3a58f234676dd3132323829b7478aa598d633c25

Contents?: true

Size: 765 Bytes

Versions: 7

Compression:

Stored size: 765 Bytes

Contents

module Lookbook
  class TagComponent < ViewComponent::Base
    include Lookbook::ComponentHelper

    def initialize(tag: :div, name: nil, cloak: false, **html_attrs)
      @tag = tag
      html_attrs[:data] ||= {}
      html_attrs[:data][:component] = name if name.present?
      html_attrs[:"x-cloak"] = true if cloak == true
      html_attrs[self.class.escape_attribute_key] = false
      @html_attrs = html_attrs
    end

    def call
      @html_attrs[:class] = class_names(@html_attrs[:class])
      tag.public_send(@tag.to_sym, **@html_attrs) do
        content
      end
    end

    def self.escape_attribute_key
      @escape_attribute_key ||= Gem::Version.new(Rails.version) < Gem::Version.new("6.1.5.1") ? :escape_attributes : :escape
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
lookbook-1.3.3 app/components/lookbook/tag_component.rb
lookbook-1.3.1 app/components/lookbook/tag_component.rb
lookbook-1.3.0 app/components/lookbook/tag_component.rb
lookbook-1.2.1 app/components/lookbook/tag_component.rb
lookbook-1.2.0 app/components/lookbook/tag_component.rb
lookbook-1.1.1 app/components/lookbook/tag_component.rb
lookbook-1.1.0 app/components/lookbook/tag_component.rb