Sha256: f31aa26baee0c0eb84f65f8a54b9c037aa2941e02614154d3d06926188f45cab

Contents?: true

Size: 1.59 KB

Versions: 7

Compression:

Stored size: 1.59 KB

Contents

# frozen_string_literal: true

module Ariadne
  module Form
    # :nodoc:
    class BaseComponent
      include Ariadne::ClassNameHelper
      extend Ariadne::Forms::ActsAsComponent

      def self.inherited(base)
        base_path = Ariadne::Forms::Utils.const_source_location(base.name)

        unless base_path
          warn("Could not identify the template for #{base}")
          return
        end

        dir = File.dirname(base_path)
        base.renders_template(File.join(dir, "#{base.name.demodulize.underscore}.html.erb"), :render_template)
      end

      delegate :required?, :disabled?, :hidden?, to: :@input

      def perform_render(&block)
        return "" unless render?

        @__prf_content_block = block
        compile_and_render_template
      end

      def content
        return @__prf_content if defined?(@__prf_content_evaluated) && @__prf_content_evaluated

        @__prf_content_evaluated = true
        @__prf_content = capture do
          @__prf_content_block.call
        end
      end

      # :nocov:
      def type
        :component
      end
      # :nocov:

      def input?
        false
      end

      def to_component
        self
      end

      def render?
        true
      end

      private

      def compile_and_render_template
        self.class.compile! unless self.class.instance_methods(false).include?(:render_template)
        render_template
      end

      def content_tag_if(condition, tag, **kwargs, &block)
        if condition
          content_tag(tag, **kwargs, &block)
        else
          capture(&block)
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ariadne_view_components-0.0.70 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.69 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.68 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.67 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.66 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.65 app/components/ariadne/form/base_component.rb
ariadne_view_components-0.0.64 app/components/ariadne/form/base_component.rb