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: fc768cd6e485
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: d859b8179936
Choose a head ref
  • 7 commits
  • 6 files changed
  • 1 contributor

Commits on Feb 2, 2014

  1. Copy the full SHA
    623dec5 View commit details
  2. dom/node: simplify #clear

    meh committed Feb 2, 2014
    Copy the full SHA
    3a46c48 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
    e24aab5 View commit details
  4. dom/element: simplify #inner_dom

    meh committed Feb 2, 2014
    Copy the full SHA
    3f29e6c View commit details
  5. dom/node_set: more cleanup

    meh committed Feb 2, 2014
    Copy the full SHA
    8713848 View commit details
  6. dom/node_set: remove #children

    meh committed Feb 2, 2014
    Copy the full SHA
    bb1ecda View commit details
  7. spec: add some NodeSet specs

    meh committed Feb 2, 2014
    Copy the full SHA
    d859b81 View commit details
Showing with 68 additions and 74 deletions.
  1. +1 −3 opal/browser/dom.rb
  2. +1 −8 opal/browser/dom/builder.rb
  3. +1 −2 opal/browser/dom/element.rb
  4. +2 −2 opal/browser/dom/node.rb
  5. +19 −59 opal/browser/dom/node_set.rb
  6. +44 −0 spec/dom/node_set_spec.rb
4 changes: 1 addition & 3 deletions opal/browser/dom.rb
Original file line number Diff line number Diff line change
@@ -39,9 +39,7 @@ def XML(what)
def DOM(*args, &block)
if block
document = args.shift || $document
element = args.shift

roots = Browser::DOM::Builder.new(document, element, &block).to_a
roots = Browser::DOM::Builder.new(document, &block).to_a

if roots.length == 1
roots.first
9 changes: 1 addition & 8 deletions opal/browser/dom/builder.rb
Original file line number Diff line number Diff line change
@@ -36,17 +36,10 @@ def self.build(builder, item)

attr_reader :document, :element

def initialize(document, element = nil, &block)
def initialize(document, &block)
@document = document
@element = element
@builder = Paggio::HTML.new(&block)
@roots = @builder.each.map { |e| Builder.build(self, e) }

if @element
@roots.each {|root|
@element << root
}
end
end

def to_a
3 changes: 1 addition & 2 deletions opal/browser/dom/element.rb
Original file line number Diff line number Diff line change
@@ -232,9 +232,8 @@ def inner_dom(&block)

# FIXME: when block passing is fixed
doc = document
Builder.new(doc, self, &block)

self
self << Builder.new(doc, self, &block).to_a
end

def inner_dom=(node)
4 changes: 2 additions & 2 deletions opal/browser/dom/node.rb
Original file line number Diff line number Diff line change
@@ -149,7 +149,7 @@ def remove

# Remove all the children of the node.
def clear
children.each(&:remove)
children.remove
end

# @!attribute content
@@ -321,7 +321,7 @@ def parent
end

def parent=(node)
`#@native.parentNode = #{Native.try_convert(node)}`
`#@native.parentNode = #{Native.convert(node)}`
end

def parse(text, options = {})
78 changes: 19 additions & 59 deletions opal/browser/dom/node_set.rb
Original file line number Diff line number Diff line change
@@ -2,30 +2,31 @@ module Browser; module DOM

# Allows manipulation of a set of {Node}s.
class NodeSet
# Create a new {NodeSet} from the given nodes.
#
# Note that the nodes are flattened and converted with DOM automatically,
# this means you can pass {NodeSet}s and {Native::Array}s as well.
def self.[](*nodes)
new(nodes.flatten.map { |x| DOM(Native.convert(x)) })
new(nodes.flatten.map { |x| DOM(Native.convert(x)) }.uniq)
end

def initialize(array)
@array = array
end

def respond_to_missing?(name)
@array.respond_to?(name)
def initialize(literal)
@literal = literal
end

# Any other method will be called on every node in the set.
def method_missing(name, *args, &block)
unless @array.respond_to? name
unless @literal.respond_to? name
each {|el|
el.__send__(name, *args, &block)
}

return self
end

result = @array.__send__ name, *args, &block
result = @literal.__send__ name, *args, &block

if `result === #@array`
if `result === #@literal`
self
elsif Array === result
NodeSet.new(result)
@@ -34,61 +35,20 @@ def method_missing(name, *args, &block)
end
end

def dup
NodeSet.new(@array.dup)
end

# Create another {NodeSet} with all the nodes that match the given
# expression.
#
# @param expression [String] a CSS selector
#
# @return [NodeSet] the new {NodeSet} with the matching nodes
def filter(expression)
NodeSet.new(@array.select { |node| node =~ expression })
end

def after(node)
last.after node
end

def at(path)
raise NotImplementedError
end

def at_css(*rules)
raise NotImplementedError
end

def at_xpath(*paths)
raise NotImplementedError
end

def before
first.before
end

def children
result = NodeSet.new([])

each { |n| result.concat(n.children) }

result
end

def css(*paths)
raise NotImplementedError
@literal.select { |node| node =~ expression }
end

# Search for multiple selectors
def search(*what)
map { |n| n.search(*what) }.flatten.uniq
end

def to_a
@array.dup
end

def to_ary
self
end

def inspect
"#<DOM::NodeSet: #{@array.inspect[1 .. -2]}"
end
end

end; end
44 changes: 44 additions & 0 deletions spec/dom/node_set_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
require 'spec_helper'

describe Browser::DOM::NodeSet do
NodeSet = Browser::DOM::NodeSet

html <<-HTML
<div id="lol">
<div class="a">
<div class="a-a"></div>
</div>
<div class="b"></div>
<div class="c"></div>
<div class="d">
<div class="d-a"></div>
</div>
</div>
HTML

describe '.[]' do
it 'flattens the nodes' do
set = NodeSet[[[$document["#lol .a"]]], [[$document["#lol .c"]]]]

expect(set[0]).to eq($document["#lol .a"])
expect(set[1]).to eq($document["#lol .c"])
end

it 'converts the items to DOM' do
set = NodeSet[`document.getElementById("lol")`]

expect(set[0]).to eq($document["#lol"])
end
end

describe '#filter' do
it 'filters the set with the given expression' do
set = $document["lol"].children.filter('.a, .c')

expect(set[0]).to eq($document["#lol .a"])
expect(set[1]).to eq($document["#lol .c"])
end
end
end