class Para::Inputs::NestedOneInput

Attributes

model[R]

Public Instance Methods

input(wrapper_options = nil) click to toggle source
# File lib/para/inputs/nested_one_input.rb, line 6
def input(wrapper_options = nil)
  input_html_options[:class] << "nested-one"

  parent_model = object.class
  association = object.association(attribute_name)
  relation = parent_model.reflect_on_association(attribute_name)

  resource = object.send(attribute_name)
  @model = (resource && resource.class) || relation.klass

  unless resource
    # Build association without trying to save the new record
    resource = case association
    when ActiveRecord::Associations::HasOneThroughAssociation
      association.send(:replace, model.new)
    when ActiveRecord::Associations::HasOneAssociation
      association.send(:replace, model.new, false)
    else
      association.send(:replace, model.new)
    end
  end

  locals = options.fetch(:locals, {})

  template.render(
    partial: 'para/inputs/nested_one',
    locals: {
      form: @builder,
      model: model,
      resource: resource,
      attribute_name: attribute_name,
      nested_locals: locals,
      collapsible: collapsible || subclass,
      dom_identifier: dom_identifier,
      subclass: subclass,
      subclasses: subclasses,
      add_button_label: add_button_label,
      add_button_class: add_button_class
    }
  )
end

Private Instance Methods

collapsible() click to toggle source
# File lib/para/inputs/nested_one_input.rb, line 50
def collapsible
  options.fetch(:collapsible, false)
end