Module: SinatraMore::TagHelpers

Defined in:
lib/sinatra_more/markup_plugin/tag_helpers.rb

Instance Method Summary collapse

Instance Method Details

#content_tag(*args, &block) ⇒ Object

Creates an html tag with given name, content and options content_tag(:p, “hello”, :class => ‘light’) content_tag(:p, :class => ‘dark’) do … end parameters: content_tag(name, content=nil, options={}, &block)



14
15
16
17
18
19
20
# File 'lib/sinatra_more/markup_plugin/tag_helpers.rb', line 14

def (*args, &block)
  name = args.first
  options = args.extract_options!
  tag_html = block_given? ? capture_html(&block) : args[1]
  tag_result = tag(name, options.merge(:content => tag_html))
  block_is_template?(block) ? concat_content(tag_result) : tag_result
end

#input_tag(type, options = {}) ⇒ Object

Creates an html input field with given type and options input_tag :text, :class => “test”



5
6
7
8
# File 'lib/sinatra_more/markup_plugin/tag_helpers.rb', line 5

def input_tag(type, options = {})
  options.reverse_merge!(:type => type)
  tag(:input, options)
end

#tag(name, options = {}) ⇒ Object

Creates an html tag with the given name and options tag(:br, :style => ‘clear:both’) tag(:p, :content => “hello”, :class => ‘large’)



25
26
27
28
29
30
31
# File 'lib/sinatra_more/markup_plugin/tag_helpers.rb', line 25

def tag(name, options={})
  content = options.delete(:content)
  identity_tag_attributes.each { |attr| options[attr] = attr.to_s if options[attr]  }
  html_attrs = options.collect { |a, v| v.blank? ? nil : "#{a}=\"#{v}\"" }.compact.join(" ")
  base_tag = (!html_attrs.blank? ? "<#{name} #{html_attrs}" : "<#{name}")
  base_tag << (content ? ">#{content}</#{name}>" : " />")
end