Giter Site home page Giter Site logo

Comments (8)

pekpon avatar pekpon commented on August 17, 2024 2

I do this, in the controller:

def show
@Article = Article.find(params[:id])
impressionist(@Article)
end

and its ok!

from impressionist.

 avatar commented on August 17, 2024

Same problem here. Any ideas?

from impressionist.

 avatar commented on August 17, 2024

before_filter :only => [:show] do |controller|
params[:id] = @video.id
end

impressionist :actions => [:show]

Kind of ugly but it works now.

from impressionist.

pekpon avatar pekpon commented on August 17, 2024

I have the same problem in Rails 3.2.0...

from impressionist.

JapArt avatar JapArt commented on August 17, 2024

I have the same problem with Rails 3.2.1

from impressionist.

andreydjason avatar andreydjason commented on August 17, 2024

Yep, having the same issue here, using friendly_id with slugged. Rails 3.1.1

UPDATE
Well, my option was to change the behavior of impressionist.
First changed the column impressionable_id to string.
Modified impressionable.rb, in line 13 I added:

if self.respond_to?(:friendly_id)
  has_many :impressions, :as => :impressionable, :finder_sql => Proc.new {
    %Q{
      SELECT `impressions`.* FROM `impressions` WHERE `impressions`.`impressionable_id` = '#{slug}' AND `impressions`.`impressionable_type` = '#{self.class.to_s}'
    }
  }
else
  has_many :impressions, :as => :impressionable
end

This is not the best workaround, but works for me, maybe because I'm using impressionist in a "default" way for most of my models and controllers, but maybe not work in other situations. If someone know a better way to do that, please tell us :)

Another caveat, the specific SQL above sometimes return wrong, if for example you do @object.impressions.to_sql will return a wrong SQL, BTW @object.impressions will return the correct objects.

UPDATE2
The impressionist_count method broken with "select", this is baaad...
For now I've commented the lines 47 to 49 (the line numbers change with the add above) in the impressionist_count method to work for me, while cant find a workaround.

UPDATE3
For this situation, it needs to change to the impressionist_count method, set imps.all.size to imps.count (I dont know if I'm right, but this improve the SQL too)

Maybe someone find a better way to improve all this "behaviors" that are really dirty... thanks

from impressionist.

andreydjason avatar andreydjason commented on August 17, 2024

thanks

from impressionist.

JapArt avatar JapArt commented on August 17, 2024

Works for me too. Thanks!

from impressionist.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.