Class: Dommy::HTMLTableRowElement

Inherits:
HTMLElement show all
Defined in:
lib/dommy/html_elements.rb

Overview

‘<tr>` — table row. `cells` are direct `<td>`/`<th>` children. `rowIndex` walks the enclosing table; `sectionRowIndex` walks the enclosing thead/tbody/tfoot.

Constant Summary collapse

JS_METHOD_NAMES =

Own js_call methods, on top of Element’s.

%w[insertCell deleteCell].freeze

Constants inherited from Element

Element::ATTRIBUTE_NODE, Element::CDATA_SECTION_NODE, Element::COMMENT_NODE, Element::DOCUMENT_FRAGMENT_NODE, Element::DOCUMENT_NODE, Element::DOCUMENT_POSITION_CONTAINED_BY, Element::DOCUMENT_POSITION_CONTAINS, Element::DOCUMENT_POSITION_DISCONNECTED, Element::DOCUMENT_POSITION_FOLLOWING, Element::DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, Element::DOCUMENT_POSITION_PRECEDING, Element::DOCUMENT_TYPE_NODE, Element::ELEMENT_NODE, Element::PROCESSING_INSTRUCTION_NODE, Element::SHADOW_HOST_TAGS, Element::TEXT_NODE

Constants included from Node

Node::ATTRIBUTE_NODE, Node::CDATA_SECTION_NODE, Node::COMMENT_NODE, Node::DOCUMENT_FRAGMENT_NODE, Node::DOCUMENT_NODE, Node::DOCUMENT_POSITION_CONTAINED_BY, Node::DOCUMENT_POSITION_CONTAINS, Node::DOCUMENT_POSITION_DISCONNECTED, Node::DOCUMENT_POSITION_FOLLOWING, Node::DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC, Node::DOCUMENT_POSITION_PRECEDING, Node::DOCUMENT_TYPE_NODE, Node::ELEMENT_NODE, Node::PROCESSING_INSTRUCTION_NODE, Node::TEXT_NODE

Instance Attribute Summary

Attributes inherited from Element

#document

Instance Method Summary collapse

Methods inherited from HTMLElement

#case_sensitive_attribute_names?

Methods inherited from Element

#[], #[]=, #__dommy_backend_node__, #__internal_shadow_root__, #__js_set__, #__test_scroll_log__, #after, #anchor_href, #animate, #append, #append_child, #at_xpath, #attach_shadow, #attributes, #base_uri, #before, #blur, #child_element_count, #child_nodes, #children, #class_list, #class_name, #class_name=, #click, #clone_node, #closest, #compare_document_position, #contains?, #dataset, #equal_node?, #first_child, #first_element_child, #focus, #get_animations, #get_attribute, #get_attribute_node, #get_elements_by_class_name, #get_elements_by_tag_name, #get_html, #get_inner_html, #has_attribute?, #has_attributes?, #has_child_nodes?, #id, #id=, #initialize, #inner_html, #inner_html=, #insert_adjacent_element, #insert_adjacent_html, #insert_adjacent_text, #insert_before, #is_connected?, #last_child, #last_element_child, #live_child_nodes, #local_name, #matches?, #namespace_uri, #next_element_sibling, #next_sibling, #normalize, #on, #outer_html, #outer_html=, #owner_document, #parent_element, #parent_node, #path, #prepend, #previous_element_sibling, #previous_sibling, #query_selector, #query_selector_all, #reflected_attr_name, #remove, #remove_attribute, #remove_attribute_node, #remove_child, #replace_child, #replace_children, #replace_with_nodes, #role, #role=, #root_node, #same_node?, #set_attribute, #set_attribute_node, #shadow_root, #slot, #slot=, #style, #tag_name, #text_content, #text_content=, #to_s, #toggle_attribute, #xpath

Methods included from EventTarget

#__internal_deliver_event__, #add_event_listener, #dispatch_event, #invoke_listener, #remove_event_listener

Constructor Details

This class inherits a constructor from Dommy::Element

Instance Method Details

#__js_call__(method, args) ⇒ Object



2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
# File 'lib/dommy/html_elements.rb', line 2847

def __js_call__(method, args)
  case method
  when "insertCell"
    insert_cell(args[0] || -1)
  when "deleteCell"
    delete_cell(args[0])
  else
    super
  end
end

#__js_get__(key) ⇒ Object



2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
# File 'lib/dommy/html_elements.rb', line 2834

def __js_get__(key)
  case key
  when "cells"
    cells
  when "rowIndex"
    row_index
  when "sectionRowIndex"
    section_row_index
  else
    super
  end
end

#__js_method_names__Object



2784
2785
2786
# File 'lib/dommy/html_elements.rb', line 2784

def __js_method_names__
  super + JS_METHOD_NAMES
end

#cellsObject



2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
# File 'lib/dommy/html_elements.rb', line 2788

def cells
  el = self
  HTMLCollection.new do
    el
      .__dommy_backend_node__
      .element_children
      .select { |n| %w[td th].include?(n.name) }
      .map { |n| el.document.wrap_node(n) }
      .compact
  end
end

#delete_cell(index) ⇒ Object



2828
2829
2830
2831
2832
# File 'lib/dommy/html_elements.rb', line 2828

def delete_cell(index)
  target = cells[index.to_i]
  target&.remove
  nil
end

#insert_cell(index = -1)) ⇒ Object

‘insertCell(index)` — adds a `<td>` at the given index (defaults to end). Returns the new cell.



2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
# File 'lib/dommy/html_elements.rb', line 2816

def insert_cell(index = -1)
  cell = @document.create_element("td")
  list = cells
  if index.to_i == -1 || index.to_i >= list.size
    append_child(cell)
  else
    insert_before(cell, list[index.to_i])
  end

  cell
end

#row_indexObject



2800
2801
2802
2803
2804
2805
# File 'lib/dommy/html_elements.rb', line 2800

def row_index
  table = closest("table")
  return -1 unless table

  table.rows.find_index { |r| r.__dommy_backend_node__ == @__node__ } || -1
end

#section_row_indexObject



2807
2808
2809
2810
2811
2812
# File 'lib/dommy/html_elements.rb', line 2807

def section_row_index
  section = @__node__.parent
  return -1 unless section && section.element? && %w[thead tbody tfoot].include?(section.name)

  section.element_children.select { |n| n.name == "tr" }.find_index { |n| n == @__node__ } || -1
end