2016-10-10 21:28:23 +03:00
|
|
|
class Summary
|
|
|
|
include ActiveModel::Model
|
|
|
|
|
|
|
|
attr_accessor :talk_ids
|
|
|
|
|
|
|
|
def number_of_ballots
|
|
|
|
@number_of_ballots ||= TalkPreference.joins(:selected_talks)
|
|
|
|
.where(selected_talks: {talk_id: @talk_ids})
|
|
|
|
.uniq.count
|
|
|
|
end
|
|
|
|
|
2016-10-13 04:32:42 +03:00
|
|
|
def most_conflicts
|
|
|
|
ConflictsForTalk.where(talk_id: talk_ids).most.conflicts
|
|
|
|
end
|
|
|
|
|
|
|
|
def least_conflicts
|
|
|
|
ConflictsForTalk.where(talk_id: talk_ids).least.conflicts
|
|
|
|
end
|
|
|
|
|
2016-10-10 21:28:23 +03:00
|
|
|
def ranking
|
|
|
|
@ranking ||= Ranking.new(talk_ids: talk_ids).ranking
|
|
|
|
end
|
|
|
|
end
|