RoR: Best way to build 'dashboard' type page? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T00:09:39Zhttp://stackoverflow.com/feeds/question/318018http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page2RoR: Best way to build 'dashboard' type page?Jason Miesionczek2008-11-25T16:36:46Z2008-12-07T19:01:21Z
<p>In the admin section of a website i am building i would like to put together a dashboard page, or 'quick look' type page where the most recent changes/additions/etc in several different areas can be viewed.</p>
<p>I was thinking the best way to do this would be to use partials and have each partial contain the markup for the data i need to display. </p>
<p>My question is, is this the best approach? and if so, how do i separate the logic and presentation of these partials? For instance how do i put the logic in the dashboard controller, but keep the presentation in the partial rhtml?</p>
http://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page/318082#3180822Answer by jcapote for RoR: Best way to build 'dashboard' type page?jcapote2008-11-25T16:53:29Z2008-11-25T16:53:29Z<p>Partials are definitely the way to go, especially when you can pass in arbitrary data into them to make them do stuff. To answer your logic separation issue specifically, you would use: </p>
<pre><code><%= render :partial => "name_of_partial", :locals => { :some_var => @data_from_model } %>
</code></pre>
<p>Then, inside your partial, you'd have access to @data_from_model via the some_var variable.</p>
http://stackoverflow.com/questions/318018/ror-best-way-to-build-dashboard-type-page/318108#3181081Answer by bradheintz for RoR: Best way to build 'dashboard' type page?bradheintz2008-11-25T17:01:56Z2008-11-25T17:01:56Z<p>The controller should be responsible for retrieving the data you need to present (and, usually implicitly, passing it to the view). Build no HTML here.</p>
<p>The partials, of course, are where you figure out presentation - you can make it a list, graph, Google Visualization widget, a single number in 40-point font, whatever.</p>
<pre><code><%= render :partial => 'new_users_last7days', ;locals => { :new_user_count => @new_users.size } %>
</code></pre>