Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal-browser
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ecc07d2c56de
Choose a base ref
...
head repository: opal/opal-browser
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7fd893a51443
Choose a head ref
  • 5 commits
  • 3 files changed
  • 1 contributor

Commits on Feb 2, 2014

  1. Copy the full SHA
    e4cee2a View commit details
  2. Copy the full SHA
    d551aa1 View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a5e9421 View commit details
  4. dom/element: improve #inspect

    meh committed Feb 2, 2014
    Copy the full SHA
    54b639e View commit details
  5. Copy the full SHA
    7fd893a View commit details
Showing with 82 additions and 5 deletions.
  1. +25 −2 opal/browser/dom/element.rb
  2. +2 −2 opal/browser/dom/node.rb
  3. +55 −1 spec/dom/element_spec.rb
27 changes: 25 additions & 2 deletions opal/browser/dom/element.rb
Original file line number Diff line number Diff line change
@@ -210,7 +210,20 @@ def scroll
Scroll.new(self)
end

alias_native :id
def id
%x{
var id = #@native.id;
if (id === "") {
return nil;
}
else {
return id;
}
}
end

alias_native :id=

def inner_dom(&block)
# FIXME: when block passing is fixed
@@ -359,7 +372,17 @@ def window
end

def inspect
"#<DOM::Element: #{name}>"
inspect = name.downcase

if id
inspect += '.' + id + '!'
end

unless class_names.empty?
inspect += '.' + class_names.join('.')
end

"#<DOM::Element: #{inspect}>"
end

class Attributes
4 changes: 2 additions & 2 deletions opal/browser/dom/node.rb
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ def self.new(value)
#
# @return [Boolean]
def ==(other)
`#@native === #{Native.try_convert(other)}`
`#@native === #{Native.convert(other)}`
end

# Append a child to the node.
@@ -366,7 +366,7 @@ def remove_child(node)
# @param node [Node] the node to replace with
# @return [Node] the passed node
def replace(node)
`#@native.parentNode.replaceChild(#@native, #{Native.try_convert(node)})`
`#@native.parentNode.replaceChild(#@native, #{Native.convert(node)})`

node
end
56 changes: 55 additions & 1 deletion spec/dom/element_spec.rb
Original file line number Diff line number Diff line change
@@ -3,12 +3,36 @@
describe Browser::DOM::Element do
describe '#id' do
html <<-HTML
<div id="lol"></div>
<div id="lol"><div class="wut"></div></div>
HTML

it 'gets the proper id' do
expect($document["lol"].id).to eq('lol')
end

it 'returns nil when there is no id' do
expect($document["#lol .wut"].id).to be_nil
end
end

describe '#id=' do
html <<-HTML
<div id="lol"></div>
HTML

it 'sets the id' do
el = $document["lol"]
el.id = 'wut'

expect(el.id).to eq('wut')
end

it 'removes the id when the value is nil' do
el = $document["lol"]
el.id = nil

expect(el.id).to be_nil
end
end

describe '#class_names' do
@@ -43,4 +67,34 @@
expect($document[:matches].first_element_child =~ 'span.yes').to be_truthy
end
end

describe '#inspect' do
it 'uses the node name' do
el = $document.create_element('div')

expect(el.inspect).to match(/: div>/)
end

it 'uses the id' do
el = $document.create_element('div')
el.id = 'lol'

expect(el.inspect).to match(/: div.lol!>/)
end

it 'uses the classes' do
el = $document.create_element('div')
el.add_class 'lol', 'wut'

expect(el.inspect).to match(/: div.lol.wut>/)
end

it 'uses the id and the classes' do
el = $document.create_element('div')
el.id = 'omg'
el.add_class 'lol', 'wut'

expect(el.inspect).to match(/: div.omg!.lol.wut>/)
end
end
end