2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-04-01 00:58:56 +08:00
|
|
|
class NewPostResultSerializer < ApplicationSerializer
|
|
|
|
attributes :action,
|
|
|
|
:post,
|
|
|
|
:errors,
|
2015-04-25 03:44:59 +08:00
|
|
|
:success,
|
2015-04-29 03:06:27 +08:00
|
|
|
:pending_count,
|
2019-11-29 22:30:54 +08:00
|
|
|
:reason,
|
|
|
|
:message,
|
|
|
|
:route_to
|
2015-04-01 00:58:56 +08:00
|
|
|
|
2019-04-12 21:55:27 +08:00
|
|
|
has_one :pending_post, serializer: TopicPendingPostSerializer, root: false, embed: :objects
|
|
|
|
|
2015-04-01 00:58:56 +08:00
|
|
|
def post
|
|
|
|
post_serializer = PostSerializer.new(object.post, scope: scope, root: false)
|
|
|
|
post_serializer.draft_sequence = DraftSequence.current(scope.user, object.post.topic.draft_key)
|
|
|
|
post_serializer.as_json
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_post?
|
|
|
|
object.post.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def success
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_success?
|
|
|
|
@object.success?
|
|
|
|
end
|
|
|
|
|
|
|
|
def errors
|
|
|
|
object.errors.full_messages
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_errors?
|
|
|
|
!object.errors.empty?
|
|
|
|
end
|
|
|
|
|
2015-04-29 03:06:27 +08:00
|
|
|
def reason
|
|
|
|
object.reason
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_reason?
|
2019-04-12 21:55:27 +08:00
|
|
|
scope.is_staff? && reason.present?
|
2015-04-29 03:06:27 +08:00
|
|
|
end
|
|
|
|
|
2015-04-01 00:58:56 +08:00
|
|
|
def action
|
|
|
|
object.action
|
|
|
|
end
|
|
|
|
|
2015-04-25 03:44:59 +08:00
|
|
|
def pending_count
|
|
|
|
object.pending_count
|
|
|
|
end
|
|
|
|
|
2019-04-12 21:55:27 +08:00
|
|
|
def pending_post
|
|
|
|
object.reviewable
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_pending_post?
|
|
|
|
object.reviewable.present?
|
|
|
|
end
|
|
|
|
|
2015-04-25 03:44:59 +08:00
|
|
|
def include_pending_count?
|
|
|
|
pending_count.present?
|
|
|
|
end
|
|
|
|
|
2019-11-29 22:30:54 +08:00
|
|
|
def route_to
|
|
|
|
object.route_to
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_route_to?
|
|
|
|
object.route_to.present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def message
|
|
|
|
object.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_message?
|
|
|
|
object.message.present?
|
|
|
|
end
|
|
|
|
|
2015-04-01 00:58:56 +08:00
|
|
|
end
|