Module: ActionView::Helpers::ActiveRecordHelper

Defined in:
lib/action_view/helpers/active_record_helper.rb

Overview

The Active Record Helper makes it easier to create forms for records kept in instance variables. The most far-reaching is the form method that creates a complete form for all the basic content types of the record (not associations or aggregations, though). This is a great of making the record quickly available for editing, but likely to prove lackluster for a complicated real-world form. In that case, it’s better to use the input method and the specialized form methods in classes/ActionView/Helpers/FormHelper.html

Instance Method Summary collapse

Instance Method Details

#error_message_on(object, method, prepend_text = "", append_text = "", css_class = "formError") ⇒ Object

Returns a string containing the error message attached to the method on the object, if one exists. This error message is wrapped in a DIV tag, which can be specialized to include both a prepend_text and append_text to properly introduce the error and a css_class to style it accordingly. Examples (post has an error message “can’t be empty” on the title attribute):

<%= error_message_on "post", "title" %> =>
  <div class="formError">can't be empty</div>

<%= error_message_on "post", "title", "Title simply ", " (or it won't work)", "inputError" %> =>
  <div class="inputError">Title simply can't be empty (or it won't work)</div>


87
88
89
90
91
92
93
# File 'lib/action_view/helpers/active_record_helper.rb', line 87

def error_message_on(object, method, prepend_text = "", append_text = "", css_class = "formError")
  if (obj = instance_variable_get("@#{object}")) && (errors = obj.errors.on(method))
    ("div", "#{prepend_text}#{errors.is_a?(Array) ? errors.first : errors}#{append_text}", :class => css_class)
  else 
    ''
  end
end

#error_messages_for(*params) ⇒ Object

Returns a string with a div containing all of the error messages for the objects located as instance variables by the names given. If more than one object is specified, the errors for the objects are displayed in the order that the object names are provided.

This div can be tailored by the following options:

  • header_tag - Used for the header of the error div (default: h2)

  • id - The id of the error div (default: errorExplanation)

  • class - The class of the error div (default: errorExplanation)

  • object_name - The object name to use in the header, or

any text that you prefer. If object_name is not set, the name of the first object will be used.

Specifying one object:

error_messages_for 'user'

Specifying more than one object (and using the name ‘user’ in the header as the object_name instead of ‘user_common’):

error_messages_for 'user_common', 'user', :object_name => 'user'

NOTE: This is a pre-packaged presentation of the errors with embedded strings and a certain HTML structure. If what you need is significantly different from the default presentation, it makes plenty of sense to access the object.errors instance yourself and set it up. View the source of this method to see how easy it is.



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# File 'lib/action_view/helpers/active_record_helper.rb', line 120

def error_messages_for(*params)
  options = params.last.is_a?(Hash) ? params.pop.symbolize_keys : {}
  objects = params.collect {|object_name| instance_variable_get("@#{object_name}") }.compact
  count   = objects.inject(0) {|sum, object| sum + object.errors.count }
  unless count.zero?
    html = {}
    [:id, :class].each do |key|
      if options.include?(key)
        value = options[key]
        html[key] = value unless value.blank?
      else
        html[key] = 'errorExplanation'
      end
    end
    header_message = "#{pluralize(count, 'error')} prohibited this #{(options[:object_name] || params.first).to_s.gsub('_', ' ')} from being saved"
    error_messages = objects.map {|object| object.errors.full_messages.map {|msg| (:li, msg) } }
    (:div,
      (options[:header_tag] || :h2, header_message) <<
        (:p, 'There were problems with the following fields:') <<
        (:ul, error_messages),
      html
    )
  else
    ''
  end
end

#form(record_name, options = {}) {|contents| ... } ⇒ Object

Returns an entire form with input tags and everything for a specified Active Record object. Example (post is a new record that has a title using VARCHAR and a body using TEXT):

form("post") =>
  <form action='/post/create' method='post'>
    <p>
      <label for="post_title">Title</label><br />
      <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />
    </p>
    <p>
      <label for="post_body">Body</label><br />
      <textarea cols="40" id="post_body" name="post[body]" rows="20">
        Back to the hill and over it again!
      </textarea>
    </p>
    <input type='submit' value='Create' />
  </form>

It’s possible to specialize the form builder by using a different action name and by supplying another block renderer. Example (entry is a new record that has a message attribute using VARCHAR):

form("entry", :action => "sign", :input_block =>
     Proc.new { |record, column| "#{column.human_name}: #{input(record, column.name)}<br />" }) =>

  <form action='/post/sign' method='post'>
    Message:
    <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" /><br />
    <input type='submit' value='Sign' />
  </form>

It’s also possible to add additional content to the form by giving it a block, such as:

form("entry", :action => "sign") do |form|
  form << ("b", "Department")
  form << collection_select("department", "id", @departments, "id", "name")
end

Yields:

  • (contents)


59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/action_view/helpers/active_record_helper.rb', line 59

def form(record_name, options = {})
  record = instance_variable_get("@#{record_name}")

  options = options.symbolize_keys
  options[:action] ||= record.new_record? ? "create" : "update"
  action = url_for(:action => options[:action], :id => record)

  submit_value = options[:submit_value] || options[:action].gsub(/[^\w]/, '').capitalize

  contents = ''
  contents << hidden_field(record_name, :id) unless record.new_record?
  contents << all_input_tags(record, record_name, options)
  yield contents if block_given?
  contents << submit_tag(submit_value)

  ('form', contents, :action => action, :method => 'post', :enctype => options[:multipart] ? 'multipart/form-data': nil)
end

#input(record_name, method, options = {}) ⇒ Object

Returns a default input tag for the type of object returned by the method. Example (title is a VARCHAR column and holds “Hello World”):

input("post", "title") =>
  <input id="post_title" name="post[title]" size="30" type="text" value="Hello World" />


20
21
22
# File 'lib/action_view/helpers/active_record_helper.rb', line 20

def input(record_name, method, options = {})
  InstanceTag.new(record_name, method, self).to_tag(options)
end