Class: Ransack::Helpers::FormBuilder

Inherits:
Object
  • Object
show all
Defined in:
lib/ransack/helpers/form_builder.rb

Instance Method Summary collapse

Instance Method Details

#attribute_fields(*args, &block) ⇒ Object



110
111
112
# File 'lib/ransack/helpers/form_builder.rb', line 110

def attribute_fields(*args, &block)
  search_fields(:a, args, block)
end

#attribute_select(options = nil, html_options = nil, action = nil) ⇒ Object

Raises:

  • (ArgumentError)


53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'lib/ransack/helpers/form_builder.rb', line 53

def attribute_select(options = nil, html_options = nil, action = nil)
  options = options || {}
  html_options = html_options || {}
  action = action || Constants::SEARCH
  default = options.delete(:default)
  raise ArgumentError, formbuilder_error_message(
    "#{action}_select") unless object.respond_to?(:context)
  options[:include_blank] = true unless options.has_key?(:include_blank)
  bases = [''.freeze].freeze + association_array(options[:associations])
  if bases.size > 1
    collection = attribute_collection_for_bases(action, bases)
    object.name ||= default if can_use_default?(
      default, :name, mapped_values(collection.flatten(2))
      )
    template_grouped_collection_select(collection, options, html_options)
  else
    collection = collection_for_base(action, bases.first)
    object.name ||= default if can_use_default?(
      default, :name, mapped_values(collection)
      )
    template_collection_select(:name, collection, options, html_options)
  end
end

#combinator_select(options = {}, html_options = {}) ⇒ Object



163
164
165
166
# File 'lib/ransack/helpers/form_builder.rb', line 163

def combinator_select(options = {}, html_options = {})
  template_collection_select(
    :m, combinator_choices, options, html_options)
end

#condition_fields(*args, &block) ⇒ Object



102
103
104
# File 'lib/ransack/helpers/form_builder.rb', line 102

def condition_fields(*args, &block)
  search_fields(:c, args, block)
end

#grouping_fields(*args, &block) ⇒ Object



106
107
108
# File 'lib/ransack/helpers/form_builder.rb', line 106

def grouping_fields(*args, &block)
  search_fields(:g, args, block)
end

#label(method, *args, &block) ⇒ Object



37
38
39
40
41
42
43
44
45
# File 'lib/ransack/helpers/form_builder.rb', line 37

def label(method, *args, &block)
  options = args.extract_options!
  text = args.first
  i18n = options[:i18n] || {}
  text ||= object.translate(
    method, i18n.reverse_merge(:include_associations => true)
    ) if object.respond_to? :translate
  super(method, text, options, &block)
end

#predicate_fields(*args, &block) ⇒ Object



114
115
116
# File 'lib/ransack/helpers/form_builder.rb', line 114

def predicate_fields(*args, &block)
  search_fields(:p, args, block)
end

#predicate_select(options = {}, html_options = {}) ⇒ Object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'lib/ransack/helpers/form_builder.rb', line 137

def predicate_select(options = {}, html_options = {})
  options[:compounds] = true if options[:compounds].nil?
  default = options.delete(:default) || Constants::CONT

  keys =
  if options[:compounds]
    Predicate.names
  else
    Predicate.names.reject { |k| k.match(/_(any|all)$/) }
  end
  if only = options[:only]
    if only.respond_to? :call
      keys = keys.select { |k| only.call(k) }
    else
      only = Array.wrap(only).map(&:to_s)
      keys = keys.select {
        |k| only.include? k.sub(/_(any|all)$/, ''.freeze)
      }
    end
  end
  collection = keys.map { |k| [k, Translate.predicate(k)] }
  object.predicate ||= Predicate.named(default) if
    can_use_default?(default, :predicate, keys)
  template_collection_select(:p, collection, options, html_options)
end

#search_fields(name, args, block) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/ransack/helpers/form_builder.rb', line 122

def search_fields(name, args, block)
  args << {} unless args.last.is_a?(Hash)
  args.last[:builder] ||= options[:builder]
  args.last[:parent_builder] = self
  options = args.extract_options!
  objects = args.shift
  objects ||= @object.send(name)
  objects = [objects] unless Array === objects
  name = "#{options[:object_name] || object_name}[#{name}]"
  objects.inject(ActiveSupport::SafeBuffer.new) do |output, child|
    output << @template.fields_for("#{name}[#{options[:child_index] ||
    nested_child_index(name)}]", child, options, &block)
  end
end

#sort_direction_select(options = {}, html_options = {}) ⇒ Object



77
78
79
80
81
82
83
# File 'lib/ransack/helpers/form_builder.rb', line 77

def sort_direction_select(options = {}, html_options = {})
  unless object.respond_to?(:context)
    raise ArgumentError,
    formbuilder_error_message('sort_direction'.freeze)
  end
  template_collection_select(:dir, sort_array, options, html_options)
end

#sort_fields(*args, &block) ⇒ Object



90
91
92
# File 'lib/ransack/helpers/form_builder.rb', line 90

def sort_fields(*args, &block)
  search_fields(:s, args, block)
end


94
95
96
# File 'lib/ransack/helpers/form_builder.rb', line 94

def sort_link(attribute, *args)
  @template.sort_link @object, attribute, *args
end

#sort_select(options = {}, html_options = {}) ⇒ Object



85
86
87
88
# File 'lib/ransack/helpers/form_builder.rb', line 85

def sort_select(options = {}, html_options = {})
  attribute_select(options, html_options, 'sort'.freeze) +
  sort_direction_select(options, html_options)
end

#sort_url(attribute, *args) ⇒ Object



98
99
100
# File 'lib/ransack/helpers/form_builder.rb', line 98

def sort_url(attribute, *args)
  @template.sort_url @object, attribute, *args
end

#submit(value = nil, options = {}) ⇒ Object



47
48
49
50
51
# File 'lib/ransack/helpers/form_builder.rb', line 47

def submit(value = nil, options = {})
  value, options = nil, value if value.is_a?(Hash)
  value ||= Translate.word(:search).titleize
  super(value, options)
end

#value_fields(*args, &block) ⇒ Object



118
119
120
# File 'lib/ransack/helpers/form_builder.rb', line 118

def value_fields(*args, &block)
  search_fields(:v, args, block)
end