I've followed the Auto-Complete Association Railscast to add 'Artists' to my 'Releases'. Everything appeared to be working nicely, but I then noticed it's creating a new artist everytime, instead of using an existing artist if selected via the autocomplete.
Unlike the railscast, i'm using a many to many relationship and artists are also accepted as a nested attribute under releases, so i'm aware the issue is probably related to either or both of those.
Below are my models and relevant views. It seems to me that the line self.artist = Artist.find_or_create_by_name(name) if name.present? isn't being used. I thought this was because I have f.autocomplete_field :name instead of f.autocomplete_field :artist_name but when I change to that I get a no method error!
Can anyone help please?
class Release < ActiveRecord::Base
has_many :artist_releases
has_many :artists, :through => :artist_releases
accepts_nested_attributes_for :artists, :reject_if => lambda { |a| a[:name].blank? }
accepts_nested_attributes_for :artist_releases
def artist_name
artist.try(:name)
end
def artist_name=(name)
self.artist = Artist.find_or_create_by_name(name) if name.present?
end
end
class ArtistRelease < ActiveRecord::Base
belongs_to :artist
belongs_to :release
end
class Artist < ActiveRecord::Base
has_many :artist_releases
has_many :releases, :through => :artist_releases
end
#Release Form
<%= form_for(@release) do |f| %>
<%= f.text_field :title, :class => "text" %>
<%= f.fields_for :artists do |builder| %>
<%= render 'artist_fields', :f => builder %>
<% end %>
<p><%= link_to_add_fields "Add Artist", f, :artists %> </p>
<% end %>
#Artist Fields
<p>
<%= f.label :artist_name, "Artist" %><br />
<%= f.autocomplete_field :name, autocomplete_artist_name_releases_path, :id_element => '#artist_id', :class => "text" %>
</p>