Module: Admin::BaseHelper

Defined in:
app/helpers/admin/base_helper.rb

Instance Method Summary collapse

Instance Method Details

#additional_field_for(controller, field) ⇒ Object



141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'app/helpers/admin/base_helper.rb', line 141

def additional_field_for(controller, field)
  field[:use] ||= 'text_field'
  options = field[:options] || {}

  object_name, method = controller.controller_name.singularize, attribute_name_for(field[:name])

  case field[:use]
  when 'check_box'
    check_box(object_name, method, options, field[:checked_value] || 1, field[:unchecked_value] || 0)
  when 'radio_button'
    html = ''
    field[:value].call(controller, field).each do |value|
      html << radio_button(object_name, method, value, options)
      html << " #{value.to_s} "
    end
    html
  when 'select'
    select(object_name, method, field[:value].call(controller, field), options, field[:html_options] || {})
  else
    value = field[:value] ? field[:value].call(controller, field) : get_additional_field_value(controller, field)
    __send__(field[:use], object_name, method, options.merge(:value => value))
  end # case
end

#class_for_error(model, method) ⇒ Object



23
24
25
26
# File 'app/helpers/admin/base_helper.rb', line 23

def class_for_error(model, method)
  if error_message_on :product, :name
  end
end

#error_message_on(object, method, options = {}) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
# File 'app/helpers/admin/base_helper.rb', line 11

def error_message_on(object, method, options = {})
  object = convert_to_model(object)
  obj = object.respond_to?(:errors) ? object : instance_variable_get("@#{object}")

  if obj && obj.errors[method].present?
    errors = obj.errors[method].map{|err| h(err)}.join('<br />').html_safe
    (:span, errors, :class => 'formError')
  else
    ''
  end
end

#field_container(model, method, options = {}, &block) ⇒ Object



3
4
5
6
7
8
9
# File 'app/helpers/admin/base_helper.rb', line 3

def field_container(model, method, options = {}, &block)
  css_classes = options[:class].to_a
  if error_message_on(model, method).present?
    css_classes << 'withError'
  end
  ('p', capture(&block), :class => css_classes.join(' '), :id => "#{model}_#{method}_field")
end

#generate_html(form_builder, method, options = {}) ⇒ Object

This method demonstrates the use of the :child_index option to render a form partial for, for instance, client side addition of new nested records.

This specific example creates a link which uses javascript to add a new form partial to the DOM.

<%= form_for @project do |project_form| %>
  <div id="tasks">
    <%= project_form.fields_for :tasks do |task_form| %>
      <%= render :partial => 'task', :locals => { :f => task_form } %>
    <% end %>
  </div>
<% end %>


61
62
63
64
65
66
67
68
69
70
# File 'app/helpers/admin/base_helper.rb', line 61

def generate_html(form_builder, method, options = {})
  options[:object] ||= form_builder.object.class.reflect_on_association(method).klass.new
  options[:partial] ||= method.to_s.singularize
  options[:form_builder_local] ||= :f

  form_builder.fields_for(method, options[:object], :child_index => 'NEW_RECORD') do |f|
    render(:partial => options[:partial], :locals => { options[:form_builder_local] => f })
  end

end

#generate_template(form_builder, method, options = {}) ⇒ Object



72
73
74
# File 'app/helpers/admin/base_helper.rb', line 72

def generate_template(form_builder, method, options = {})
  escape_javascript generate_html(form_builder, method, options)
end

#get_additional_field_value(controller, field) ⇒ Object

You can add additional_fields to the product and variant models. See section 4.2 here: spreecommerce.com/documentation/extensions.html If you do choose to add additional_fields, you can utilize the :use parameter to set the input type for any such fields. For example, :use => ‘check_box’ In the event that you add this functionality, the following method takes care of rendering the proper input type and logic for the supported input-types, which are text_field, check_box, radio_button, and select.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'app/helpers/admin/base_helper.rb', line 31

def get_additional_field_value(controller, field)
  attribute = attribute_name_for(field[:name])

  value = eval("@" + controller.controller_name.singularize + "." + attribute)

  if value.nil? && controller.controller_name == "variants"
    value = @variant.product.has_attribute?(attribute) ? @variant.product[attribute] : nil
  end

  if value.nil?
    return value
  else
    return field.key?(:format) ? sprintf(field[:format], value) : value
  end
end

renders set of hidden fields and button to add new record using nested_attributes



173
174
175
176
177
178
179
# File 'app/helpers/admin/base_helper.rb', line 173

def link_to_add_fields(name, append_to_selector, f, association)
  new_object = f.object.class.reflect_on_association(association).klass.new
  fields = f.fields_for(association, new_object, :child_index => "new_#{association}") do |builder|
    render(association.to_s.singularize + "_fields", :f => builder)
  end
  link_to_function(name, raw("add_fields(\"#{append_to_selector}\", \"#{association}\", \"#{escape_javascript(fields)}\")"), :class => 'add_fields')
end

renders hidden field and link to remove record using nested_attributes



182
183
184
# File 'app/helpers/admin/base_helper.rb', line 182

def link_to_remove_fields(name, f)
  f.hidden_field(:_destroy) + link_to_with_icon(:delete, name, '#', :class => 'remove_fields')
end

#preference_field(form, field, options) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
# File 'app/helpers/admin/base_helper.rb', line 83

def preference_field(form, field, options)
  case options[:type]
  when :integer
    form.text_field(field, {
        :size => 10,
        :class => 'input_integer',
        :readonly => options[:readonly],
        :disabled => options[:disabled]
      }
    )
  when :boolean
    form.check_box(field, {:readonly => options[:readonly],
        :disabled => options[:disabled]})
  when :string
    form.text_field(field, {
        :size => 10,
        :class => 'input_string',
        :readonly => options[:readonly],
        :disabled => options[:disabled]
      }
    )
  when :password
    form.password_field(field, {
        :size => 10,
        :class => 'password_string',
        :readonly => options[:readonly],
        :disabled => options[:disabled]
      }
    )
  when :text
    form.text_area(field,
      {:rows => 15, :cols => 85, :readonly => options[:readonly],
        :disabled => options[:disabled]}
    )
  else
    form.text_field(field, {
        :size => 10,
        :class => 'input_string',
        :readonly => options[:readonly],
        :disabled => options[:disabled]
      }
    )
  end
end

#preference_fields(object, form) ⇒ Object



128
129
130
131
132
133
134
135
136
137
138
139
# File 'app/helpers/admin/base_helper.rb', line 128

def preference_fields(object, form)
  return unless object.respond_to?(:preferences)
  object.preferences.keys.map{ |key|
    next unless object.class.preference_definitions.has_key? key

    definition = object.class.preference_definitions[key]
    type = definition.instance_eval{@type}.to_sym

    form.label("preferred_#{key}", t(key)+": ") +
      preference_field(form, "preferred_#{key}", :type => type)
  }.join("<br />").html_safe
end

#product_picker_field(name, value) ⇒ Object



165
166
167
168
169
170
# File 'app/helpers/admin/base_helper.rb', line 165

def product_picker_field(name, value)
  products = Product.with_ids(value)
  product_names_hash = products.inject({}){|memo,item| memo[item.id] = item.name; memo}
  product_rules = products.collect{|p|{:id=>p.id,:name=>p.name}}
  %(<input type="text" name="#{name}" value="#{value}" class="tokeninput products" data-names='#{product_names_hash.to_json}' data-pre='#{product_rules.to_json}'/>).html_safe
end

#remove_nested(fields) ⇒ Object



76
77
78
79
80
81
# File 'app/helpers/admin/base_helper.rb', line 76

def remove_nested(fields)
  out = ''
  out << fields.hidden_field(:_destroy) unless fields.object.new_record?
  out << (link_to icon("delete"), "#", :class => "remove")
  out.html_safe
end