module Padrino::Helpers::TagHelpers
Public Instance Methods
accordian_tag(the_id=nil, sections=nil)
click to toggle source
See: github.com/padrino/padrino-framework/blob/master/padrino-helpers/lib/padrino-helpers/tag_helpers.rb
# File lib/gxg/tag_helpers.rb, line 7 def accordian_tag(the_id=nil, sections=nil) # id => <uuid>, :sections => [{:heading => "", :content => ""}] if the_id.is_a?(::Array) sections = the_id the_id = ::SecureRandom::uuid.to_s end unless the_id the_id = ::SecureRandom::uuid.to_s end output = SafeBuffer.new output.safe_concat "<div id='#{the_id.to_s}'>" sections.each do |the_section| output.safe_concat "<h3>#{the_section[:heading].to_s}</h3>" output.safe_concat "<div>" output.safe_concat the_section[:content].to_s output.safe_concat "</div>" end output.safe_concat "</div><script>$('##{the_id.to_s}').accordion();</script>" output end
autocomplete_tag(the_id=nil, the_terms=nil)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 28 def autocomplete_tag(the_id=nil, the_terms=nil) if the_id.is_a?(::Array) the_terms = the_id the_id = ::SecureRandom::uuid.to_s end unless the_id the_id = ::SecureRandom::uuid.to_s end output = SafeBuffer.new output.safe_concat( input_tag(:text, :name => the_id.to_s, :id => the_id.to_s) ) # output.safe_concat "<input type='text' id='#{the_id.to_s}'>" output.safe_concat "<script>var terms#{the_id.to_s.gsub("-","")} = [" the_terms.each do |the_term| output.safe_concat ("'#{the_term.to_s}'") unless the_term == the_terms.last output.safe_concat(",") end end output.safe_concat "];" output.safe_concat "$( '##{the_id.to_s}' ).autocomplete({source: terms#{the_id.to_s.gsub("-","")}});</script>" end
control_group(content="", options={:vertical => false}, &block)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 119 def control_group(content="", options={:vertical => false}, &block) # output = SafeBuffer.new if options[:vertical] output.safe_concat("<div class='controlgroup-verticle'>") else output.safe_concat("<div class='controlgroup'>") end if block.respond_to?(:call) output.safe_concat(block.call()) else output.safe_concat(content) end output.safe_concat("</div>") if options[:vertical] output.safe_concat("<script>$('.controlgroup-verticle').controlgroup({'direction': 'vertical'});</script>") else output.safe_concat("<script>$('.controlgroup').controlgroup();</script>") end output end
currency_string(amount=0.0)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 240 def currency_string(amount=0.0) result = "" if amount.to_s.split(".")[1].size < 2 result = ("$" << amount.to_s << "0") else result = ("$" << amount.to_s) end result end
datepicker_tag(the_id=nil,title="")
click to toggle source
# File lib/gxg/tag_helpers.rb, line 141 def datepicker_tag(the_id=nil,title="") output = SafeBuffer.new unless the_id the_id = ::SecureRandom::uuid.to_s end output.safe_concat("#{title.to_s}<input type='text' id='#{the_id.to_s}'>") output.safe_concat("<script>$('##{the_id.to_s}').datepicker();</script>") output end
dialog_tag(the_id=nil, title="", content="", &block)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 151 def dialog_tag(the_id=nil, title="", content="", &block) output = SafeBuffer.new unless the_id the_id = ::SecureRandom::uuid.to_s end output.safe_concat("<div title='#{title.to_s}' id='#{the_id.to_s}'>") if block.respond_to?(:call) output.safe_concat(block.call()) else output.safe_concat(content) end output.safe_concat("</div>") output.safe_concat("<script>$('##{the_id.to_s}').dialog();</script>") output end
radio_group(legend=nil,button_names=nil)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 107 def radio_group(legend=nil,button_names=nil) # Waiting on Fix: https://bugs.jqueryui.com/ticket/15308#comment:1 output = SafeBuffer.new output.safe_concat("<fieldset><legend>#{legend.to_s}</legend>") button_names.each do |the_name| output.safe_concat(radio_tag(nil,the_name)) end output.safe_concat("</fieldset>") output.safe_concat("<script>$('input[type=radio]').checkboxradio();</script>") output end
radio_tag(the_id=nil,title=nil)
click to toggle source
# File lib/gxg/tag_helpers.rb, line 97 def radio_tag(the_id=nil,title=nil) output = SafeBuffer.new unless the_id the_id = ::SecureRandom::uuid.to_s end output.safe_concat("<label for='#{the_id}'>#{title}</label>") output.safe_concat("<input type='radio' name='#{the_id}' id='#{the_id}'>") output end
slider_tag(the_id=nil, options={})
click to toggle source
# File lib/gxg/tag_helpers.rb, line 167 def slider_tag(the_id=nil, options={}) output = SafeBuffer.new unless the_id the_id = ::SecureRandom::uuid.to_s end output.safe_concat("<div id='#{the_id.to_s}'>") if options[:content].is_a?(::String) output.safe_concat(options[:content].to_s) end output.safe_concat("</div>") if options[:javascript].is_a?(::String) output.safe_concat("<script>$('##{the_id.to_s}').slider(#{options[:javascript].to_s});</script>") else output.safe_concat("<script>$('##{the_id.to_s}').slider();</script>") end output end
spinner_tab(the_id=nil, options={})
click to toggle source
# File lib/gxg/tag_helpers.rb, line 185 def spinner_tab(the_id=nil, options={}) output = SafeBuffer.new unless the_id the_id = ::SecureRandom::uuid.to_s end output.safe_concat("<input id='#{the_id.to_s}'") if options[:name].is_a?(::String) output.safe_concat(" name='#{options[:name].to_s}'") end if options[:value] output.safe_concat(" name='#{options[:value].to_s}'") end output.safe_concat(">") if options[:javascript].is_a?(::String) output.safe_concat("<script>$('##{the_id.to_s}').spinner(#{options[:javascript].to_s});</script>") else output.safe_concat("<script>$('##{the_id.to_s}').spinner();</script>") end output end
tabs_tag(the_id=nil, sections=nil, options={})
click to toggle source
# File lib/gxg/tag_helpers.rb, line 206 def tabs_tag(the_id=nil, sections=nil, options={}) # id => <uuid>, :sections => [{:heading => "", :content => ""}] if the_id.is_a?(::Array) sections = the_id options = sections the_id = ::SecureRandom::uuid.to_s end unless the_id the_id = ::SecureRandom::uuid.to_s end output = SafeBuffer.new section_details = {} output.safe_concat "<div id='#{the_id.to_s}'>" sections.each do |the_section| section_id = ::SecureRandom::uuid.to_sym section_details[(section_id)] = {:heading => the_section[:heading], :content => the_section[:content]} end output.safe_concat "<ul>" section_details.each_key do |the_uuid| output.safe_concat "<li><a href='##{the_uuid.to_s}'>#{section_details[(the_uuid)][:heading].to_s}</a></li>" end output.safe_concat "</ul>" section_details.each_key do |the_uuid| output.safe_concat "<div id='#{the_uuid.to_s}'>#{section_details[(the_uuid)][:content].to_s}</div>" end output.safe_concat "</div>" if options[:javascript].is_a?(::String) output.safe_concat("<script>$('##{the_id.to_s}').tabs(#{options[:javascript].to_s});</script>") else output.safe_concat("<script>$('##{the_id.to_s}').tabs();</script>") end output end