Sha256: 46b85df5ccad02d18f7481968b2849a033c00e08d9b63f6b8a7dbb368bf60f38

Contents?: true

Size: 1.74 KB

Versions: 12

Compression:

Stored size: 1.74 KB

Contents

module Formtastic
  module Inputs
    module Base
      module Errors
        
        def error_html
          errors? ? send(:"error_#{builder.inline_errors}_html") : ""
        end
        
        def error_sentence_html
          error_class = builder.default_inline_error_class
          template.content_tag(:p, Formtastic::Util.html_safe(errors.to_sentence.html_safe), :class => error_class)
        end
                
        def error_list_html
          error_class = builder.default_error_list_class
          list_elements = []
          errors.each do |error|
            list_elements << template.content_tag(:li, Formtastic::Util.html_safe(error.html_safe))
          end
          template.content_tag(:ul, Formtastic::Util.html_safe(list_elements.join("\n")), :class => error_class)
        end
        
        def error_first_html
          error_class = builder.default_inline_error_class
          template.content_tag(:p, Formtastic::Util.html_safe(errors.first.untaint), :class => error_class)
        end
        
        def error_none_html
          ""
        end
        
        def errors?
          !errors.blank?
        end
        
        def errors
          errors = []
          if object && object.respond_to?(:errors)
            error_keys.each do |key| 
              errors << object.errors[key] unless object.errors[key].blank?
            end
          end
          errors.flatten.compact.uniq
        end
        
        def error_keys
          keys = [method.to_sym]
          keys << builder.file_metadata_suffixes.map{|suffix| "#{method}_#{suffix}".to_sym} if file?
          keys << association_primary_key if belongs_to? || has_many?
          keys.flatten.compact.uniq
        end
        
      end
    end
  end
end
        

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
formtastic-3.1.5 lib/formtastic/inputs/base/errors.rb
ish_lib_manager-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/formtastic-3.1.4/lib/formtastic/inputs/base/errors.rb
formtastic-3.1.4 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.3 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.2 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.1 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.0 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.0.rc2 lib/formtastic/inputs/base/errors.rb
formtastic-3.1.0.rc1 lib/formtastic/inputs/base/errors.rb
formtastic-3.0.0 lib/formtastic/inputs/base/errors.rb
formtastic-3.0.0.rc2 lib/formtastic/inputs/base/errors.rb
formtastic-3.0.0.rc lib/formtastic/inputs/base/errors.rb