mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:54:31 +08:00
7fee3c61de
* Support for custom messages and redirects when creating posts When a post/topic is created Discourse serializes a `NewPostResult` object. Normally this contains a status like `created_post` or errors describing why the post could not be created. There are times when a plugin might want to take the inputted post and do something in the background. In this case, the plugin can return a custom `message` and `route_to` attribute in the `NewPostResult`. If present, the message will be displayed in an alert, and when "Ok" is clicked the user will be routed to the new URL. * Destroy the draft in parallel
86 lines
1.4 KiB
Ruby
86 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class NewPostResultSerializer < ApplicationSerializer
|
|
attributes :action,
|
|
:post,
|
|
:errors,
|
|
:success,
|
|
:pending_count,
|
|
:reason,
|
|
:message,
|
|
:route_to
|
|
|
|
has_one :pending_post, serializer: TopicPendingPostSerializer, root: false, embed: :objects
|
|
|
|
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
|
|
|
|
def reason
|
|
object.reason
|
|
end
|
|
|
|
def include_reason?
|
|
scope.is_staff? && reason.present?
|
|
end
|
|
|
|
def action
|
|
object.action
|
|
end
|
|
|
|
def pending_count
|
|
object.pending_count
|
|
end
|
|
|
|
def pending_post
|
|
object.reviewable
|
|
end
|
|
|
|
def include_pending_post?
|
|
object.reviewable.present?
|
|
end
|
|
|
|
def include_pending_count?
|
|
pending_count.present?
|
|
end
|
|
|
|
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
|
|
|
|
end
|