Class: EacRailsUtils::CommonFormHelper::FormBuilder

Inherits:
Object
  • Object
show all
Includes:
AssociationSelectField, CommonTextFields, CurrencyField, DateField, FieldsFor, FileField, RadioSelectField, SelectField, TimeField, YearMonthField
Defined in:
app/helpers/eac_rails_utils/common_form_helper/form_builder.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/date_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/fields_for.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/file_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/time_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/select_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/currency_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/year_month_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/common_text_fields.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/radio_select_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/association_select_field.rb,
app/helpers/eac_rails_utils/common_form_helper/form_builder/searchable_association_field.rb

Defined Under Namespace

Modules: AssociationSelectField, CommonTextFields, CurrencyField, DateField, FieldsFor, FileField, RadioSelectField, SelectField, TimeField, YearMonthField Classes: SearchableAssociationField

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from YearMonthField

#year_month_field

Methods included from TimeField

#time_field

Methods included from SelectField

#select_field

Methods included from FieldsFor

#fields_for

Methods included from RadioSelectField

#radio_select_field

Methods included from DateField

#date_field

Methods included from CurrencyField

#currency_field

Methods included from AssociationSelectField

#association_select_field

Constructor Details

#initialize(form, helper) ⇒ FormBuilder

Returns a new instance of FormBuilder.



24
25
26
27
28
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 24

def initialize(form, helper)
  @form = form
  @helper = helper
  @field_errors_showed = Set.new
end

Instance Attribute Details

#field_errors_showedObject (readonly)

Returns the value of attribute field_errors_showed.



22
23
24
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 22

def field_errors_showed
  @field_errors_showed
end

#formObject (readonly)

Returns the value of attribute form.



22
23
24
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 22

def form
  @form
end

#helperObject (readonly)

Returns the value of attribute helper.



22
23
24
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 22

def helper
  @helper
end

Instance Method Details

#check_box_field(field_name, options = {}) ⇒ Object



38
39
40
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 38

def check_box_field(field_name, options = {})
  field(field_name, options) { @form.check_box(field_name, options) }
end

#file_field(field_name, options = {}) ⇒ Object



42
43
44
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 42

def file_field(field_name, options = {})
  field(field_name, options) { @form.file_field(field_name, options) }
end

#hidden_field(field_name, options = {}) ⇒ Object



34
35
36
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 34

def hidden_field(field_name, options = {})
  @form.hidden_field(field_name, options)
end

#model_instanceObject



30
31
32
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 30

def model_instance
  form.object
end

#searchable_association_field(field_name, options = {}) ⇒ Object



46
47
48
49
50
51
# File 'app/helpers/eac_rails_utils/common_form_helper/form_builder.rb', line 46

def searchable_association_field(field_name, options = {})
  saf = SearchableAssociationField.new(self, field_name, options)
  saf.hidden_input <<
    field(field_name, options) { saf.visible_input } <<
    saf.javascript_tag
end