Class: Effective::FormBuilder

Inherits:
ActionView::Helpers::FormBuilder
  • Object
show all
Defined in:
app/models/effective/form_builder.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(object_name, object, template, options) ⇒ FormBuilder

Returns a new instance of FormBuilder.



8
9
10
11
12
13
14
15
16
17
18
# File 'app/models/effective/form_builder.rb', line 8

def initialize(object_name, object, template, options)
  @template = template

  @layout = (options.delete(:layout) || :vertical).to_sym
  @action = options.delete(:action)
  @readonly = options.delete(:readonly)
  @disabled = options.delete(:disabled)
  @remote = options[:remote]

  super
end

Instance Attribute Details

#actionObject

Returns the value of attribute action.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def action
  @action
end

#disabledObject

Returns the value of attribute disabled.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def disabled
  @disabled
end

#layoutObject

Returns the value of attribute layout.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def layout
  @layout
end

#readonlyObject

Returns the value of attribute readonly.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def readonly
  @readonly
end

#remoteObject

Returns the value of attribute remote.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def remote
  @remote
end

#templateObject

Returns the value of attribute template.



4
5
6
# File 'app/models/effective/form_builder.rb', line 4

def template
  @template
end

Instance Method Details

#check_box(name, options = {}) ⇒ Object



24
25
26
27
28
29
30
# File 'app/models/effective/form_builder.rb', line 24

def check_box(name, options = {})
  Effective::FormInputs::CheckBox.new(name, options, builder: self).to_html {
    checked_value = options.fetch(:checked_value, '1')
    unchecked_value = options.fetch(:unchecked_value, '0')
    super(name, options.except(:checked_value, :unchecked_value), checked_value, unchecked_value)
  }
end

#checks(name, choices = nil, *args) ⇒ Object



32
33
34
35
# File 'app/models/effective/form_builder.rb', line 32

def checks(name, choices = nil, *args)
  options = args.extract_options!.merge!(collection: choices)
  Effective::FormInputs::Checks.new(name, options, builder: self).to_html
end

#date_field(name, options = {}) ⇒ Object



37
38
39
# File 'app/models/effective/form_builder.rb', line 37

def date_field(name, options = {})
  Effective::FormInputs::DateField.new(name, options, builder: self).to_html { super(name, options) }
end

#datetime_field(name, options = {}) ⇒ Object



41
42
43
# File 'app/models/effective/form_builder.rb', line 41

def datetime_field(name, options = {})
  Effective::FormInputs::DatetimeField.new(name, options, builder: self).to_html { super(name, options) }
end

#delete(name = 'Remove', url = nil, options = {}, &block) ⇒ Object



45
46
47
48
# File 'app/models/effective/form_builder.rb', line 45

def delete(name = 'Remove', url = nil, options = {}, &block)
  options[:href] ||= url
  Effective::FormInputs::Delete.new(name, options, builder: self).to_html(&block)
end

#editor(name, options = {}, &block) ⇒ Object



50
51
52
# File 'app/models/effective/form_builder.rb', line 50

def editor(name, options = {}, &block)
  Effective::FormInputs::Editor.new(name, options, builder: self).to_html(&block)
end

#email_field(name, options = {}) ⇒ Object



54
55
56
# File 'app/models/effective/form_builder.rb', line 54

def email_field(name, options = {})
  Effective::FormInputs::EmailField.new(name, options, builder: self).to_html { super(name, options) }
end

#error(name = nil, options = {}) ⇒ Object Also known as: errors



58
59
60
# File 'app/models/effective/form_builder.rb', line 58

def error(name = nil, options = {})
  Effective::FormInputs::ErrorField.new(name, options, builder: self).to_html()
end

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



63
64
65
# File 'app/models/effective/form_builder.rb', line 63

def file_field(name, options = {})
  Effective::FormInputs::FileField.new(name, options, builder: self).to_html { super(name, options) }
end

#float_field(name, options = {}) ⇒ Object



67
68
69
# File 'app/models/effective/form_builder.rb', line 67

def float_field(name, options = {})
  Effective::FormInputs::FloatField.new(name, options, builder: self).to_html
end

#form_group(name = nil, options = {}, &block) ⇒ Object



71
72
73
# File 'app/models/effective/form_builder.rb', line 71

def form_group(name = nil, options = {}, &block)
  Effective::FormInputs::FormGroup.new(name, options, builder: self).to_html(&block)
end

#hide_if(*args, &block) ⇒ Object

Logics



155
156
157
# File 'app/models/effective/form_builder.rb', line 155

def hide_if(*args, &block)
  Effective::FormLogics::HideIf.new(*args, builder: self).to_html(&block)
end

#number_field(name, options = {}) ⇒ Object



81
82
83
# File 'app/models/effective/form_builder.rb', line 81

def number_field(name, options = {})
  Effective::FormInputs::NumberField.new(name, options, builder: self).to_html { super(name, options) }
end

#password_field(name, options = {}) ⇒ Object



85
86
87
# File 'app/models/effective/form_builder.rb', line 85

def password_field(name, options = {})
  Effective::FormInputs::PasswordField.new(name, options, builder: self).to_html { super(name, options) }
