2013-02-05 14:16:51 -05:00
|
|
|
require_dependency 'avatar_lookup'
|
2017-02-17 17:54:43 -05:00
|
|
|
require_dependency 'primary_group_lookup'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
class TopicList
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2017-09-29 11:04:05 -04:00
|
|
|
cattr_accessor :preloaded_custom_fields
|
|
|
|
self.preloaded_custom_fields = Set.new
|
2015-08-05 02:01:52 -04:00
|
|
|
|
2017-02-14 16:32:33 -05:00
|
|
|
def self.on_preload(&blk)
|
2017-09-29 11:04:05 -04:00
|
|
|
(@preload ||= Set.new) << blk
|
2017-02-14 16:29:06 -05:00
|
|
|
end
|
|
|
|
|
2017-02-14 16:32:33 -05:00
|
|
|
def self.cancel_preload(&blk)
|
2017-09-29 11:04:05 -04:00
|
|
|
if @preload
|
|
|
|
@preload.delete blk
|
|
|
|
if @preload.length == 0
|
|
|
|
@preload = nil
|
|
|
|
end
|
|
|
|
end
|
2017-02-14 16:29:06 -05:00
|
|
|
end
|
|
|
|
|
2017-02-15 12:04:02 -05:00
|
|
|
def self.preload(topics, object)
|
2017-09-29 11:04:05 -04:00
|
|
|
if @preload
|
|
|
|
@preload.each { |preload| preload.call(topics, object) }
|
|
|
|
end
|
2017-02-14 16:29:06 -05:00
|
|
|
end
|
|
|
|
|
2013-04-02 16:52:51 -04:00
|
|
|
attr_accessor :more_topics_url,
|
2014-02-25 12:15:20 -05:00
|
|
|
:prev_topics_url,
|
2013-04-02 16:52:51 -04:00
|
|
|
:draft,
|
|
|
|
:draft_key,
|
|
|
|
:draft_sequence,
|
2014-08-28 14:34:31 -04:00
|
|
|
:filter,
|
2014-12-15 11:54:26 -05:00
|
|
|
:for_period,
|
2016-07-07 09:17:56 -04:00
|
|
|
:per_page,
|
2018-01-12 15:26:13 -05:00
|
|
|
:top_tags,
|
2018-01-12 16:35:16 -05:00
|
|
|
:current_user,
|
|
|
|
:tags
|
2013-04-02 16:52:51 -04:00
|
|
|
|
2017-07-27 21:20:09 -04:00
|
|
|
def initialize(filter, current_user, topics, opts = nil)
|
2013-04-02 16:52:51 -04:00
|
|
|
@filter = filter
|
2013-02-05 14:16:51 -05:00
|
|
|
@current_user = current_user
|
|
|
|
@topics_input = topics
|
2014-10-08 12:44:47 -04:00
|
|
|
@opts = opts || {}
|
2016-05-16 05:31:39 -04:00
|
|
|
|
2016-07-07 09:17:56 -04:00
|
|
|
if @opts[:category]
|
|
|
|
@category = Category.find_by(id: @opts[:category_id])
|
|
|
|
end
|
2018-01-12 16:35:16 -05:00
|
|
|
|
|
|
|
if @opts[:tags]
|
|
|
|
@tags = Tag.where(id: @opts[:tags]).all
|
|
|
|
end
|
2014-10-08 12:44:47 -04:00
|
|
|
end
|
|
|
|
|
2018-01-12 15:26:13 -05:00
|
|
|
def top_tags
|
2016-07-07 09:17:56 -04:00
|
|
|
opts = @category ? { category: @category } : {}
|
2016-09-22 15:23:10 -04:00
|
|
|
opts[:guardian] = Guardian.new(@current_user)
|
2016-07-07 09:17:56 -04:00
|
|
|
Tag.top_tags(opts)
|
|
|
|
end
|
|
|
|
|
2014-10-08 12:44:47 -04:00
|
|
|
def preload_key
|
2016-07-07 09:17:56 -04:00
|
|
|
if @category
|
|
|
|
"topic_list_#{@category.url.sub(/^\//, '')}/l/#{@filter}"
|
|
|
|
else
|
|
|
|
"topic_list_#{@filter}"
|
2014-10-08 12:44:47 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
# Lazy initialization
|
|
|
|
def topics
|
2015-06-15 02:25:36 -04:00
|
|
|
@topics ||= load_topics
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-06-15 02:25:36 -04:00
|
|
|
def load_topics
|
2015-02-23 00:50:52 -05:00
|
|
|
@topics = @topics_input
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Attach some data for serialization to each topic
|
2015-01-08 19:41:10 -05:00
|
|
|
@topic_lookup = TopicUser.lookup_for(@current_user, @topics) if @current_user
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2015-01-07 02:20:10 -05:00
|
|
|
post_action_type =
|
2015-01-08 19:41:10 -05:00
|
|
|
if @current_user
|
2015-01-07 02:20:10 -05:00
|
|
|
if @opts[:filter].present?
|
|
|
|
if @opts[:filter] == "bookmarked"
|
|
|
|
PostActionType.types[:bookmark]
|
|
|
|
elsif @opts[:filter] == "liked"
|
|
|
|
PostActionType.types[:like]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2015-01-08 19:41:10 -05:00
|
|
|
|
|
|
|
# Include bookmarks if you have bookmarked topics
|
|
|
|
if @current_user && !post_action_type
|
2017-07-27 21:20:09 -04:00
|
|
|
post_action_type = PostActionType.types[:bookmark] if @topic_lookup.any? { |_, tu| tu && tu.bookmarked }
|
2015-01-08 19:41:10 -05:00
|
|
|
end
|
2015-01-07 02:20:10 -05:00
|
|
|
|
|
|
|
# Data for bookmarks or likes
|
|
|
|
post_action_lookup = PostAction.lookup_for(@current_user, @topics, post_action_type) if post_action_type
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Create a lookup for all the user ids we need
|
|
|
|
user_ids = []
|
2013-02-07 10:45:24 -05:00
|
|
|
@topics.each do |ft|
|
2014-05-12 03:32:49 -04:00
|
|
|
user_ids << ft.user_id << ft.last_post_user_id << ft.featured_user_ids << ft.allowed_user_ids
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
avatar_lookup = AvatarLookup.new(user_ids)
|
2017-02-22 12:20:50 -05:00
|
|
|
primary_group_lookup = PrimaryGroupLookup.new(user_ids)
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-07 10:45:24 -05:00
|
|
|
@topics.each do |ft|
|
2013-02-05 14:16:51 -05:00
|
|
|
ft.user_data = @topic_lookup[ft.id] if @topic_lookup.present?
|
2015-01-07 02:20:10 -05:00
|
|
|
|
|
|
|
if ft.user_data && post_action_lookup && actions = post_action_lookup[ft.id]
|
2017-07-27 21:20:09 -04:00
|
|
|
ft.user_data.post_action_data = { post_action_type => actions }
|
2015-01-07 02:20:10 -05:00
|
|
|
end
|
|
|
|
|
2017-02-17 17:54:43 -05:00
|
|
|
ft.posters = ft.posters_summary(
|
|
|
|
avatar_lookup: avatar_lookup,
|
2017-02-22 12:20:50 -05:00
|
|
|
primary_group_lookup: primary_group_lookup
|
2017-02-17 17:54:43 -05:00
|
|
|
)
|
|
|
|
|
2014-05-12 03:32:49 -04:00
|
|
|
ft.participants = ft.participants_summary(avatar_lookup: avatar_lookup, user: @current_user)
|
2013-04-02 16:52:51 -04:00
|
|
|
ft.topic_list = self
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2017-09-29 11:04:05 -04:00
|
|
|
if preloaded_custom_fields.present?
|
|
|
|
Topic.preload_custom_fields(@topics, preloaded_custom_fields)
|
2015-08-05 02:01:52 -04:00
|
|
|
end
|
|
|
|
|
2017-02-15 12:04:02 -05:00
|
|
|
TopicList.preload(@topics, self)
|
2017-02-14 16:29:06 -05:00
|
|
|
|
2014-05-12 03:32:49 -04:00
|
|
|
@topics
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def attributes
|
2017-07-27 21:20:09 -04:00
|
|
|
{ 'more_topics_url' => page }
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|