I would like to create a Contractor
at the same time I am creating a User
when signing up with Devise
and then, associate the newly created Contractor
to the freshly created User
. Any ideas how to do it? (as I have no access to the controller creating the user with Devise if I'm right) Should I use build, and how?
I have read Profile model for Devise users?, Creating Profile for Devise users, How to create a profile for devise user? and tried several things but I am still stuck.
Here is what I have:
view - devise/registrations/new.html.erb
<% @title = "Sign up" %>
<div id="main" class="devise-1">
<div class="container-fluid">
<div class="row">
<header class="text-center">
<h1><%=app_name%></h1>
<p class="p-0 m-0 text-uppercase">Sign Up</p>
</header>
</div>
<div class="row mt-5">
<div class="col-12 col-md-6 mr-auto ml-auto">
<div class="card">
<div class="card-body">
<div class="container">
<% resource.build_contractor %>
<%= form_for resource, as: resource_name, url: registration_path(resource_name),
html: { class: "form-horizontal", novalidate: true } do |f| %>
<%= f.error_notification %>
<div class="form_group.row">
<%= f.fields_for :contractor, class: "row" do |contractor_form| %>
<%= contractor_form.label :name, class: "form-label" %>
<%= contractor_form.text_field :name, class: "form-control" %>
<% end %>
</div>
<%= f.form_group :email, class: "row" do |f| %>
<%= f.label :email, class: "form-label" %>
<%= f.email_field :email, autofocus: true, class: "form-control" %>
<%= f.error_messages %>
<% end %>
<%= f.form_group :password, class: "row" do |f| %>
<%= f.label :password, class: "form-label" %>
<%= f.password_field :password, class: "form-control" %>
<%= f.error_messages %>
<% end %>
<%= f.form_group :password_confirmation, class: "row" do |f| %>
<%= f.label :password_confirmation, class: "form-label" %>
<%= f.password_field :password_confirmation, class: "form-control" %>
<%= f.error_messages %>
<% end %>
<div class="row d-flex align-items-center mt-5">
<%= link_to "Log in?", new_session_path(resource_name) %>
<%= f.submit "Sign up", class: "btn btn-primary ml-auto" %>
</div>
<% end %>
</div>
</div>
</div>
</div>
</div>
</div>
model - user.rb
class User < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable, :trackable and :omniauthable
devise :database_authenticatable, :registerable,
:recoverable, :rememberable, :validatable
has_one :contractor
accepts_nested_attributes_for :contractor
has_many :clients, through: :contractor
has_many :construction_projects, through: :contractor
# DOES WORK TO CREATE A NEW CONTRACTOR WHEN SIGNING UP BUT CREATES EMPTY CONTRACTORS
# PER CONTRACTOR OF THE SEED, NEED TO FIND ANOTHER SOLUTION
# after_create :create_contractor
# Model validations
validates_associated :clients
validates_associated :construction_projects
validates :email, presence: true, uniqueness: true, format: { with: URI::MailTo::EMAIL_REGEXP }
def option_projects
unless self.contractor.nil?
projects = self.contractor.construction_projects.map{ |cp| [cp.name, cp.id] }
projects << ["Add a new project", "Add a new project"]
projects
end
end
private
def user_params
params.require(:user).permit(:email, :password, :password_confirmation, :remember_me, :user_attributes)
end
# DOES WORK TO CREATE A NEW CONTRACTOR WHEN SIGNING UP BUT CREATES EMPTY CONTRACTORS
# FOR CONTRACTORS OF THE SEED, NEED TO FIND ANOTHER SOLUTION
# def create_contractor
# @contractor = Contractor.create(user: self)
# end
end
model - contractor.rb
class Contractor < ApplicationRecord
belongs_to :user
has_many :workgroup_libraries
has_many :construction_projects, dependent: :destroy
has_many :clients, dependent: :destroy
has_many :documents, through: :construction_projects, dependent: :destroy
has_many :resources
has_many :resource_quantities, through: :resources
has_many :workgroups
mount_uploader :logo, LogoUploader
end
Thanks for your help!