update user model with fixes, including style and recentMetacodes algorithm (#922)
This commit is contained in:
parent
5b90c38b22
commit
55853c60f4
2 changed files with 11 additions and 23 deletions
|
@ -15,9 +15,9 @@ module ApplicationHelper
|
|||
@m = current_user.settings.metacodes
|
||||
set = metacodeset
|
||||
@metacodes = if set && set == 'Most'
|
||||
Metacode.where(id: current_user.mostUsedMetacodes).to_a
|
||||
Metacode.where(id: current_user.most_used_metacodes).to_a
|
||||
elsif set && set == 'Recent'
|
||||
Metacode.where(id: current_user.recentMetacodes).to_a
|
||||
Metacode.where(id: current_user.recent_metacodes).to_a
|
||||
elsif set
|
||||
set.metacodes.to_a
|
||||
else
|
||||
|
@ -27,11 +27,11 @@ module ApplicationHelper
|
|||
end
|
||||
|
||||
def user_most_used_metacodes
|
||||
@metacodes = current_user.mostUsedMetacodes.map { |id| Metacode.find(id) }
|
||||
@metacodes = current_user.most_used_metacodes.map { |id| Metacode.find(id) }
|
||||
end
|
||||
|
||||
def user_recent_metacodes
|
||||
@metacodes = current_user.recentMetacodes.map { |id| Metacode.find(id) }
|
||||
@metacodes = current_user.recent_metacodes.map { |id| Metacode.find(id) }
|
||||
end
|
||||
|
||||
def invite_link
|
||||
|
|
|
@ -64,32 +64,20 @@ class User < ApplicationRecord
|
|||
json['rtype'] = 'mapper'
|
||||
json
|
||||
end
|
||||
|
||||
|
||||
def all_accessible_maps
|
||||
#TODO: is there a way to keep this an ActiveRecord relation?
|
||||
maps + shared_maps
|
||||
end
|
||||
|
||||
def recentMetacodes
|
||||
array = []
|
||||
self.topics.sort{|a,b| b.created_at <=> a.created_at }.each do |t|
|
||||
if array.length < 5 and array.index(t.metacode_id) == nil
|
||||
array.push(t.metacode_id)
|
||||
end
|
||||
end
|
||||
array
|
||||
def recent_metacodes
|
||||
topics.order(:created_at).pluck(:metacode_id).uniq.first(5)
|
||||
end
|
||||
|
||||
def mostUsedMetacodes
|
||||
self.topics.to_a.reduce({}) { |memo, topic|
|
||||
if memo[topic.metacode_id] == nil
|
||||
memo[topic.metacode_id] = 1
|
||||
else
|
||||
memo[topic.metacode_id] = memo[topic.metacode_id] + 1
|
||||
end
|
||||
|
||||
def most_used_metacodes
|
||||
topics.to_a.each_with_object(Hash.new(0)) do |topic, memo|
|
||||
memo[topic.metacode_id] += 1
|
||||
memo
|
||||
}.to_a.sort{ |a, b| b[1] <=> a[1] }.map{|i| i[0]}.slice(0, 5)
|
||||
end.to_a.sort { |a, b| b[1] <=> a[1] }.map { |i| i[0] }.slice(0, 5)
|
||||
end
|
||||
|
||||
# generate a random 8 letter/digit code that they can use to invite people
|
||||
|
|
Loading…
Reference in a new issue