diff options
author | Eric Bailey <git@esb.lol> | 2023-12-18 11:16:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 09:16:33 -0800 |
commit | 47ff3e8e3f84138ce207b2d2209f358e4cc1f74a (patch) | |
tree | 84bdcccc3dbf3163f17662036a20ab02931cafed | |
parent | 38e65fbe75d925b8081e3209c0281daaae9b9809 (diff) | |
download | voidsky-47ff3e8e3f84138ce207b2d2209f358e4cc1f74a.tar.zst |
Hide label appeal on self-labeled posts (#2232)
* Hide appeal for self-labeled post, update copy * Use correct logic
-rw-r--r-- | jest/test-pds.ts | 2 | ||||
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 5 | ||||
-rw-r--r-- | src/view/com/util/moderation/LabelInfo.tsx | 3 |
3 files changed, 7 insertions, 3 deletions
diff --git a/jest/test-pds.ts b/jest/test-pds.ts index 25faddfa7..d86ebd787 100644 --- a/jest/test-pds.ts +++ b/jest/test-pds.ts @@ -78,7 +78,7 @@ export async function createServer( }) const pic = fs.readFileSync( - path.join(__dirname, '..', 'assets', 'default-avatar.jpg'), + path.join(__dirname, '..', 'assets', 'default-avatar.png'), ) return { diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 8d1211707..e6adfc85b 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -187,6 +187,9 @@ let PostThreadItemLoaded = ({ return makeProfileLink(post.author, 'post', urip.rkey, 'reposted-by') }, [post.uri, post.author]) const repostsTitle = 'Reposts of this post' + const isSelfLabeledPost = + moderation.decisions.post.cause?.type === 'label' && + moderation.decisions.post.cause.label.src === currentAccount?.did const translatorUrl = getTranslatorLink( record?.text || '', @@ -351,7 +354,7 @@ let PostThreadItemLoaded = ({ includeMute style={styles.alert} /> - {post.author.did === currentAccount?.did ? ( + {post.author.did === currentAccount?.did && !isSelfLabeledPost ? ( <LabelInfo details={{uri: post.uri, cid: post.cid}} labels={post.labels} diff --git a/src/view/com/util/moderation/LabelInfo.tsx b/src/view/com/util/moderation/LabelInfo.tsx index 8fe3765c2..970338752 100644 --- a/src/view/com/util/moderation/LabelInfo.tsx +++ b/src/view/com/util/moderation/LabelInfo.tsx @@ -43,7 +43,8 @@ export function LabelInfo({ ]}> <Text type="sm" style={pal.text}> <Trans> - This {'did' in details ? 'account' : 'post'} has been labeled. + A content warning has been applied to this{' '} + {'did' in details ? 'account' : 'post'}. </Trans>{' '} </Text> <Pressable |