DEV: Include context question for chat reviewables ()

Chat review queue flags were missing the context message above the actions.

This is probably because the (reasonably complex) logic was somewhat hard-coded to posts. After some investigation I concluded we can reuse this logic with some small amendments.
This commit is contained in:
Ted Johansson 2023-09-05 10:11:39 +08:00 committed by GitHub
parent 29c3f1557a
commit d1253bc3af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 47 additions and 13 deletions

@ -66,12 +66,10 @@
{{/if}} {{/if}}
</div> </div>
{{#if (eq this.reviewable.type "ReviewableFlaggedPost")}} {{#if this.displayContextQuestion}}
{{#if (eq this.reviewable.status 0)}} <h3 class="reviewable-item__context-question">
<h3 class="reviewable-item__context-question"> {{this.reviewable.flaggedReviewableContextQuestion}}
{{this.reviewable.flaggedPostContextQuestion}} </h3>
</h3>
{{/if}}
{{/if}} {{/if}}
<div class="reviewable-actions"> <div class="reviewable-actions">

@ -58,6 +58,11 @@ export default Component.extend({
return classes; return classes;
}, },
@discourseComputed("reviewable.created_from_flag", "reviewable.status")
displayContextQuestion(createdFromFlag, status) {
return createdFromFlag && status === 0;
},
@discourseComputed( @discourseComputed(
"reviewable.topic", "reviewable.topic",
"reviewable.topic_id", "reviewable.topic_id",

@ -35,14 +35,23 @@ const Reviewable = RestModel.extend({
return "-" + dasherize(humanType); return "-" + dasherize(humanType);
}, },
@discourseComputed @discourseComputed("resolvedType")
flaggedPostContextQuestion() { humanNoun(resolvedType) {
return I18n.t(`review.types.${underscore(resolvedType)}.noun`, {
defaultValue: "reviewable",
});
},
@discourseComputed("humanNoun")
flaggedReviewableContextQuestion(humanNoun) {
const uniqueReviewableScores = const uniqueReviewableScores =
this.reviewable_scores.uniqBy("score_type.type"); this.reviewable_scores.uniqBy("score_type.type");
if (uniqueReviewableScores.length === 1) { if (uniqueReviewableScores.length === 1) {
if (uniqueReviewableScores[0].score_type.type === "notify_moderators") { if (uniqueReviewableScores[0].score_type.type === "notify_moderators") {
return I18n.t("review.context_question.something_else_wrong"); return I18n.t("review.context_question.something_else_wrong", {
reviewable_type: humanNoun,
});
} }
} }
@ -55,6 +64,7 @@ const Reviewable = RestModel.extend({
return I18n.t("review.context_question.is_this_post", { return I18n.t("review.context_question.is_this_post", {
reviewable_human_score_types: listOfQuestions, reviewable_human_score_types: listOfQuestions,
reviewable_type: humanNoun,
}); });
}, },

@ -4,6 +4,10 @@ class ReviewableFlaggedPostSerializer < ReviewableSerializer
target_attributes :cooked, :raw, :reply_count, :reply_to_post_number target_attributes :cooked, :raw, :reply_count, :reply_to_post_number
attributes :blank_post, :post_updated_at, :post_version attributes :blank_post, :post_updated_at, :post_version
def created_from_flag?
true
end
def post_version def post_version
object.target&.version object.target&.version
end end

@ -16,6 +16,7 @@ class ReviewableSerializer < ApplicationSerializer
:score, :score,
:version, :version,
:target_created_by_trust_level, :target_created_by_trust_level,
:created_from_flag?,
) )
attribute :status_for_database, key: :status attribute :status_for_database, key: :status
@ -96,6 +97,10 @@ class ReviewableSerializer < ApplicationSerializer
end end
end end
def created_from_flag?
false
end
def topic_tags def topic_tags
object.topic.tags.map(&:name) object.topic.tags.map(&:name)
end end

@ -618,24 +618,27 @@ en:
title: "Everything" title: "Everything"
context_question: context_question:
is_this_post: "Is this post %{reviewable_human_score_types}?" is_this_post: "Is this %{reviewable_type} %{reviewable_human_score_types}?"
delimiter: "or" delimiter: "or"
something_else_wrong: "Is there something wrong with this post?" something_else_wrong: "Is there something wrong with this %{reviewable_type}?"
types: types:
reviewable_flagged_post: reviewable_flagged_post:
title: "Flagged Post" title: "Flagged Post"
flagged_by: "Flagged By" flagged_by: "Flagged By"
noun: "post"
reviewable_queued_topic: reviewable_queued_topic:
title: "Queued Topic" title: "Queued Topic"
noun: "topic"
reviewable_queued_post: reviewable_queued_post:
title: "Queued Post" title: "Queued Post"
noun: "post"
reviewable_user: reviewable_user:
title: "User" title: "User"
noun: "user"
reviewable_post: reviewable_post:
title: "Post" title: "Post"
reviewable_chat_message: noun: "post"
title: "Flagged chat message"
approval: approval:
title: "Post Needs Approval" title: "Post Needs Approval"
description: "We've received your new post but it needs to be approved by a moderator before it will appear. Please be patient." description: "We've received your new post but it needs to be approved by a moderator before it will appear. Please be patient."

@ -10,6 +10,10 @@ module Chat
has_one :chat_channel, serializer: Chat::ChannelSerializer, root: false, embed: :objects has_one :chat_channel, serializer: Chat::ChannelSerializer, root: false, embed: :objects
def created_from_flag?
true
end
def chat_channel def chat_channel
object.chat_message.chat_channel object.chat_message.chat_channel
end end

@ -637,6 +637,9 @@ en:
types: types:
chat_reviewable_message: chat_reviewable_message:
title: "Flagged Chat Message" title: "Flagged Chat Message"
reviewable_chat_message:
title: "Flagged chat message"
noun: "chat message"
keyboard_shortcuts_help: keyboard_shortcuts_help:
chat: chat:
title: "Chat" title: "Chat"

@ -11,6 +11,7 @@ RSpec.describe ReviewableFlaggedPostSerializer do
expect(json[:cooked]).to eq(p0.cooked) expect(json[:cooked]).to eq(p0.cooked)
expect(json[:raw]).to eq(p0.raw) expect(json[:raw]).to eq(p0.raw)
expect(json[:target_url]).to eq(Discourse.base_url + p0.url) expect(json[:target_url]).to eq(Discourse.base_url + p0.url)
expect(json[:created_from_flag]).to eq(true)
end end
it "works when the topic is deleted" do it "works when the topic is deleted" do

@ -15,6 +15,7 @@ RSpec.describe ReviewableSerializer do
expect(json[:can_edit]).to eq(true) expect(json[:can_edit]).to eq(true)
expect(json[:version]).to eq(0) expect(json[:version]).to eq(0)
expect(json[:removed_topic_id]).to be_nil expect(json[:removed_topic_id]).to be_nil
expect(json[:created_from_flag]).to eq(false)
end end
it "Includes the removed topic id when the topis was deleted" do it "Includes the removed topic id when the topis was deleted" do