Module: Sequel::Plugins::Tree::InstanceMethods

Defined in:
lib/sequel/plugins/tree.rb

Instance Method Summary collapse

Instance Method Details

#ancestorsObject

Returns list of ancestors, starting from parent until root.

subchild1.ancestors # => [child1, root]


85
86
87
88
89
# File 'lib/sequel/plugins/tree.rb', line 85

def ancestors
  node, nodes = self, []
  nodes << node = node.parent while node.parent
  nodes
end

#descendantsObject

Returns list of descendants

node.descendants # => [child1, child2, subchild1_1, subchild1_2, subchild2_1, subchild2_2]


94
95
96
97
98
# File 'lib/sequel/plugins/tree.rb', line 94

def descendants
  nodes = children.dup
  children.each{|child| nodes.concat(child.descendants)}
  nodes 
end

#rootObject

Returns the root node of the tree that this node descends from. This node is returned if it is a root node itself.



102
103
104
# File 'lib/sequel/plugins/tree.rb', line 102

def root
  ancestors.last || self
end

#root?Boolean

Returns true if this is a root node, false otherwise.

Returns:

  • (Boolean)


107
108
109
# File 'lib/sequel/plugins/tree.rb', line 107

def root?
  !new? && possible_root?
end

#self_and_siblingsObject

Returns all siblings and a reference to the current node.

subchild1.self_and_siblings # => [subchild1, subchild2]


114
115
116
# File 'lib/sequel/plugins/tree.rb', line 114

def self_and_siblings
  parent ? parent.children : model.roots
end

#siblingsObject

Returns all siblings of the current node.

subchild1.siblings # => [subchild2]


121
122
123
# File 'lib/sequel/plugins/tree.rb', line 121

def siblings
  self_and_siblings - [self]
end