I have been battling with an issue with my partial form fields; error is:
undefined method `input' for #
Background:
I have set up a polymorphic association from this great stack overflow post:
+1 to Vapire and friends on this, great job.
There were a couple error that related to the overridden create method in the registrations controller.
I will include the pieces of the puzzle for clarity:
migration:
def change
add_column :users, :rolable_id, :integer
add_column :users, :user_type, :string
end
app/models/user.rb
class User < ActiveRecord::Base
# the usual devise stuff....
belongs_to :rolable, :polymorphic => true
def coach?
if user_type == 'Coach'
true
end
end
def player?
if user_type == 'Player'
true
end
end
end
app/models/coach.rb
class Coach < ActiveRecord::Base
attr_accessible :url
has_one :user, :as => :rolable
end
app/controllers/registrations_controller.rb (updated from github devise sources)
class RegistrationsController < Devise::RegistrationsController
def create
build_resource
# customized code begin
# crate a new child instance depending on the given user type
child_class = params[:user][:user_type].camelize.constantize
resource.rolable = child_class.new(params[child_class.to_s.underscore.to_sym])
# first check if child instance is valid
# cause if so and the parent instance is valid as well
# it's all being saved at once
valid = resource.valid?
valid = resource.rolable.valid? && valid
# customized code end
if valid && resource.save # customized code
if resource.active_for_authentication?
set_flash_message :notice, :signed_up if is_navigational_format?
sign_up(resource_name, resource)
respond_with resource, :location => after_sign_up_path_for(resource)
else
set_flash_message :notice, :"signed_up_but_#{resource.inactive_message}" if is_navigational_format?
expire_session_data_after_sign_in!
respond_with resource, :location => after_inactive_sign_up_path_for(resource)
end
else
clean_up_passwords resource
respond_with resource
end
end
end
app/config/routes.rb
devise_for :users, :path_names => {
:sign_in => 'login',
:sign_out => 'logout'
}, :controllers => {
:registrations => "registrations"
}
resources :users
devise_scope :user do
match 'player/sign_up' => 'registrations#new', :user => { :user_type => 'player' }
match 'coach/sign_up' => 'registrations#new', :user => { :user_type => 'coach' }
end
The shared sign up form, app/views/devise/registrations/new.html.erb
<h3>Sign up:
<% if params[:user][:user_type].downcase.eql? 'coach' %>
Coach account
<% else %>
Player account
<% end %>
</h3>
<%
params[:user][:user_type] ||= 'player'
if ["player", "coach"].include? params[:user][:user_type].downcase
child_class_name = params[:user][:user_type].downcase.camelize
user_type = params[:user][:user_type].downcase
else
child_class_name = "Player"
user_type = "player"
end
resource.rolable = child_class_name.constantize.new if resource.rolable.nil?
%>
<div class="row">
<div class="span6">
<%= simple_form_for(resource, :as => resource_name, :url => registration_path(resource_name), :html => {:class => 'form-horizontal' } ) do |f| %>
<%= my_devise_error_messages! %>
<div class="form-inputs">
<%= f.input :name, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-user"></i></span><%= f.input_field :name, :autofocus => true, :required => true, :size => '' %>
<% end %>
<%= f.input :nickname, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-tag"></i></span><%= f.input_field :nickname, :required => false, :size => '' %>
<% end %>
<%= f.input :email, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-envelope"></i></span><%= f.input_field :email, :required => true, :size => '' %>
<% end %>
<%= f.input :password, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-eye-close"></i></span><%= f.input_field :password, :required => true, :size => '' %>
<% end %>
<%= f.input :password_confirmation, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-eye-close"></i></span><%= f.input_field :password_confirmation, :required => true, :size => '' %>
<% end %>
<% # customized code begin %>
<%= fields_for resource.rolable do |rf| %>
<% render :partial => "#{child_class_name.underscore}_fields", :locals => { :f => rf } %>
<% end %>
<%= hidden_field :user, :user_type, :value => user_type %>
<% # customized code end %>
</div>
<div class="form-actions">
<%= f.button :submit, "Sign up", :class => 'btn-primary' %>
</div>
<% end %>
<%= render "devise/shared/links" %>
</div>
And now, a working version of the _coach partial:
<%= f.label :url %>
<%= f.text_field :url %>
But my problem is the twitter bootstrap style of form tags, as you can see in the main form above.
When I attempt the same type of tag in the partial:
<%= f.input :url, :wrapper => :prepend do %>
<span class="add-on"><i class="icon-globe"></i></span><%= f.input_field :url, :required => false %>
<% end %>
The error being: undefined method `input' for #
It seems to me that the objects I need in the partial are out of scope. If that is so, why does f.text_field work as can be seen in the working example.
Baffled is me.
Any help, recomendations for reading would be great
<%= f.simple_fields_for resource.rolable do |rf| %>instead of just<%= fields_for resource.rolable do |rf| %>? – Sergey Kishenin Feb 26 at 7:22