Module: ActiveScaffold::Helpers::FormColumnHelpers

Included in:
ViewHelpers
Defined in:
lib/active_scaffold/helpers/form_column_helpers.rb,
lib/active_scaffold/bridges/dragonfly/form_ui.rb,
lib/active_scaffold/bridges/carrierwave/form_ui.rb

Overview

Helpers that assist with the rendering of a Form Column

Instance Method Summary collapse

Instance Method Details

#active_scaffold_add_existing_input(options) ⇒ Object



300
301
302
303
304
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 300

def active_scaffold_add_existing_input(options)
  select_options = options_for_select(options_for_association(nested.association)) #unless column.through_association?
  select_options ||= options_for_select(active_scaffold_config.model.all.collect {|c| [h(c.to_label), c.id]})
  select_tag 'associated_id', ('<option value="">' + as_(:_select_) + '</option>' + select_options).html_safe unless select_options.empty?
end

#active_scaffold_add_existing_labelObject



306
307
308
309
310
311
312
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 306

def active_scaffold_add_existing_label
  if controller.respond_to?(:record_select_config)
    record_select_config.model.model_name.human
  else
    active_scaffold_config.model.model_name.human
  end
end

#active_scaffold_checkbox_list(column, select_options, associated_ids, options) ⇒ Object



124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 124

def active_scaffold_checkbox_list(column, select_options, associated_ids, options)
  html =  :ul, :class => "#{options[:class]} checkbox-list", :id => options[:id] do
    content = "".html_safe
    select_options.each_with_index do |option, i|
      label, id = option
      this_id = "#{options[:id]}_#{i}_id"
      content << (:li) do 
        check_box_tag("#{options[:name]}[]", id, associated_ids.include?(id), :id => this_id) <<
        (:label, h(label), :for => this_id)
      end
    end
    content
  end
  html << javascript_tag("ActiveScaffold.draggable_lists('#{options[:id]}')") if column.options[:draggable_lists]
  html
end

#active_scaffold_input_boolean(column, options) ⇒ Object

Column.type-based inputs



196
197
198
199
200
201
202
203
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 196

def active_scaffold_input_boolean(column, options)
  select_options = []
  select_options << [as_(:_select_), nil] if !column.virtual? && column.column[:allow_null]
  select_options << [as_(:true), true]
  select_options << [as_(:false), false]

  select_tag(options[:name], options_for_select(select_options, @record.send(column.name)), options)
end

#active_scaffold_input_carrierwave(column, options) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/active_scaffold/bridges/carrierwave/form_ui.rb', line 4

