heartcombo--simple_form/lib/simple_form/components/errors.rb

62 lines
1.5 KiB
Ruby
Raw Normal View History

module SimpleForm
module Components
module Errors
def error(wrapper_options = nil)
2011-09-04 10:00:20 +00:00
error_text if has_errors?
end
def full_error(wrapper_options = nil)
full_error_text if options[:error] != false && has_errors?
end
2011-09-03 11:01:41 +00:00
def has_errors?
object && object.respond_to?(:errors) && errors.present?
2011-09-03 11:01:41 +00:00
end
2012-01-26 19:22:05 +00:00
protected
def error_text
text = has_custom_error? ? options[:error] : errors.send(error_method)
"#{html_escape(options[:error_prefix])} #{html_escape(text)}".lstrip.html_safe
end
def full_error_text
has_custom_error? ? options[:error] : full_errors.send(error_method)
end
def error_method
options[:error_method] || SimpleForm.error_method
end
def errors
@errors ||= (errors_on_attribute + errors_on_association).compact
end
def full_errors
@full_errors ||= (full_errors_on_attribute + full_errors_on_association).compact
end
def errors_on_attribute
object.errors[attribute_name]
end
def full_errors_on_attribute
object.errors.full_messages_for(attribute_name)
end
def errors_on_association
reflection ? object.errors[reflection.name] : []
end
def full_errors_on_association
reflection ? object.errors.full_messages_for(reflection.name) : []
end
def has_custom_error?
options[:error].is_a?(String)
end
end
end
end