2016-09-24 03:00:46 +00:00
|
|
|
# frozen_string_literal: true
|
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)
|
2016-09-24 04:27:34 +00:00
|
|
|
topics.map do |t|
|
|
|
|
{
|
|
|
|
id: t.id,
|
|
|
|
label: t.name,
|
|
|
|
value: t.name,
|
|
|
|
description: t.desc ? t.desc&.truncate(70) : '', # make this return matched results
|
|
|
|
type: t.metacode.name,
|
|
|
|
typeImageURL: t.metacode.icon,
|
|
|
|
permission: t.permission,
|
|
|
|
mapCount: t.maps.count,
|
|
|
|
synapseCount: t.synapses.count,
|
|
|
|
originator: t.user.name,
|
|
|
|
originatorImage: t.user.image.url(:thirtytwo),
|
|
|
|
rtype: :topic,
|
|
|
|
inmaps: t.inmaps,
|
|
|
|
inmapsLinks: t.inmapsLinks
|
|
|
|
}
|
2014-01-29 03:46:58 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-24 04:27:34 +00:00
|
|
|
# recursively find all nodes in any given nodes network
|
2013-01-01 22:45:35 +00:00
|
|
|
def network(node, array, count)
|
2016-07-26 00:14:23 +00:00
|
|
|
array = [] if array.nil?
|
|
|
|
array.push(node)
|
2016-09-24 03:00:46 +00:00
|
|
|
return array if count.zero?
|
2016-07-26 00:14:23 +00:00
|
|
|
|
|
|
|
# check if each relative is already in the array and if not, call the network function again
|
2016-09-24 04:27:34 +00:00
|
|
|
remaining_relatives = node.relatives.to_a - array
|
|
|
|
remaining_relatives.each do |relative|
|
|
|
|
array = (array | network(relative, array, count - 1))
|
2016-07-26 00:14:23 +00:00
|
|
|
end
|
2016-09-24 04:27:34 +00:00
|
|
|
|
|
|
|
array
|
2013-01-01 22:45:35 +00:00
|
|
|
end
|
|
|
|
end
|