Class: Yattho::Forms::BaseComponent

Inherits:
Object
  • Object
show all
Extended by:
ActsAsComponent
Includes:
ClassNameHelper
Defined in:
lib/yattho/forms/base_component.rb

Overview

:nodoc:

Instance Attribute Summary

Attributes included from ActsAsComponent

#template_root_path

Class Method Summary collapse

Instance Method Summary collapse

Methods included from ActsAsComponent

compile!, extended, renders_templates

Methods included from ClassNameHelper

#class_names

Class Method Details

.inherited(base) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/yattho/forms/base_component.rb', line 12

def self.inherited(base)
  base_path = 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

Instance Method Details

#contentObject



33
34
35
36
37
38
39
40
# File 'lib/yattho/forms/base_component.rb', line 33

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

#input?Boolean

:nocov:

Returns:

  • (Boolean)


48
49
50
# File 'lib/yattho/forms/base_component.rb', line 48

def input?
  false
end

#perform_render(&block) ⇒ Object



26
27
28
29
30
31
# File 'lib/yattho/forms/base_component.rb', line 26

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

  @__prf_content_block = block
  compile_and_render_template
end

#render?Boolean

Returns:

  • (Boolean)


56
57
58
# File 'lib/yattho/forms/base_component.rb', line 56

def render?
  true
end

#to_componentObject



52
53
54
# File 'lib/yattho/forms/base_component.rb', line 52

def to_component
  self
end

#typeObject

:nocov:



43
44
45
# File 'lib/yattho/forms/base_component.rb', line 43

def type
  :component
end