Module: ClosureTree::Model

Extended by:
ActiveSupport::Concern
Defined in:
lib/closure_tree/model.rb

Instance Method Summary collapse

Instance Method Details

#_ctObject

Delegate to the Support instance on the class:



53
54
55
# File 'lib/closure_tree/model.rb', line 53

def _ct
  self.class._ct
end

#_ct_idObject



182
183
184
# File 'lib/closure_tree/model.rb', line 182

def _ct_id
  read_attribute(_ct.model_class.primary_key)
end

#_ct_parent_idObject



174
175
176
# File 'lib/closure_tree/model.rb', line 174

def _ct_parent_id
  read_attribute(_ct.parent_column_sym)
end

#_ct_quoted_idObject



186
187
188
# File 'lib/closure_tree/model.rb', line 186

def _ct_quoted_id
  _ct.quoted_value(_ct_id)
end

#_ct_quoted_parent_idObject



178
179
180
# File 'lib/closure_tree/model.rb', line 178

def _ct_quoted_parent_id
  _ct.quoted_value(_ct_parent_id)
end

#add_child(child_node) ⇒ Object

Alias for appending to the children collection. You can also add directly to the children collection, if you’d prefer.



169
170
171
172
# File 'lib/closure_tree/model.rb', line 169

def add_child(child_node)
  children << child_node
  child_node
end

#ancestor_idsObject



94
95
96
# File 'lib/closure_tree/model.rb', line 94

def ancestor_ids
  _ct.ids_from(ancestors)
end

#ancestor_of?(node) ⇒ Boolean

node’s ancestors include this record

Returns:

  • (Boolean)


148
149
150
# File 'lib/closure_tree/model.rb', line 148

def ancestor_of?(node)
  node.ancestors.include? self
end

#ancestorsObject

enumerable of ancestors, immediate parent is first, root is last.



90
91
92
# File 'lib/closure_tree/model.rb', line 90

def ancestors
  without_self(self_and_ancestors)
end

#ancestry_path(to_s_column = _ct.name_column) ⇒ Object

Returns an array, root first, of self_and_ancestors’ values of the to_s_column, which defaults to the name_column. (so child.ancestry_path == %w{grandparent parent child}



105
106
107
# File 'lib/closure_tree/model.rb', line 105

def ancestry_path(to_s_column = _ct.name_column)
  self_and_ancestors.map { |n| n.send to_s_column.to_sym }.reverse
end

#child?Boolean

Returns true if this node has a parent, and is not a root.

Returns:

  • (Boolean)


65
66
67
# File 'lib/closure_tree/model.rb', line 65

def child?
  !root?
end

#child_idsObject



109
110
111
# File 'lib/closure_tree/model.rb', line 109

def child_ids
  _ct.ids_from(children)
end

#child_of?(node) ⇒ Boolean

node is record’s parent

Returns:

  • (Boolean)


158
159
160
# File 'lib/closure_tree/model.rb', line 158

def child_of?(node)
  self.parent == node
end

#depthObject Also known as: level



83
84
85
# File 'lib/closure_tree/model.rb', line 83

def depth
  ancestors.size
end

#descendant_idsObject



121
122
123
# File 'lib/closure_tree/model.rb', line 121

def descendant_ids
  _ct.ids_from(descendants)
end

#descendant_of?(node) ⇒ Boolean

node is record’s ancestor

Returns:

  • (Boolean)


153
154
155
# File 'lib/closure_tree/model.rb', line 153

def descendant_of?(node)
  self.ancestors.include? node
end

#descendantsObject



113
114
115
# File 'lib/closure_tree/model.rb', line 113

def descendants
  without_self(self_and_descendants)
end

#family_of?(node) ⇒ Boolean

node and record have a same root

Returns:

  • (Boolean)


163
164
165
# File 'lib/closure_tree/model.rb', line 163

def family_of?(node)
  self.root == node.root
end

#leaf?Boolean

Returns true if this node has no children.

Returns:

  • (Boolean)


70
71
72
# File 'lib/closure_tree/model.rb', line 70

def leaf?
  children.empty?
end

#leavesObject



79
80
81
# File 'lib/closure_tree/model.rb', line 79

def leaves
  self_and_descendants.leaves
end

#parent_of?(node) ⇒ Boolean

node’s parent is this record

Returns:

  • (Boolean)


138
139
140
# File 'lib/closure_tree/model.rb', line 138

def parent_of?(node)
  self == node.parent
end

#rootObject

Returns the farthest ancestor, or self if root?



75
76
77
# File 'lib/closure_tree/model.rb', line 75

def root
  self_and_ancestors.where(_ct.parent_column_name.to_sym => nil).first
end

#root?Boolean

Returns true if this node has no parents.

Returns:

  • (Boolean)


58
59
60
61
62
# File 'lib/closure_tree/model.rb', line 58

def root?
  # Accessing the parent will fetch that row from the database,
  # so if we are persisted, just check that the parent_id column is nil.
  persisted? ? _ct_parent_id.nil? : parent.nil?
end

#root_of?(node) ⇒ Boolean

node’s root is this record

Returns:

  • (Boolean)


143
144
145
# File 'lib/closure_tree/model.rb', line 143

def root_of?(node)
  self == node.root
end

#self_and_ancestors_idsObject



98
99
100
# File 'lib/closure_tree/model.rb', line 98

def self_and_ancestors_ids
  _ct.ids_from(self_and_ancestors)
end

#self_and_descendant_idsObject



117
118
119
# File 'lib/closure_tree/model.rb', line 117

def self_and_descendant_ids
  _ct.ids_from(self_and_descendants)
end

#self_and_siblingsObject



125
126
127
# File 'lib/closure_tree/model.rb', line 125

def self_and_siblings
  _ct.scope_with_order(_ct.base_class.where(_ct.parent_column_sym => _ct_parent_id))
end

#sibling_idsObject



133
134
135
# File 'lib/closure_tree/model.rb', line 133

def sibling_ids
  _ct.ids_from(siblings)
end

#siblingsObject



129
130
131
# File 'lib/closure_tree/model.rb', line 129

def siblings
  without_self(self_and_siblings)
end