Class: ActiveRecordSurvey::Node::Question

Inherits:
ActiveRecordSurvey::Node show all
Defined in:
lib/active_record_survey/node/question.rb

Instance Method Summary collapse

Methods inherited from ActiveRecordSurvey::Node

#answers, #build_link, #has_instance_node_for_instance?, #instance_node_for_instance, #instance_node_path_to_root?, #is_answered_for_instance?, #validate_instance_node

Instance Method Details

#build_answer(answer_node) ⇒ Object

Build an answer off this node



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
43
# File 'lib/active_record_survey/node/question.rb', line 11

def build_answer(answer_node)
	# A survey must either be passed or already present in self.node_maps
	if self.survey.nil?
		raise ArgumentError.new "A survey must be passed if ActiveRecordSurvey::Node::Question is not yet added to a survey"
	end

	# Cannot mix answer types
	# Check if not match existing - throw error
	if !self.answers.select { |answer|
		answer.class != answer_node.class
	}.empty?
		raise ArgumentError.new "Cannot mix answer types on question"
	end

	# Answers actually define how they're built off the parent node
	if answer_node.send(:build_answer, self)

		# If any questions existed directly following this question, insert after this answer
		self.survey.node_maps.select { |i|
			i.node == answer_node
		}.each { |answer_node_map|
			self.survey.node_maps.select { |j|
				# Same parent
				# Is a question
				j.parent == answer_node_map.parent && j.node.class.ancestors.include?(::ActiveRecordSurvey::Node::Question)
			}.each { |j|
				answer_node_map.children << j
			}
		}

		true
	end
end

#next_questionsObject

Returns the questions that follows this question (either directly or via its answers)



70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/active_record_survey/node/question.rb', line 70

def next_questions
	list = []

	if question_node_map = self.survey.node_maps.select { |i|
		i.node == self && !i.marked_for_destruction?
	}.first
		question_node_map.children.each { |child|
			if !child.node.nil? && !child.marked_for_destruction?
				if child.node.class.ancestors.include?(::ActiveRecordSurvey::Node::Question)
					list << child.node
				elsif child.node.class.ancestors.include?(::ActiveRecordSurvey::Node::Answer)
					list << child.node.next_question 
				end
			end
		}
	end

	list.compact.uniq
end

Removes the node_map link from this question all of its next questions



46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/active_record_survey/node/question.rb', line 46

def remove_link
	return true if (questions = self.next_questions).length === 0

	# Remove the link to any direct questions
	self.survey.node_maps.select { |i|
		i.node == self
	}.each { |node_map|
		self.survey.node_maps.select { |j|
			node_map.children.include?(j) 
		}.each { |child|
			if child.node.class.ancestors.include?(::ActiveRecordSurvey::Node::Question)
				child.parent = nil
				child.send((child.new_record?)? :destroy : :mark_for_destruction )
			end
		}
	}

	# remove link any answeres that have questions
	self.answers.collect { |i|
		i.remove_link
	}
end

#validate_parent_instance_node(instance_node, child_node) ⇒ Object

Stop validating at the Question node



4
5
6
7
8
# File 'lib/active_record_survey/node/question.rb', line 4

def validate_parent_instance_node(instance_node, child_node)
	!self.node_validations.collect { |node_validation|
		node_validation.validate_instance_node(instance_node, self)
	}.include?(false)
end