Skip to content

Commit 1814202

Browse files
committedFeb 7, 2014
Element#data() should return nil for undefined attribute
1 parent ce26192 commit 1814202

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed
 

‎CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77

88
* Add `LocalStorage` implementation.
99

10+
* Fix Element#data() to return nil for an undefined data attribute instead
11+
of null.
12+
1013
## 0.1.2 2013-12-01
1114

1215
* Support setting html content through `Element#html()`.

‎opal/opal-jquery/element.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def self.expose(*methods)
5959
# Bridged functions - we just expose all core jquery functions as ruby
6060
# methods on this class.
6161
expose :after, :before, :parent, :parents, :prepend, :prev, :remove
62-
expose :hide, :show, :toggle, :children, :blur, :closest, :data
62+
expose :hide, :show, :toggle, :children, :blur, :closest
6363
expose :focus, :find, :next, :siblings, :text, :trigger, :append
6464
expose :height, :width, :serialize, :is, :filter, :last, :first
6565
expose :wrap, :stop, :clone, :empty
@@ -182,6 +182,13 @@ def animate(params, &block)
182182
}
183183
end
184184

185+
def data(*args)
186+
%x{
187+
var result = self.data.apply(self, args);
188+
return result == null ? nil : result;
189+
}
190+
end
191+
185192
# Start a visual effect (e.g. fadeIn, fadeOut, …) passing its name.
186193
# Underscored style is automatically converted (e.g. `effect(:fade_in)`).
187194
# Also accepts additional arguments and a block for the finished callback.

‎spec/element_spec.rb

+22
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,28 @@
183183
foo.class_name.should == 'bar'
184184
end
185185
end
186+
187+
end
188+
189+
describe "Element#data" do
190+
html <<-HTML
191+
<div id="data-foo"></div>
192+
<div id="data-ford" data-authur="dent"></div>
193+
HTML
194+
195+
it "sets a data attribute" do
196+
foo = Element.id('data-foo')
197+
foo.data 'bar', 'baz'
198+
expect(foo.data('bar')).to eq('baz')
199+
end
200+
201+
it "can retrieve a data attribute" do
202+
expect(Element.id('data-ford').data('authur')).to eq('dent')
203+
end
204+
205+
it "returns nil for an undefined data attribute" do
206+
expect(Element.id('data-ford').data('not-here')).to be_nil
207+
end
186208
end
187209

188210
describe "Element#html" do

0 commit comments

Comments
 (0)
Please sign in to comment.