Class: ActionView::Helpers::FormBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/optimism.rb

Instance Method Summary collapse

Instance Method Details

#container_for(attribute, **options, &block) ⇒ Object



97
98
99
# File 'lib/optimism.rb', line 97

def container_for(attribute, **options, &block)
  @template.tag.div @template.capture(&block), options.merge!(id: container_id_for(attribute)) if block_given?
end

#container_id_for(attribute) ⇒ Object



101
102
103
# File 'lib/optimism.rb', line 101

def container_id_for(attribute)
  Optimism.container_selector.sub("RESOURCE", object_name.to_s.delete("]").tr("[", "_")).sub("ATTRIBUTE", attribute.to_s)[1..-1]
end

#error_for(attribute, **options) ⇒ Object



105
106
107
# File 'lib/optimism.rb', line 105

def error_for(attribute, **options)
  @template.tag.span options.merge! id: error_id_for(attribute)
end

#error_id_for(attribute) ⇒ Object



109
110
111
# File 'lib/optimism.rb', line 109

def error_id_for(attribute)
  Optimism.error_selector.sub("RESOURCE", object_name.to_s.delete("]").tr("[", "_")).sub("ATTRIBUTE", attribute.to_s)[1..-1]
end