2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-03 11:03:01 -06:00
|
|
|
class Reviewable < ActiveRecord::Base
|
|
|
|
class Conversation
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
|
|
|
class Post
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
attr_reader :id, :user, :excerpt
|
|
|
|
|
|
|
|
def initialize(post)
|
|
|
|
@user = post.user
|
|
|
|
@id = post.id
|
|
|
|
@excerpt = FlagQuery.excerpt(post.cooked)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
attr_reader :id, :permalink, :has_more, :conversation_posts
|
|
|
|
|
|
|
|
def initialize(meta_topic)
|
|
|
|
@id = meta_topic.id
|
|
|
|
@has_more = false
|
2019-06-24 05:39:34 -05:00
|
|
|
@permalink = "#{Discourse.base_url_no_prefix}#{meta_topic.relative_url}"
|
2019-01-03 11:03:01 -06:00
|
|
|
@posts = []
|
|
|
|
|
|
|
|
meta_posts = meta_topic.ordered_posts.where(post_type: ::Post.types[:regular]).limit(2)
|
|
|
|
|
|
|
|
@conversation_posts = meta_posts.map { |mp| Reviewable::Conversation::Post.new(mp) }
|
|
|
|
@has_more = meta_topic.posts_count > 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|