Module: Reform::Form::Composition::ClassMethods
- Defined in:
- lib/reform/form/composition.rb
Instance Method Summary collapse
-
#model(main_model, options = {}) ⇒ Object
Same as ActiveModel::model but allows you to define the main model in the composition using
:on. -
#model_class ⇒ Object
include Reform::Form::ActiveModel::ClassMethods # ::model.
- #property(name, options = {}) ⇒ Object
Instance Method Details
#model(main_model, options = {}) ⇒ Object
Same as ActiveModel::model but allows you to define the main model in the composition using :on.
class CoverSongForm < Reform::Form
model :song, on: :cover_song
30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/reform/form/composition.rb', line 30 def model(main_model, ={}) super composition_model = [:on] || main_model delegate composition_model => :model # #song => model.song # FIXME: this should just delegate to :model as in FB, and the comp would take care of it internally. delegate [:persisted?, :to_key, :to_param] => composition_model # #to_key => song.to_key alias_method main_model, composition_model # #hit => model.song. end |
#model_class ⇒ Object
include Reform::Form::ActiveModel::ClassMethods # ::model.
15 16 17 |
# File 'lib/reform/form/composition.rb', line 15 def model_class # DISCUSS: needed? @model_class ||= Reform::Composition.from(representer_class) end |
#property(name, options = {}) ⇒ Object
19 20 21 22 23 |
# File 'lib/reform/form/composition.rb', line 19 def property(name, ={}) super.tap do |definition| delegate [:on] => :@model # form.band -> composition.band end end |