module ActiveScaffold::Helpers::SearchColumnHelpers

Helpers that assist with the rendering of a Form Column

Public Instance Methods

active_scaffold_search_boolean(column, options) click to toggle source

we can’t use active_scaffold_input_boolean because we need to have a nil value even when column can’t be null to decide whether search for this field or not

# File lib/active_scaffold/helpers/search_column_helpers.rb, line 104
def active_scaffold_search_boolean(column, options)
  select_options = []
  select_options << [as_(:_select_), nil]
  select_options << [as_(:true), true]
  select_options << [as_(:false), false]

  select_tag(options[:name], options_for_select(select_options, column.column.type_cast(field_search_params[column.name])))
end
active_scaffold_search_checkbox(column, options) click to toggle source

we can’t use checkbox ui because it’s not possible to decide whether search for this field or not

active_scaffold_search_date(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 208
def active_scaffold_search_date(column, options)
  active_scaffold_search_datetime(column, options.merge!(:discard_time => true))
end
active_scaffold_search_datetime(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 199
def active_scaffold_search_datetime(column, options)
  opt_value, from_value, to_value = field_search_params_range_values(column)
  options = column.options.merge(options)
  helper = "select_#{'date' unless options[:discard_date]}#{'time' unless options[:discard_time]}"
  
  send(helper, field_search_datetime_value(from_value), {:include_blank => true, :prefix => "#{options[:name]}[from]"}.merge(options)) << 
  ' - '.html_safe << send(helper, field_search_datetime_value(to_value), {:include_blank => true, :prefix => "#{options[:name]}[to]"}.merge(options))
end
active_scaffold_search_decimal(column, options) click to toggle source
active_scaffold_search_float(column, options) click to toggle source
active_scaffold_search_for(column) click to toggle source

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.

# File lib/active_scaffold/helpers/search_column_helpers.rb, line 7
def active_scaffold_search_for(column)
  options = active_scaffold_search_options(column)

  # first, check if the dev has created an override for this specific field for search
  if (method = override_search_field(column))
    send(method, @record, options)

  # second, check if the dev has specified a valid search_ui for this column, using specific ui for searches
  elsif column.search_ui and (method = override_search(column.search_ui))
    send(method, column, options)

  # third, check if the dev has specified a valid search_ui for this column, using generic ui for forms
  elsif column.search_ui and (method = override_input(column.search_ui))
    send(method, column, options)

  # fourth, check if the dev has created an override for this specific field
  elsif (method = override_form_field(column))
    send(method, @record, options)

  # fallback: we get to make the decision
  else
    if column.association or column.virtual?
      active_scaffold_search_text(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 (method = override_search(column.column.type))
        send(method, column, options)
      # if we (or someone else) have created a custom render option for the column type, use that
      elsif (method = override_input(column.column.type))
        send(method, 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]
        options = active_scaffold_input_text_options(options) if text_types.include?(column.column.type)
        text_field(:record, column.name, options.merge(column.options))
      end
    end
  end
end
active_scaffold_search_integer(column, options) click to toggle source
active_scaffold_search_multi_select(column, options) click to toggle source

Search input methods

# File lib/active_scaffold/helpers/search_column_helpers.rb, line 58
def active_scaffold_search_multi_select(column, options)
  associated = options.delete :value
  associated = [associated].compact unless associated.is_a? Array
  associated.collect!(&:to_i)
  
  if column.association
    select_options = options_for_association(column.association, false)
  else
    select_options = column.options[:options].collect do |text, value|
      active_scaffold_translated_option(column, text, value)
    end
  end
  return as_(:no_options) if select_options.empty?

  active_scaffold_checkbox_list(column, select_options, associated, options)
end
active_scaffold_search_null(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 115
def active_scaffold_search_null(column, options)
  select_options = []
  select_options << [as_(:_select_), nil]
  select_options.concat ActiveScaffold::Finder::NullComparators.collect {|comp| [as_(comp), comp]}
  select_tag(options[:name], options_for_select(select_options, field_search_params[column.name]))
end
active_scaffold_search_options(column) click to toggle source

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

# File lib/active_scaffold/helpers/search_column_helpers.rb, line 50
def active_scaffold_search_options(column)
  { :name => "search[#{column.name}]", :class => "#{column.name}-input", :id => "search_#{column.name}", :value => field_search_params[column.name] }
end
active_scaffold_search_range(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 162
def active_scaffold_search_range(column, options)
  opt_value, from_value, to_value = field_search_params_range_values(column)

  select_options = active_scaffold_search_range_comparator_options(column)
  if active_scaffold_search_range_string?(column)
    text_field_size = 15
    opt_value ||= '%?%'
  else
    text_field_size = 10
    opt_value ||= '='
  end
  
  from_value = controller.class.condition_value_for_numeric(column, from_value)
  to_value = controller.class.condition_value_for_numeric(column, to_value)
  from_value = format_number_value(from_value, column.options) if from_value.is_a?(Numeric)
  to_value = format_number_value(to_value, column.options) if to_value.is_a?(Numeric)
  html = select_tag("#{options[:name]}[opt]",
        options_for_select(select_options, opt_value),
        :id => "#{options[:id]}_opt",
        :class => "as_search_range_option")
  html << content_tag("span", :id => "#{options[:id]}_numeric", :style => ActiveScaffold::Finder::NullComparators.include?(opt_value) ? "display: none" : nil) do
    text_field_tag("#{options[:name]}[from]", from_value, active_scaffold_input_text_options(:id => options[:id], :size => text_field_size)) <<
    content_tag(:span, (' - ' + text_field_tag("#{options[:name]}[to]", to_value,
        active_scaffold_input_text_options(:id => "#{options[:id]}_to", :size => text_field_size))).html_safe,
        :id => "#{options[:id]}_between", :class => "as_search_range_between", :style => (opt_value == 'BETWEEN') ? nil : "display: none")
  end
  content_tag :span, html, :class => 'search_range'
end
active_scaffold_search_range_comparator_options(column) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 142
def active_scaffold_search_range_comparator_options(column)
  select_options = ActiveScaffold::Finder::NumericComparators.collect {|comp| [as_(comp.downcase.to_sym), comp]}
  if active_scaffold_search_range_string?(column)
    select_options.unshift *ActiveScaffold::Finder::StringComparators.collect {|title, comp| [as_(title), comp]}
  end
  if include_null_comparators? column
    select_options += ActiveScaffold::Finder::NullComparators.collect {|comp| [as_(comp), comp]}
  end
  select_options
end
active_scaffold_search_range_string?(column) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 129
def active_scaffold_search_range_string?(column)
  (column.column && column.column.text?) || column.search_ui == :string
end
active_scaffold_search_select(column, html_options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 75
def active_scaffold_search_select(column, html_options)
  associated = html_options.delete :value
  if column.association
    associated = associated.is_a?(Array) ? associated.map(&:to_i) : associated.to_i unless associated.nil?
    method = column.association.macro == :belongs_to ? column.association.foreign_key : column.name
    select_options = options_for_association(column.association, true)
  else
    method = column.name
    select_options = column.options[:options].collect do |text, value|
      active_scaffold_translated_option(column, text, value)
    end
  end

  options = { :selected => associated }.merge! column.options
  html_options.merge! column.options[:html_options] || {}
  if html_options[:multiple]
    html_options[:name] += '[]'
  else
    options[:include_blank] ||= as_(:_select_) 
  end
  select(:record, method, select_options, options, html_options)
end
active_scaffold_search_string(column, options) click to toggle source
active_scaffold_search_text(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 98
def active_scaffold_search_text(column, options)
  text_field :record, column.name, active_scaffold_input_text_options(options)
end
active_scaffold_search_time(column, options) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 211
def active_scaffold_search_time(column, options)
  active_scaffold_search_datetime(column, options.merge!(:discard_date => true))
end
active_scaffold_search_timestamp(column, options) click to toggle source
field_search_datetime_value(value) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 195
def field_search_datetime_value(value)
  DateTime.new(value[:year].to_i, value[:month].to_i, value[:day].to_i, value[:hour].to_i, value[:minute].to_i, value[:second].to_i) unless value.nil? || value[:year].blank?
end
field_search_params_range_values(column) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 122
def field_search_params_range_values(column)
  values = field_search_params[column.name]
  return nil if values.nil?
  return values[:opt], (values[:from].blank? ? nil : values[:from]), (values[:to].blank? ? nil : values[:to])
  
end
include_null_comparators?(column) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 133
def include_null_comparators?(column)
  return column.options[:null_comparators] if column.options.has_key? :null_comparators
  if column.association
    column.association.macro != :belongs_to || active_scaffold_config.columns[column.association.foreign_key].column.try(:null)
  else
    column.column.try(:null)
  end
end
override_search_field(column) click to toggle source

Search column override signatures

# File lib/active_scaffold/helpers/search_column_helpers.rb, line 220
def override_search_field(column)
  override_helper column, 'search_column'
end
searched_by?(column) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 244
def searched_by?(column)
  value = field_search_params[column.name]
  case value
  when Hash
    !value['from'].blank?
  when String
    !value.blank?
  else
    false
  end
end
visibles_and_hiddens(search_config) click to toggle source
# File lib/active_scaffold/helpers/search_column_helpers.rb, line 230
def visibles_and_hiddens(search_config)
  visibles = [] 
  hiddens = []
  search_config.columns.each do |column|
    next unless column.search_sql
    if search_config.optional_columns.include?(column.name) && !searched_by?(column)
      hiddens << column
    else
      visibles << column
    end
  end
  return visibles, hiddens
end