about summary refs log tree commit diff
path: root/src/view/screens/DebugMod.tsx
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2024-05-23 16:39:39 -0700
committerGitHub <noreply@github.com>2024-05-24 00:39:39 +0100
commitf7ee532a8521b96afd2cb358980d9b25bd59c29a (patch)
tree99cec275423b493eb7ffd691e0d5013bc37ea80f /src/view/screens/DebugMod.tsx
parentd2c42cf16905a8904dcfbba4825ca5f8abc3f253 (diff)
downloadvoidsky-f7ee532a8521b96afd2cb358980d9b25bd59c29a.tar.zst
Improve moderation behaviors: show alert/inform sources and improve UX around threads (#3677)
* Dont show account or profile alerts and informs on posts

* Sort threads to put blurred items at bottom

* Group blurred replies under a single 'show hidden replies' control

* Distinguish between muted and hidden replies in the thread view

* Fix types

* Modify the label alerts with some minor aesthetic updates and to show the source of a label

* Tune when an account-level alert is shown on a post

* Revert: show account-level alerts on posts again

* Rm unused import

* Fix to showing hidden replies when viewing a blurred item

* Go ahead and uncover replies when 'show hidden posts' is clicked

---------

Co-authored-by: dan <dan.abramov@gmail.com>
Diffstat (limited to 'src/view/screens/DebugMod.tsx')
-rw-r--r--src/view/screens/DebugMod.tsx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/screens/DebugMod.tsx b/src/view/screens/DebugMod.tsx
index 77b07b8c9..7d0d2fb03 100644
--- a/src/view/screens/DebugMod.tsx
+++ b/src/view/screens/DebugMod.tsx
@@ -813,6 +813,7 @@ function MockPostFeedItem({
 
 function MockPostThreadItem({
   post,
+  moderation,
   reply,
 }: {
   post: AppBskyFeedDefs.PostView
@@ -824,12 +825,14 @@ function MockPostThreadItem({
       // @ts-ignore
       post={post}
       record={post.record as AppBskyFeedPost.Record}
+      moderation={moderation}
       depth={reply ? 1 : 0}
       isHighlightedPost={!reply}
       treeView={false}
       prevPost={undefined}
       nextPost={undefined}
       hasPrecedingItem={false}
+      overrideBlur={false}
       onPostReply={() => {}}
     />
   )