2013-01-01 22:45:35 +00:00
|
|
|
module TopicsHelper
|
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
## this one is for building our custom JSON autocomplete format for typeahead
|
|
|
|
def autocomplete_array_json(topics)
|
|
|
|
temp = []
|
|
|
|
topics.each do |t|
|
|
|
|
topic = {}
|
|
|
|
topic['id'] = t.id
|
|
|
|
topic['label'] = t.name
|
2014-02-05 03:03:24 +00:00
|
|
|
topic['value'] = t.name
|
2014-10-01 13:54:56 +00:00
|
|
|
topic['description'] = t.desc.truncate(70) # make this return matched results
|
2014-01-29 03:46:58 +00:00
|
|
|
topic['type'] = t.metacode.name
|
2015-10-25 08:50:07 +00:00
|
|
|
topic['typeImageURL'] = asset_path(t.metacode.icon)
|
2014-01-29 03:46:58 +00:00
|
|
|
topic['permission'] = t.permission
|
|
|
|
topic['mapCount'] = t.maps.count
|
|
|
|
topic['synapseCount'] = t.synapses.count
|
|
|
|
topic['originator'] = t.user.name
|
2014-11-25 20:06:30 +00:00
|
|
|
topic['originatorImage'] = t.user.image.url(:thirtytwo)
|
2014-02-02 19:56:07 +00:00
|
|
|
topic['rtype'] = "topic"
|
2014-11-26 19:44:31 +00:00
|
|
|
topic['inmaps'] = t.inmaps
|
2014-11-27 20:02:44 +00:00
|
|
|
topic['inmapsLinks'] = t.inmapsLinks
|
2014-11-26 19:44:31 +00:00
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
temp.push topic
|
|
|
|
end
|
|
|
|
return temp
|
|
|
|
end
|
|
|
|
|
2014-08-12 22:14:04 +00:00
|
|
|
#find all nodes in any given nodes network
|
2013-01-01 22:45:35 +00:00
|
|
|
def network(node, array, count)
|
|
|
|
# recurse starting with a node to find all connected nodes and return an array of topics that constitutes the starting nodes network
|
|
|
|
|
|
|
|
# if the array of nodes is empty initialize it
|
|
|
|
if array.nil?
|
|
|
|
array = Array.new
|
|
|
|
end
|
|
|
|
|
|
|
|
# add the node to the array
|
|
|
|
array.push(node)
|
|
|
|
|
|
|
|
if count == 0
|
|
|
|
return array
|
|
|
|
end
|
|
|
|
|
|
|
|
count = count - 1
|
|
|
|
|
|
|
|
# check if each relative is already in the array and if not, call the network function again
|
|
|
|
if not node.relatives.empty?
|
|
|
|
if (node.relatives-array).empty?
|
|
|
|
return array
|
|
|
|
else
|
|
|
|
(node.relatives-array).each do |relative|
|
|
|
|
array = (array | network(relative, array, count))
|
|
|
|
end
|
|
|
|
return array
|
|
|
|
end
|
|
|
|
|
|
|
|
elsif node.relatives.empty?
|
|
|
|
return array
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|