Sharing code in respond_to blocks - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T08:33:26Z http://stackoverflow.com/feeds/question/244779 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks 1 Sharing code in respond_to blocks Barry Hess 2008-10-28T20:39:58Z 2008-10-29T12:08:48Z <p>I have the following <code>before_filter</code>:</p> <pre><code> def find_current_membership respond_to do |wants| wants.html { @current_membership = @group.memberships.for(@current_user) } wants.rss {} wants.js { @current_membership = @group.memberships.for(@current_user) } end end </code></pre> <p>I would like to share the code for the HTML and JS blocks. Is there a better way than just throwing the code into a method? I was hoping this would work:</p> <pre><code> def find_current_membership respond_to do |wants| wants.rss {} wants.all { @current_membership = @group.memberships.for(@current_user) } end end </code></pre> <p>But alas, it did not.</p> http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks/244831#244831 2 Answer by jonnii for Sharing code in respond_to blocks jonnii 2008-10-28T20:51:51Z 2008-10-28T20:51:51Z <p>In this case you could probably do something like:</p> <pre><code>before_filter :only =&gt; :find_current_membership do |c| load_current_membership if not request.format.rss? end </code></pre> <p>Alternatively you could use the request.format.rss? in your controller method to conditionally load the memberships.</p> <p>Either way your first step should be to refactor that into a method.</p> http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks/244893#244893 3 Answer by Cameron Booth for Sharing code in respond_to blocks Cameron Booth 2008-10-28T21:14:20Z 2008-10-28T21:14:20Z <p>If I'm reading this right, it looks like <code>find_current_membership</code> is your <code>before_filter</code> method, is that right? eg:</p> <pre><code>class SomeController &lt; ApplicationController before_filter :find_current_membership ... </code></pre> <p>I think it's a bit non-standard to use <code>respond_to</code> inside a <code>before_filter</code>, they are meant to just do something and render on failure. It seems to me like you want something more like this</p> <pre><code> class SomeController &lt; ApplicationController before_filter :find_current_membership def some_action # stuff, or maybe nothing end private def find_current_membership @current_membership = @group.memberships.for(@current_user) unless request.format.rss? end end </code></pre> http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks/246551#246551 1 Answer by allesklar for Sharing code in respond_to blocks allesklar 2008-10-29T12:08:48Z 2008-10-29T12:08:48Z <p>How about this simple solution!?</p> <pre><code>def find_current_membership @current_membership = @group.memberships.for(@current_user) respond_to do |wants| wants.html wants.rss {} wants.js end end </code></pre>