Module: Binco::FormHelper

Defined in:
app/helpers/binco/form_helper.rb

Instance Method Summary collapse

Instance Method Details

#bootstrap_form_for(record, options = {}, &block) ⇒ Object



3
4
5
6
# File 'app/helpers/binco/form_helper.rb', line 3

def bootstrap_form_for(record, options = {}, &block)
  options[:builder] = BootstrapFormBuilder
  form_for(record, options, &block)
end

#bootstrap_form_tag(url_for_options = {}, options = {}, &block) ⇒ Object



18
19
20
21
22
# File 'app/helpers/binco/form_helper.rb', line 18

def bootstrap_form_tag(url_for_options = {}, options = {}, &block)
  options[:acts_like_form_tag] = true
  options[:url] = url_for_options
  bootstrap_form_for("", options, &block)
end

#bootstrap_form_with(model: nil, scope: nil, url: nil, format: nil, **options, &block) ⇒ Object



8
9
10
11
12
13
14
15
16
# File 'app/helpers/binco/form_helper.rb', line 8

def bootstrap_form_with(model: nil, scope: nil, url: nil, format: nil, **options, &block)
  options[:builder] = BootstrapFormBuilder

  if block_given?
    form_with(model: model, scope: scope, url: url, format: format, **options, &block)
  else
    form_with(model: model, scope: scope, url: url, format: format, **options)
  end
end

#materialize_form_for(record, options = {}, &block) ⇒ Object



24
25
26
27
# File 'app/helpers/binco/form_helper.rb', line 24

def materialize_form_for(record, options = {}, &block)
  options[:builder] = MaterializeFormBuilder
  form_for(record, options, &block)
end

#materialize_form_tag(url_for_options = {}, options = {}, &block) ⇒ Object



29
30
31
32
33
# File 'app/helpers/binco/form_helper.rb', line 29

def materialize_form_tag(url_for_options = {}, options = {}, &block)
  options[:acts_like_form_tag] = true
  options[:url] = url_for_options
  materialize_form_for("", options, &block)
end