Giter Site home page Giter Site logo

Comments (4)

kossnocorp avatar kossnocorp commented on July 30, 2024

I mean more cleanly solution than:

node :image_thumb do |o|
  o.offer_images.history_image(:small_thumb)
end

node :image_normal do |o|
  o.offer_images.history_image(:small_promo)
end

from rabl.

nesquena avatar nesquena commented on July 30, 2024

Not sure of a better way unfortunately. If you have any suggestions for syntax or what you would want to write let me know. This seems like a very specific case. It is almost like a 'glue' but not quite

from rabl.

kossnocorp avatar kossnocorp commented on July 30, 2024

I understand this is really not typical case. I think solution may look like:

child :offer_images do
  associtation_code(:thumb)  { |a| a.history_image(:small_thumb) }
  associtation_code(:normal) { |a| a.history_image(:small_promo) }
end

or

child :offer_images do
  associtation do
    code(:thumb)  { |a| a.history_image(:small_thumb) }
    code(:normal) { |a| a.history_image(:small_promo) }
  end
end

But I not sure about inclusion this feature in rabl. Let me know if it's ok and I will write patch.

from rabl.

nesquena avatar nesquena commented on July 30, 2024

I find this to be too specific a use case unless I see more people with this issue crop up all the time. One nice thing is adding your own helpers should be pretty easy with the helpers command. Basically add a new helper module file to your rails or padrino app and then do

helper ExampleHelper

and in theory you could write any simple api method extension yourself:

def associative_child
  # ...
end

Just a thought but (if you dont mind) going to close this for now.

from rabl.

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.