change block footer for groups

This commit is contained in:
Samuel Newman
2026-05-26 12:06:43 +03:00
parent 4382ae5f8d
commit 1376f38b2f
2 changed files with 17 additions and 7 deletions
@@ -22,10 +22,12 @@ export function MessagesListBlockedFooter({
recipient: initialRecipient,
convoId,
moderation,
isGroup,
}: {
recipient: bsky.profile.AnyProfileView
convoId: string
moderation: ModerationDecision
isGroup: boolean
}) {
const t = useTheme()
const {t: l} = useLingui()
@@ -64,9 +66,7 @@ export function MessagesListBlockedFooter({
a.justify_center,
a.p_lg,
t.atoms.bg_contrast_50,
{
borderRadius: 40,
},
{borderRadius: 40},
]}>
<PersonXIcon fill={t.atoms.text.color} size="lg" style={[a.mb_xs]} />
<Text
@@ -77,9 +77,11 @@ export function MessagesListBlockedFooter({
a.font_semi_bold,
t.atoms.text,
]}>
{isBlocking
? l`You are blocking this person`
: l`This person is blocking you`}
{isGroup
? l`You are blocking the chat owner`
: isBlocking
? l`You are blocking this person`
: l`This person is blocking you`}
</Text>
<Text
style={[
+9 -1
View File
@@ -230,11 +230,19 @@ function InnerReady({
let footer: React.ReactNode = null
if (isDisabled) {
footer = <ChatDisabled />
} else if (convo && primaryMember && primaryMemberModeration?.blocked) {
} else if (
convo &&
primaryMember &&
primaryMemberModeration &&
(convo.kind === 'group'
? primaryMemberModeration?.blockCause?.type === 'blocking'
: primaryMemberModeration?.blocked)
) {
footer = (
<MessagesListBlockedFooter
recipient={primaryMember}
convoId={convo.view.id}
isGroup={convo.kind === 'group'}
moderation={primaryMemberModeration}
/>
)