# Copyright, 2012, by Samuel G. D. Williams. <http://www.codeotaku.com> # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal # in the Software without restriction, including without limitation the rights # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN # THE SOFTWARE. require 'trenni/builder' module Trenni module Formatters module HTML module FormFormatter # The target object of the form. def object @options[:object] end # Return true if the object is begin created or false if it is being updated. def new_record? if object.respond_to? :new_record? return object.new_record? elsif self.object.respond_to? :saved? return !object.saved? end end # The name of the field, used for the name attribute of an input. def name_for(options) options[:name] || options[:field] end def field_for(options) options[:field] end # A title is a text string that will be displayed next to or on top of the control to describe it or its value: def title_for(options) title = options[:title] return Strings::to_html(title) if title field_name = field_for(options) return Strings::to_title(field_name.to_s) if field_name end def object_value_for(options) options[:object].send(field_for(options)) if options[:object] end def raw_value_for(options) value = options.fetch(:value) { object_value_for(options) } # Allow to specify a default value if the value given, usually from an object, is nil. value || options[:default] end # The value of the field. def value_for(options) self.format(raw_value_for(options), options) end def pattern_for(options) options[:pattern] end def placeholder_for(options) options[:placeholder] end def input_attributes_for(options) attributes = { :type => options[:type], :name => name_for(options), :id => options[:id], :class => options[:class], :value => value_for(options), :required => options[:required], :disabled => options[:disabled], :readonly => options[:readonly], :pattern => pattern_for(options), :placeholder => placeholder_for(options), # for <input type="range|number"> :min => options[:min], :max => options[:max], :step => options[:step], # for <input type="text"> :minlength => options[:minlength], :maxlength => options[:maxlength], } return attributes end def output_attributes_for(options) attributes = { :name => name_for(options), :id => options[:id], :class => options[:class], :for => options[:for], :form => options[:form], } return attributes end def textarea_attributes_for(options) return { :name => name_for(options), :id => options[:id], :class => options[:class], :required => options[:required], :disabled => options[:disabled], :readonly => options[:readonly], :pattern => pattern_for(options), :placeholder => placeholder_for(options), :minlength => options[:minlength], :maxlength => options[:maxlength], } end def checkbox_attributes_for(options) return { :type => options[:type] || 'checkbox', :id => options[:id], :class => options[:class], :name => name_for(options), :value => 'true', :checked => raw_value_for(options), :required => options[:required], :disabled => options[:disabled], :readonly => options[:readonly], } end def submit_attributes_for(options) return { :type => options[:type] || 'submit', :name => name_for(options), :id => options[:id], :class => options[:class], :disabled => options[:disabled], :value => title_for(options), } end def hidden_attributes_for(options) return { :type => options[:type] || 'hidden', :id => options[:id], :class => options[:class], :name => name_for(options), :value => value_for(options), } end # A hidden field. def hidden(options = {}) options = @options.merge(options) Builder.fragment do |builder| builder.tag :input, hidden_attributes_for(options) end end end end end end