Reputation: 53
Im trying to use Searchkick to run a search and return based on multiple models.
My book model contains this
class Book < ActiveRecord::Base
searchkick
has_many :book_subjects
has_many :subjects, through: :book_subjects
belongs_to :author
belongs_to :publisher
end
and then my controller has this
def index
if params[:search].present?
@books = Book.search(params[:search], operator: "or")
else
@books = Book.all
end
end
I want the search results to search the associated models and return any results there too -- so the boo subject name, the author and the publisher.
thanks
Upvotes: 5
Views: 4686
Reputation: 667
In your Book model you need to have a search_data
block for the indexing.
def search_data
attributes.merge(
author_name: author(&:name)
publisher_name: publisher(&:name)
subjects_name: subjects.map(&:name)
)
end
this will add the associations to your index.
You use the .map
method for the has_many
associations.
Upvotes: 19