Question

I am trying to add Kaminari to my Rails app. I have included the gem and this is what my controller looks like:

def index
    if params[:year]
      if params[:year].size > 0
        @songs = Song.where("year like ?", params[:year]).page(params[:page])
      elsif params[:artist].size > 0
        @songs = Song.where("artist_name like ?", params[:artist]).page(params[:page])
      elsif params[:song].size > 0
        @songs = Song.where("title like ?", params[:song]).page(params[:page])
      end
    else
      @songs = Song.first(10).page(params[:page])
    end
  end

and then adding

<%= paginate @songs %>

in my view, the error I am getting is:

undefined method `page' for #<Array:0x007fab0455b4a8>

Not sure why this is coming up as I followed the docs step for step.

Was it helpful?

Solution

Kaminari uses paginate_array to paginate an array. 2 solutions:

First, you can use limit(10) instead of first(10):

@songs = Song.limit(10).page(params[:page])

Second, use paginate_array

@songs = Kaminari.paginate_array(Song.first(10)).page(params[:page])

OTHER TIPS

I'd advise you rewrite your controller slightly. Better yet, move your filters to the model or a filter class. Look into present? for testing existence of params as that will check for nil and empty.

def index
  @songs = Song

  @songs = @songs.where("year like ?", params[:year])          if params[:year]
  @songs = @songs.where("artist_name like ?", params[:artist]) if params[:artist]
  @songs = @songs.where("title like ?", params[:song])         if params[:song]

  @songs = @songs.limit(10).page(params[:page])
end

Tl;DR If you use Mongoid, use kaminari-mongoid instead of kaminari alone.

At Github it said, Kaminari supports Mongoid...so I went and installed gem 'kaminari' with the result: unknown method :page...later i found the mongoid adapter: kaminari-mongoid and that works now.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top