ruby-on-railsrubyform-fornested-form-forform-with

Rails 6 nested not displaying form_with


class CustomerType < ApplicationRecord
  belongs_to :workspace, inverse_of: :customer_type
  validates_presence_of :workspace
end

class Workspace < ApplicationRecord
  validates :name, presence: true, uniqueness: { case_sensitive: false }

  has_one :customer_type
  accepts_nested_attributes_for :customer_type, allow_destroy: true
end
# controller

  def new
    @workspace = Workspace.new
    @workspace.build_customer_type
  end
# _form
<%= form_with(model: [:back_office, @workspace]) do |form| %>
...
  <%= form.fields_for :customer_type, @workspace.customer_type do |s| %>
    <%= s.label :build, 'Build', class: 'form-check-label'%>
    <%= s.radio_button :build, 'build', class: 'form-check-input'%>
  <% end %>
...
<% end %>


class CreateCustomerTypes < ActiveRecord::Migration[6.1]
  def change
    create_table :customer_types, id: :uuid do |t|
      t.boolean :build, default: false
      t.boolean :grow, default: false
      t.boolean :connector, default: false
      t.references :workspace, null: false, foreign_key: true, type: :uuid

      t.timestamps
    end
  end
end

The creation between workspace and customerType is done well my puts in the controller shows me the class

I know there is probably a post with the solution but I couldn't find it

it does not appear in the form is there an error?


Solution

  • your form was not indented correctly:

    it should look like

    # _form
    <%= form_with(model: [:back_office, @workspace]) do |form| %>
    ...
      <%= form.fields_for :customer_type, @workspace.customer_type do |s| %>
        <%= s.label :build, 'Build', class: 'form-check-label'%>
        <%= s.radio_button :build, 'build', class: 'form-check-input'%>
      <% end %>
    ...
    <% end %>