Module: Customize::Inherited

Defined in:
lib/customize/inherited.rb

Defined Under Namespace

Modules: ClassMethods

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.included(base) ⇒ Object



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/customize/inherited.rb', line 3

def self.included base
	base.extend ClassMethods

	base.has_one :inherit_node, :class_name=>Customize::InheritNode.name, :as=>:node, :dependent=>:destroy

	base.scope :ascents_for, lambda { |object, options={:include=>false}|
		ntn = Customize::InheritNode.table_name
		node = object.inherit_node
		condition_string = if options[:include]
												 "#{ntn}.left <= ? and #{ntn}.right >= ?"
											 else
												 "#{ntn}.left < ? and #{ntn}.right > ?"
											 end
		base.joins(:inherit_node).where(condition_string, node.left, node.right)
	}

	base.scope :descents_for, lambda { |object, options={:include=>false}|
		ntn = Customize::InheritNode.table_name
		node = object.inherit_node
		condition_string = if options[:include]
												 "#{ntn}.left >= ? and #{ntn}.right <= ?"
											 else
												 "#{ntn}.left > ? and #{ntn}.right < ?"
											 end
		base.joins(:inherit_node).where(condition_string, node.left, node.right)
	}

	base.after_create { |object|
		object.create_inherit_node :left=>0, :right=>1
	}

	base.delegate :leaf?, :to=>:inherit_node

	base.before_destroy { |object|
		raise 'object should not have children when destroy' if object.inherit_node.children.size > 0
	}

	
	
end

Instance Method Details

#ascent_idsObject



104
105
106
# File 'lib/customize/inherited.rb', line 104

def ascent_ids
	ascents.map(&:id)
end

#ascents(options = {:include=>false}) ⇒ Object



87
88
89
90
# File 'lib/customize/inherited.rb', line 87

def ascents options={:include=>false}
	return [] if new_record?
	self.class.ascents_for self, options
end

#childrenObject



65
66
67
# File 'lib/customize/inherited.rb', line 65

def children
	inherit_node.children.collect(&:node)
end

#descent_idsObject



108
109
110
# File 'lib/customize/inherited.rb', line 108

def descent_ids
	descents.map(&:id)
end

#descentsObject



99
100
101
102
# File 'lib/customize/inherited.rb', line 99

def descents
	return [] if new_record?
	self.class.descents_for self
end

#inherit(parent) ⇒ Object



73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/customize/inherited.rb', line 73

def inherit parent
	raise 'should be save first' if self.new_record?
	raise 'should be same class' if self.class != parent.class
	raise 'should not be self' if self.id == parent.id
	self.class.transaction do
		inherit_node.parent_id = parent.inherit_node.id
		right = parent.inherit_node.right
		InheritNode.where("right >= ?", inherit_node.left).update_all("right = right+2")
		inherit_node.left = right
		inherit_node.right = right + 1
		inherit_node.save
	end
end

#inherit_association(name, options = {:include=>false}) ⇒ Object



92
93
94
95
96
97
# File 'lib/customize/inherited.rb', line 92

def inherit_association name, options={:include=>false}
	association_table_name = association(name).aliased_table_name

	r = ascents(options).joins(name).select("#{association_table_name}.*").uniq
	r.map(&name).flatten
end

#labelObject



69
70
71
# File 'lib/customize/inherited.rb', line 69

def label
	self.to_s
end

#parentObject



61
62
63
# File 'lib/customize/inherited.rb', line 61

def parent
	inherit_node.parent_node.try(:node)
end