def active_scaffold_input_carrierwave(column, options)
  options = active_scaffold_input_text_options(options)
  carrierwave = @record.send("#{column.name}")
  if !carrierwave.file.blank?

    remove_field_options = {
      :name => options[:name].gsub(/\[#{column.name}\]$/, "[remove_#{column.name}]"),
      :id => 'remove_' + options[:id],
      :value => false
    }

    cache_field_options = {
      :name => options[:name].gsub(/\[#{column.name}\]$/, "[#{column.name}_cache]"),
      :id => options[:id] + '_cache'
    }

    js_remove_file_code = "jQuery(this).prev('input#remove_#{options[:id]}').val('true'); jQuery(this).parent().hide().next().show(); return false;";
    js_dont_remove_file_code = "jQuery(this).parents('div.carrierwave_controls').find('input#remove_#{options[:id]}').val('false'); return false;";

    input = file_field(:record, column.name, options.merge(:onchange => js_dont_remove_file_code))
    ( :div,
      (:div, (
          get_column_value(@record, column) + " | " +
            hidden_field(:record, "#{column.name}_cache", cache_field_options) +
            hidden_field(:record, "remove_#{column.name}", remove_field_options) +
            (:a, as_(:remove_file), {:href => '#', :onclick => js_remove_file_code})
        ).html_safe
      ) + (:div, input, :style => "display: none"),
      :class => 'carrierwave_controls'
    )
  else
    file_field(:record, column.name, options)
  end
end

#active_scaffold_input_checkbox(column, options) ⇒ Object



174
175
176
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 174

def active_scaffold_input_checkbox(column, options)
  check_box(:record, column.name, options.merge(column.options))
end

#active_scaffold_input_dragonfly(column, options) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/active_scaffold/bridges/dragonfly/form_ui.rb', line 4

def active_scaffold_input_dragonfly(column, options)
  options = active_scaffold_input_text_options(options)
  input = file_field(:record, column.name, options)
  dragonfly = @record.send("#{column.name}")
  if dragonfly.present?
    js_remove_file_code = "jQuery(this).prev().val('true'); jQuery(this).parent().hide().next().show(); return false;";

    content = active_scaffold_column_dragonfly(column, @record)
    (:div,
      content + " | " +
        hidden_field(:record, "remove_#{column.name}", :value => "false") +
        (:a, as_(:remove_file), {:href => '#', :onclick => js_remove_file_code}) 
    ) + (:div, input, :style => "display: none")
  else
    input
  end
end

#active_scaffold_input_enum(column, html_options) ⇒ Object



146
147
148
149
150
151
152
153
154
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 146

def active_scaffold_input_enum(column, html_options)
  options = { :selected => @record.send(column.name) }
  options_for_select = column.options[:options].collect do |text, value|
    active_scaffold_translated_option(column, text, value)
  end
  html_options.update(column.options[:html_options] || {})
  options.update(column.options)
  select(:record, column.name, options_for_select, options, html_options)
end

#active_scaffold_input_for(column, scope = nil, options = {}) ⇒ Object Also known as: form_column

This method decides which input to use for the given column. It does not do any rendering. It only decides which method is responsible for rendering.



7
8
9
10
11
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 7

def active_scaffold_input_for(column, scope = nil, options = {})
  options = active_scaffold_input_options(column, scope, options)
  options = update_columns_options(column, scope, options)
  active_scaffold_render_input(column, options)
end

#active_scaffold_input_options(column, scope = nil, options = {}) ⇒ Object

the standard active scaffold options used for class, name and scope



70
71
72
73
74
75
76
77
78
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 70

def active_scaffold_input_options(column, scope = nil, options = {})
  name = scope ? "record#{scope}[#{column.name}]" : "record[#{column.name}]"

  # Fix for keeping unique IDs in subform
  id_control = "record_#{column.name}_#{[params[:eid], params[:id]].compact.join '_'}"
  id_control += scope_id(scope) if scope

  { :name => name, :class => "#{column.name}-input", :id => id_control}.merge(options)
end

#active_scaffold_input_password(column, options) ⇒ Object



178
179
180
181
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 178

def active_scaffold_input_password(column, options)
  options = active_scaffold_input_text_options(options)
  password_field :record, column.name, options.merge(column.options)
end

#active_scaffold_input_plural_association(column, options) ⇒ Object



116
117
118
119
120
121
122
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 116

def active_scaffold_input_plural_association(column, options)
  associated_options = @record.send(column.association[:name]).collect {|r| [r.to_label, r.id]}
  select_options = associated_options | options_for_association(column.association)
  return (:span, as_(:no_options), :class => options[:class], :id => options[:id]) if select_options.empty?

  active_scaffold_checkbox_list(column, select_options, associated_options.collect {|a| a[1]}, options)
end

#active_scaffold_input_radio(column, html_options) ⇒ Object



166
167
168
169
170
171
172
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 166

def active_scaffold_input_radio(column, html_options)
  html_options.update(column.options[:html_options] || {})
  column.options[:options].inject('') do |html, (text, value)|
    text, value = active_scaffold_translated_option(column, text, value)
    html << (:label, radio_button(:record, column.name, value, html_options.merge(:id => html_options[:id] + '-' + value.to_s)) + text)
  end.html_safe
end

#active_scaffold_input_select(column, html_options) ⇒ Object



156
157
158
159
160
161
162
163
164
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 156

def active_scaffold_input_select(column, html_options)
  if column.singular_association?
    active_scaffold_input_singular_association(column, html_options)
  elsif column.plural_association?
    active_scaffold_input_plural_association(column, html_options)
  else
    active_scaffold_input_enum(column, html_options)
  end
end

#active_scaffold_input_singular_association(column, html_options) ⇒ Object

Form input methods



100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 100

def active_scaffold_input_singular_association(column, html_options)
  associated = @record.send(column.association[:name])

  select_options = options_for_association(column.association)
  select_options.unshift([ associated.to_label, associated.id ]) unless associated.nil? or select_options.find {|label, id| id == associated.id}

  method = column.name
  #html_options[:name] += '[id]'
  options = {:selected => associated.try(:id), :include_blank => as_(:_select_)}

  html_options.update(column.options[:html_options] || {})
  options.update(column.options)
  html_options[:name] = "#{html_options[:name]}[]" if (html_options[:multiple] == true && !html_options[:name].to_s.ends_with?("[]"))
  select(:record, method, select_options.uniq, options, html_options)
end

#active_scaffold_input_text_options(options = {}) ⇒ Object

the standard active scaffold options used for textual inputs



63
64
65
66
67
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 63

def active_scaffold_input_text_options(options = {})
  options[:autocomplete] = 'off'
  options[:class] = "#{options[:class]} text-input".strip
  options
end

#active_scaffold_input_textarea(column, options) ⇒ Object



183
184
185
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 183

def active_scaffold_input_textarea(column, options)
  text_area(:record, column.name, options.merge(:cols => column.options[:cols], :rows => column.options[:rows], :size => column.options[:size]))
end

#active_scaffold_input_virtual(column, options) ⇒ Object



187
188
189
190
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 187

def active_scaffold_input_virtual(column, options)
  options = active_scaffold_input_text_options(options)
  text_field :record, column.name, options.merge(column.options)
end

#active_scaffold_render_input(column, options) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 15

def active_scaffold_render_input(column, options)
  begin
    # first, check if the dev has created an override for this specific field
    if override_form_field?(column)
      send(override_form_field(column), @record, options)
    # second, check if the dev has specified a valid form_ui for this column
    elsif column.form_ui and override_input?(column.form_ui)
      send(override_input(column.form_ui), column, options)
    # fallback: we get to make the decision
    else
      if column.association
        if column.form_ui.nil?
          # its an association and nothing is specified, we will assume form_ui :select
          active_scaffold_input_select(column, options)
        else
          # if we get here, it's because the column has a form_ui but not one ActiveScaffold knows about.
          raise "Unknown form_ui `#{column.form_ui}' for column `#{column.name}'"
        end
      elsif column.virtual?
        options[:value] = format_number_value(@record.send(column.name), column.options) if column.number?
        active_scaffold_input_virtual(column, options)

      else # regular model attribute column
        # if we (or someone else) have created a custom render option for the column type, use that
        if override_input?(column.column[:type])
          send(override_input(column.column[:type]), column, options)
        # final ultimate fallback: use rails' generic input method
        else
          # for textual fields we pass different options
          text_types = [:text, :string, :integer, :float, :decimal, :date, :time, :datetime]
          options = active_scaffold_input_text_options(options) if text_types.include?(column.column[:type])
          if column.column[:type] == :string && options[:maxlength].blank?
            options[:maxlength] = column.maxlength
            options[:size] ||= options[:maxlength].to_i > 30 ? 30 : options[:maxlength]
          end
          options[:include_blank] = true if column.column[:allow_null] and [:date, :datetime, :time].include?(column.column[:type])
          options[:value] = format_number_value(@record.send(column.name), column.options) if column.number?
          text_field(:record, column.name, options.merge(column.options))
        end
      end
    end
  rescue Exception => e
    logger.error Time.now.to_s + "#{e.inspect} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
    raise e
  end
end

#active_scaffold_translated_option(column, text, value = nil) ⇒ Object



141
142
143
144
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 141

def active_scaffold_translated_option(column, text, value = nil)
  value = text if value.nil?
  [(text.is_a?(Symbol) ? column.active_record_class.human_attribute_name(text) : text), value]
end

#column_renders_as(column) ⇒ Object

Macro-level rendering decisions for columns



279
280
281
282
283
284
285
286
287
288
289
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 279

def column_renders_as(column)
  if column.is_a? ActiveScaffold::DataStructures::ActionColumns
    return :subsection
  elsif (column.active_record_class.respond_to?(:lock_column) and column.active_record_class.lock_column.to_s == column.name.to_s) or column.form_ui == :hidden
    return :hidden
  elsif column.association.nil? or column.form_ui or !active_scaffold_config_for(column.association.associated_class).actions.include?(:subform)
    return :field
  else
    return :subform
  end
end

#column_scope(column) ⇒ Object



291
292
293
294
295
296
297
298
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 291

def column_scope(column)
  name = column.nested ? column.nested_attribute_name : column.name
  if column.plural_association?
    "[#{name}][#{@record.id || generate_temporary_id}]"
  else
    "[#{name}]"
  end
end

#form_partial_for_column(column, renders_as = nil) ⇒ Object



253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 253

def form_partial_for_column(column, renders_as = nil)
  renders_as ||= column_renders_as(column)
  if override_form_field_partial?(column)
    override_form_field_partial(column)
  elsif renders_as == :field or override_form_field?(column)
    "form_attribute"
  elsif renders_as == :subform
    "form_association"
  elsif renders_as == :hidden
    "form_hidden_attribute"
  end
end

#onsubmitObject



205
206
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 205

def onsubmit
end

#override_form_field(column) ⇒ Object Also known as: override_form_field?



231
232
233
234
235
236
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 231

def override_form_field(column)
  method_with_class = override_form_field_name(column, true)
  return method_with_class if respond_to?(method_with_class)
  method = override_form_field_name(column)
  method if respond_to?(method)
end

#override_form_field_name(column, class_prefix = false) ⇒ Object

the naming convention for overriding form fields with helpers



240
241
242
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 240

def override_form_field_name(column, class_prefix = false)
  "#{clean_class_name(column.active_record_class.name) + '_' if class_prefix}#{clean_column_name(column.name)}_form_column"
end

#override_form_field_partial(column) ⇒ Object

the naming convention for overriding form fields with helpers



226
227
228
229
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 226

def override_form_field_partial(column)
  path = active_scaffold_controller_for(column.active_record_class).controller_path
  File.join(path, "#{clean_column_name(column.name)}_form_column")
end

#override_form_field_partial?(column) ⇒ Boolean

Returns:

  • (Boolean)


221
222
223
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 221

def override_form_field_partial?(column)
  template_exists?(override_form_field_partial(column), true)
end

#override_input(form_ui) ⇒ Object

the naming convention for overriding form input types with helpers



249
250
251
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 249

def override_input(form_ui)
  "active_scaffold_input_#{form_ui}"
end

#override_input?(form_ui) ⇒ Boolean

Returns:

  • (Boolean)


244
245
246
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 244

def override_input?(form_ui)
  respond_to?(override_input(form_ui))
end

#override_subform_partial(column, subform_partial) ⇒ Object



217
218
219
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 217

def override_subform_partial(column, subform_partial)
  File.join(active_scaffold_controller_for(column.association.associated_class).controller_path, subform_partial) if column_renders_as(column) == :subform
end

#override_subform_partial?(column, subform_partial) ⇒ Boolean

add functionality for overriding subform partials from association class path

Returns:

  • (Boolean)


213
214
215
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 213

def override_subform_partial?(column, subform_partial)
  template_exists?(override_subform_partial(column, subform_partial), true)
end

#subform_partial_for_column(column) ⇒ Object



266
267
268
269
270
271
272
273
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 266

def subform_partial_for_column(column)
  subform_partial = "#{active_scaffold_config_for(column.association.associated_class).subform.layout}_subform"
  if override_subform_partial?(column, subform_partial)
    override_subform_partial(column, subform_partial)
  else
    subform_partial
  end
end

#update_columns_options(column, scope, options) ⇒ Object



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/active_scaffold/helpers/form_column_helpers.rb', line 80

def update_columns_options(column, scope, options)
  if column.update_columns
    form_action = params[:action] == 'edit' ? :update : :create
    url_params = {:action => 'render_field', :id => params[:id], :column => column.name}
    url_params[:eid] = params[:eid] if params[:eid]
    url_params[:controller] = controller.class.active_scaffold_controller_for(@record.class).controller_path if scope
    url_params[:scope] = scope if scope

    options[:class] = "#{options[:class]} update_form".strip
    options['data-update_url'] = url_for(url_params)
    options['data-update_send_form'] = true if column.send_form_on_update_column
    options['data-update_send_form_selector'] = column.options[:send_form_selector] if column.options[:send_form_selector]
  end
  options
end