2012-10-26 10:04:52 +00:00
|
|
|
module MapsHelper
|
2014-01-29 03:46:58 +00:00
|
|
|
|
|
|
|
## this one is for building our custom JSON autocomplete format for typeahead
|
|
|
|
def autocomplete_map_array_json(maps)
|
|
|
|
temp = []
|
|
|
|
maps.each do |m|
|
|
|
|
map = {}
|
|
|
|
map['id'] = m.id
|
|
|
|
map['label'] = m.name
|
2014-02-05 03:03:24 +00:00
|
|
|
map['value'] = m.name
|
2014-01-29 03:46:58 +00:00
|
|
|
map['description'] = m.desc.truncate(30)
|
|
|
|
map['permission'] = m.permission
|
|
|
|
map['topicCount'] = m.topics.count
|
|
|
|
map['synapseCount'] = m.synapses.count
|
|
|
|
map['contributorCount'] = m.contributors.count
|
2014-02-02 19:56:07 +00:00
|
|
|
map['rtype'] = "map"
|
2014-01-29 03:46:58 +00:00
|
|
|
|
2014-11-23 00:35:03 +00:00
|
|
|
contributorTip = ''
|
2015-10-23 15:06:24 +00:00
|
|
|
firstContributorImage = asset_path('user.png')
|
2014-11-23 00:35:03 +00:00
|
|
|
if m.contributors.count > 0
|
2014-11-25 20:06:30 +00:00
|
|
|
firstContributorImage = m.contributors[0].image.url(:thirtytwo)
|
2014-11-23 00:35:03 +00:00
|
|
|
m.contributors.each_with_index do |c, index|
|
2014-11-25 20:06:30 +00:00
|
|
|
userImage = c.image.url(:thirtytwo)
|
2014-11-23 00:35:03 +00:00
|
|
|
name = c.name
|
2014-11-23 04:05:31 +00:00
|
|
|
contributorTip += '<li> <img class="tipUserImage" width="25" height="25" src=' + userImage + ' />' + '<span>' + name + '</span> </li>'
|
2014-11-23 00:35:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
map['contributorTip'] = contributorTip
|
2014-11-24 03:28:29 +00:00
|
|
|
map['mapContributorImage'] = firstContributorImage
|
|
|
|
|
2014-01-29 03:46:58 +00:00
|
|
|
temp.push map
|
|
|
|
end
|
|
|
|
return temp
|
|
|
|
end
|
|
|
|
|
2012-10-26 10:04:52 +00:00
|
|
|
end
|