Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get parent object in child block when parent is part of collection #651

Open
waggl opened this issue Feb 15, 2016 · 1 comment
Open

Comments

@waggl
Copy link

waggl commented Feb 15, 2016

I have a template like this (have made generic):

collection @posts

post_as_root_object = root_object

child(:commenters) do |post|
  node(:position) do |commenter|
    commenter.position(post)
  end
end

Posts have many Commenters and Commenters have many Posts. The position method needs the post it is related to passed in (I know the example is a little contrived).

I can't figure out how to get the post that is currently being rendered. Passing a variable into the child block gives me the commenters collection (#393), and post_as_root_object is the posts collection.

How do I access the specific post that is being rendered in the position node?

@drewB
Copy link

drewB commented Feb 15, 2016

I made this issue request (accidentally logged in with our company's github). We were able to solve this with the following:

collection @posts

node(:commenters) do |post|
  post.commenters.map do |commenter|
    partial('posts/commenter', object: commenter, locals: {post: post})
  end
end

-------

#posts/commenter.rabl

object commenter
node(:position) do |commenter|
  commenter.position(locals[:post])
end

Would be great if there was a more elegant solution.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants