Rails inline ERb effects on HTML structure
MAR
31
2007
When using Ruby on Rails, ERb (embedded Ruby) is used a LOT in the X/HTML. There are two types of ERb,
An evaluation block:
<% some_code %>
And an output block:
<%= @print_this_variable %>
These blocks are necessary when using Rails, and I've noticed that when I do a 'View Source' (via the Web Developer addon for Firefox, of course), I see a lot of funky spacing and line breaking where the ERb's have been evaluated. Probably fine for most people, but it makes reading the outputted HTML code a hassle.
It turns out that there are really three ways to use the evaluation ERb that can affect your spacing and line-breaking.
Firstly, the output block is used just like you'd expect to use it. If your code says this:
<p> Text before ERb. <%= "code_goes_here" %> Text after ERb </p>
The resulting HTML will look just like this:
<p> Text before ERb. code_goes_here Text after ERb </p>
Evaluation block use #1: If you just put a block, it will cause a line break after the block in the HTML, so if you had this in your code:
<p> Text before ERb. <% some_code %> Text after ERb </p>
The resulting HTML code would look like this:
<p> Text before ERb. Text after ERb </p>
Evaluation block use #2: If you add a dash(-) at the end of the block, it will prevent it from adding a line break. So, if your code looks like this:
<p> Text before ERb. <% some_code -%> Text after ERb </p>
The resulting HTML code would look like this:
<p>
Text before ERb.
Text after ERb
</p>
The line break is gone, but the space taken by the block is still there. That leads us to. . .
Evaluation block use #3: If you add a dash(-) at the beginning AND end of the block, it will prevent it from adding a line break AND remove the leading space it would have taken up. So, if your code looks like this:
<p> Text before ERb. <%- some_code -%> Text after ERb </p>
The resulting HTML code would look like this:
<p> Text before ERb. Text after ERb </p>
You'd never know there was a code block there! Is this useful? I don't know... maybe.
Rails eager loading of associations
FEB
18
2007
I ran into an interesting problem with table associations at work the other day. Below is a simple data model of the tables I was working with. Basically, here's how it breaks down: A user is part of any given group (but only one group per user). A document (any type) can be uploaded and assigned to a folder. A group is used to assign viewing privileges to each document, so that every user in the group can see the document. See below:
The problem came up because once a user is logged in, I need to get all of the folders that contain documents that the user's group has permission to see (a folder could contain documents not viewable by the group). I spent a few minutes scratching my head on how best to do a find to get the results I needed. I really couldn't come up with anything that would work.
So, of course, when this happens, I do a little leg-stretching and walk over to Adam and Shawn's space to ask them how they would do it. After explaining the situation and a little white board art, they reminded me of eager loading of associations (which I've never really had to use).
By using the :include option in my find method call, I can pre-load table associations to make my complex query a lot easier. My code ended up looking like this:
# find the logged-in user
user = User.find(session[:intranet_user])
# get all of the folders that contain documents they have access to
@folders = Folder.find(:all, :include => {:documents => {:groups => :users}}, :conditions => "users.id = #{user.id}" )
This worked perfectly!
A note about eager loading of associations: they can save a lot of resources when used correctly. Say you have a table called books and a table called authors, and each book has one author. To get all of the books for display, you might put:
@books = Book.find(:all)
Then, in your page, you might have:
<% for book in @books -%> Title: <%= book.title %> Written by: <%= book.author.name %> <% end -%>
Not only do you run a SQL query to get all of the books, you then run an additional query for each book to find it's author. You can simplify this down to only one query, by using eager loading, like so:
@books = Book.find(:all, :include => :author)
This pre-loads all of the data with only one SQL query.
Tagged: eager loading, rails, activerecord, db, tutorial
Code Golf: Roman to Decimal
FEB
07
2007
Here is my submission for the Roman to Deciman challenge. Code size: 121 bytes.
v={'I',1,'V',5,'X',10,'L',50,'C',?d,'D',500,'M',1000}
y=q=0
gets.chop.split('').each{|n|j=v[n]
y+=j-(q<j ?q*2:0)
q=j}
p y
RailsConf 2007
FEB
02
2007
They opened up registration today for RailsConf 2007. It's happening May 17-20 in Portland, Oregon. Adam, Shawn and I are registered and raring to go. Looking at the sessions planned for this year's conference, it looks to be very interesting and informative. Can't wait.
Fore!
JAN
22
2007
Shawn recently turned me onto a really cool site: Code Golf. Every week (or so) they post a coding challenge. The challenges themselves aren't overly difficult (well, most aren't). The real challenge is to complete the challenge with as little code as possible. . . literally. Your code submissions are first evaluated to determine if they work like they should, then they count how many bytes your program takes up. The shortest program for each accepted language (Perl, PHP, Python, and Ruby) gets 10,000 points, with each longer program getting points based on their size relative to the winning submission.
I've only been able to complete two challenges so far. Both have fallen around the middle of the group with regards to size. I'm not sure I'll ever know the shortcuts to get my 228 byte program down to 102 bytes! It is a great excuse for exercising your brain, though.
UPDATE: I've started posting my submissions to the challenges that I've been able to complete. Just look for posts tagged with code golf.
Popular Posts
Search
Tags
actionmailer activerecord ajax apache apple barcamp caching capistrano centos code golf css db delete eager loading ebay email attachment erb flash ftp fun generators get haml helpers ie sucks javascript jquery lightbox lost merb net ftp paperclip passenger php plexus post presentation rails rails machine railsconf redesign rest rjs routes rss ruby ruby on rails safari script sinatra symfony text replacement tips tutorial twitter xhtml
Projects
© 2010 Travis Roberts. All rights reserved.