end

#percent_field(name, options = {}) ⇒ Object



89
90
91
# File 'app/models/effective/form_builder.rb', line 89

def percent_field(name, options = {})
  Effective::FormInputs::PercentField.new(name, options, builder: self).to_html
end

#phone_field(name, options = {}) ⇒ Object Also known as: tel_field, telephone_field



93
94
95
# File 'app/models/effective/form_builder.rb', line 93

def phone_field(name, options = {})
  Effective::FormInputs::PhoneField.new(name, options, builder: self).to_html { super(name, options) }
end

#price_field(name, options = {}) ⇒ Object



99
100
101
# File 'app/models/effective/form_builder.rb', line 99

def price_field(name, options = {})
  Effective::FormInputs::PriceField.new(name, options, builder: self).to_html { super(name, options) }
end

#radios(name, choices = nil, *args) ⇒ Object



128
129
130
131
# File 'app/models/effective/form_builder.rb', line 128

def radios(name, choices = nil, *args)
  options = args.extract_options!.merge!(collection: choices)
  Effective::FormInputs::Radios.new(name, options, builder: self).to_html
end

This is gonna be a post?



76
77
78
79
# File 'app/models/effective/form_builder.rb', line 76

def remote_link_to(name, url, options = {}, &block)
  options[:href] ||= url
  Effective::FormInputs::RemoteLinkTo.new(name, options, builder: self).to_html(&block)
end

#save(name = 'Save', options = {}) ⇒ Object



103
104
105
106
# File 'app/models/effective/form_builder.rb', line 103

def save(name = 'Save', options = {})
  (options = name; name = 'Save') if name.kind_of?(Hash)
  Effective::FormInputs::Save.new(name, options, builder: self).to_html { super(name, options) }
end

#select(name, choices = nil, *args) ⇒ Object



108
109
110
111
# File 'app/models/effective/form_builder.rb', line 108

def select(name, choices = nil, *args)
  options = args.extract_options!.merge!(collection: choices)
  Effective::FormInputs::Select.new(name, options, builder: self).to_html
end

#select_or_text(name, name_text, choices = nil, *args) ⇒ Object



113
114
115
116
# File 'app/models/effective/form_builder.rb', line 113

def select_or_text(name, name_text, choices = nil, *args)
  options = args.extract_options!.merge!(name_text: name_text, collection: choices)
  Effective::FormInputs::SelectOrText.new(name, options, builder: self).to_html
end

#show_if(*args, &block) ⇒ Object



159
160
161
# File 'app/models/effective/form_builder.rb', line 159

def show_if(*args, &block)
  Effective::FormLogics::ShowIf.new(*args, builder: self).to_html(&block)
end

#static_field(name, options = {}, &block) ⇒ Object



123
124
125
126
# File 'app/models/effective/form_builder.rb', line 123

def static_field(name, options = {}, &block)
  options = { value: options } if options.kind_of?(String)
  Effective::FormInputs::StaticField.new(name, options, builder: self).to_html(&block)
end

#submit(name = 'Save', options = {}, &block) ⇒ Object



118
119
120
121
# File 'app/models/effective/form_builder.rb', line 118

def submit(name = 'Save', options = {}, &block)
  (options = name; name = 'Save') if name.kind_of?(Hash)
  Effective::FormInputs::Submit.new(name, options, builder: self).to_html(&block)
end

#super_number_fieldObject



20
# File 'app/models/effective/form_builder.rb', line 20

alias_method :super_number_field, :number_field

#super_text_areaObject



22
# File 'app/models/effective/form_builder.rb', line 22

alias_method :super_text_area, :text_area

#super_text_fieldObject



21
# File 'app/models/effective/form_builder.rb', line 21

alias_method :super_text_field, :text_field

#text_area(name, options = {}) ⇒ Object



133
134
135
# File 'app/models/effective/form_builder.rb', line 133

def text_area(name, options = {})
  Effective::FormInputs::TextArea.new(name, options, builder: self).to_html { super(name, options) }
end

#text_field(name, options = {}) ⇒ Object



137
138
139
# File 'app/models/effective/form_builder.rb', line 137

def text_field(name, options = {})
  Effective::FormInputs::TextField.new(name, options, builder: self).to_html { super(name, options) }
end

#time_field(name, options = {}) ⇒ Object



141
142
143
# File 'app/models/effective/form_builder.rb', line 141

def time_field(name, options = {})
  Effective::FormInputs::TimeField.new(name, options, builder: self).to_html { super(name, options) }
end

#time_zone_select(name, options = {}) ⇒ Object



145
146
147
148
# File 'app/models/effective/form_builder.rb', line 145

def time_zone_select(name, options = {})
  opts = options.merge(collection: Effective::FormInputs::TimeZoneSelect.time_zone_collection)
  Effective::FormInputs::TimeZoneSelect.new(name, opts, builder: self).to_html
end

#url_field(name, options = {}) ⇒ Object



150
151
152
# File 'app/models/effective/form_builder.rb', line 150

def url_field(name, options = {})
  Effective::FormInputs::UrlField.new(name, options, builder: self).to_html { super(name, options) }
end