Class: Tramway::Core::ApplicationForm
- Inherits:
-
Reform::Form
- Object
- Reform::Form
- Tramway::Core::ApplicationForm
- Defined in:
- app/forms/tramway/core/application_form.rb
Class Method Summary collapse
- .association(property) ⇒ Object
- .associations(*properties) ⇒ Object
- .enumerized_attributes ⇒ Object
- .full_class_name_association(association_name) ⇒ Object
- .full_class_name_associations ⇒ Object
- .model_class ⇒ Object
- .reflect_on_association(*args) ⇒ Object
- .validation_group_class ⇒ Object
Instance Method Summary collapse
- #build_errors ⇒ Object
- #delegating(object) ⇒ Object
- #form_properties(**args) ⇒ Object
-
#initialize(object) ⇒ ApplicationForm
constructor
A new instance of ApplicationForm.
- #model_name ⇒ Object
- #properties ⇒ Object
- #submit(params) ⇒ Object
Constructor Details
#initialize(object) ⇒ ApplicationForm
Returns a new instance of ApplicationForm.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'app/forms/tramway/core/application_form.rb', line 3 def initialize(object) super(object).tap do @@model_class = object.class @@enumerized_attributes = object.class.enumerized_attributes @@associations ||= [] self.class.full_class_name_associations.each do |association, class_name| if class_name.is_a? Array self.class.send(:define_method, "#{association}=") do |value| association_class = send("#{association}_type") super association_class.constantize.find value end else self.class.send(:define_method, "#{association}=") do |value| super class_name.find value end end end delegating object end end |
Class Method Details
.association(property) ⇒ Object
61 62 63 64 65 |
# File 'app/forms/tramway/core/application_form.rb', line 61 def association(property) properties property @@associations ||= [] @@associations << property end |
.associations(*properties) ⇒ Object
67 68 69 70 71 |
# File 'app/forms/tramway/core/application_form.rb', line 67 def associations(*properties) properties.each do |property| association property end end |
.enumerized_attributes ⇒ Object
95 96 97 |
# File 'app/forms/tramway/core/application_form.rb', line 95 def enumerized_attributes @@enumerized_attributes end |
.full_class_name_association(association_name) ⇒ Object
91 92 93 |
# File 'app/forms/tramway/core/application_form.rb', line 91 def full_class_name_association(association_name) full_class_name_associations[association_name] end |
.full_class_name_associations ⇒ Object
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'app/forms/tramway/core/application_form.rb', line 73 def full_class_name_associations @@associations&.reduce({}) do |hash, association| = @@model_class.reflect_on_all_associations(:belongs_to).select do |a| a.name == association.to_sym end.first&. if if [:polymorphic] hash.merge! association => @@model_class.send("#{association}_type").values else class_name = [:class_name] || association.to_s.camelize hash.merge!(association => class_name.constantize) end end hash end end |
.model_class ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'app/forms/tramway/core/application_form.rb', line 103 def model_class if @@model_class @@model_class else model_class_name ||= self.name.to_s.sub(/Form$/, '') begin @@model_class = model_class_name.constantize rescue error = Tramway::Error.new(plugin: :core, method: :model_class, message: ("There is not model class name for #{self.name}. Should be #{model_class_name} or you can use another class to initialize form object.")) raise error. end end end |
.reflect_on_association(*args) ⇒ Object
99 100 101 |
# File 'app/forms/tramway/core/application_form.rb', line 99 def reflect_on_association(*args) @@model_class.reflect_on_association(*args) end |
.validation_group_class ⇒ Object
117 118 119 |
# File 'app/forms/tramway/core/application_form.rb', line 117 def validation_group_class ActiveModel end |
Instance Method Details
#build_errors ⇒ Object
47 |
# File 'app/forms/tramway/core/application_form.rb', line 47 def build_errors; end |
#delegating(object) ⇒ Object
49 50 51 52 53 54 55 56 |
# File 'app/forms/tramway/core/application_form.rb', line 49 def delegating(object) methods = [:to_key, :errors] methods.each do |method| self.class.send(:define_method, method) do object.send method end end end |
#form_properties(**args) ⇒ Object
39 40 41 |
# File 'app/forms/tramway/core/application_form.rb', line 39 def form_properties(**args) @form_properties = args end |
#model_name ⇒ Object
35 36 37 |
# File 'app/forms/tramway/core/application_form.rb', line 35 def model_name @@model_class.model_name end |
#properties ⇒ Object
43 44 45 |
# File 'app/forms/tramway/core/application_form.rb', line 43 def properties @form_properties || [] end |
#submit(params) ⇒ Object
26 27 28 29 30 31 32 33 |
# File 'app/forms/tramway/core/application_form.rb', line 26 def submit(params) if params save if validate params else error = Tramway::Error.new(plugin: :core, method: :title, message: ('ApplicationForm::Params should not be nil')) raise error. end end |