Best way to use html5 data attributes with rails content_tag helper?

Ruby on-RailsHtml

Ruby on-Rails Problem Overview


The issue, of course, is that ruby symbols don't like hyphens. So something like this obviously won't work:

content_tag(:div, "Some Text", :id => "foo", :data-data_attr => some_variable)

One option is to use a string rather than a symbol:

content_tag(:div, "Some Text", :id => "foo", 'data-data_attr' => some_variable)

Or I could just interpolate:

"<div id='foo' data-data_attr='#{some_variable}'>Some Text</div>".html_safe

I sorta prefer the later but both seem a little gross. Anyone know of a better way?

Ruby on-Rails Solutions


Solution 1 - Ruby on-Rails

Rails 3.1 ships with built-in helpers:

http://api.rubyonrails.org/classes/ActionView/Helpers/TagHelper.html#method-i-tag

E.g.,

tag("div", :data => {:name => 'Stephen', :city_state => %w(Chicago IL)})
# => <div data-name="Stephen" data-city-state="[&quot;Chicago&quot;,&quot;IL&quot;]" />

Solution 2 - Ruby on-Rails

Have you tried using quotes with symbol? Something like:

:"data-foo" => :bar

Solution 3 - Ruby on-Rails

A helper's not a bad idea but seems a bit of an overkill for what's essentially me being fusy about syntax. I suppose there's nothing built into rails which is what I was hoping for. I'll just use this:

content_tag(:div, "Some Text", :id => "foo", 'data-data_attr' => some_variable)

Solution 4 - Ruby on-Rails

Building on previous answers, here's the canonical way to do it now:

content_tag(:div, "Some Text", id: "foo", data: { attr: some_variable })
content_tag(:div, "Some Text", id: "foo", data: { "other-attr" => some_variable })

Which generates:

<div id="foo" data-attr="some variable">Some Text</div>
<div id="foo" data-other-attr="some variable">Some Text</div>

Solution 5 - Ruby on-Rails

JQuery Air (codeschool.com) Level 1, Example 1

Codeschool/platform-independent version

<section id="tabs">
  <ul>
    <li><a href="#2012-09-27" data-flights="6">Sep 27</a></li>
    <li><a href="#2012-09-28" data-flights="5">Sep 28</a></li>
    <li><a href="#2012-09-29" data-flights="5">Sep 29</a></li>
  </ul>
</section>

Rails Version

<section id="tabs">
  <ul>
    <li><%= content_tag(:a, "Sep 27",:href=> "#2012-09-27", :data => { :flights => "6" } ) %></li>
    <li><%= content_tag(:a, "Sep 28",:href=> "#2012-09-28", :data => { :flights => "5" } ) %></li>
    <li><%= content_tag(:a, "Sep 29",:href=> "#2012-09-29", :data => { :flights => "5" } ) %></li>
  </ul>
</section>

Solution 6 - Ruby on-Rails

You can always create you own helper function so then you can write

<%= div_data_tag the_id, some_text, some_data %>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCory SchiresView Question on Stackoverflow
Solution 1 - Ruby on-RailsstephencelisView Answer on Stackoverflow
Solution 2 - Ruby on-RailsEimantasView Answer on Stackoverflow
Solution 3 - Ruby on-RailsCory SchiresView Answer on Stackoverflow
Solution 4 - Ruby on-RailscoisnepeView Answer on Stackoverflow
Solution 5 - Ruby on-RailscoloradoblueView Answer on Stackoverflow
Solution 6 - Ruby on-RailsrodrigobView Answer on Stackoverflow