Merge pull request #3109 from yougotwill/fix/ses-1945/admins_clear_reactions

Fix 'clear all' reactions in communities
pull/3113/head
Audric Ackermann 11 months ago committed by GitHub
commit 6282ed6ea4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,11 +20,6 @@
.module-contact-name__profile-number.italic { .module-contact-name__profile-number.italic {
font-style: italic; font-style: italic;
} }
.module-contact-name.compact {
display: block;
}
// Module: Message // Module: Message
.module-message__error-container { .module-message__error-container {

@ -13,12 +13,11 @@ type Props = {
profileName?: string | null; profileName?: string | null;
module?: string; module?: string;
boldProfileName?: boolean; boldProfileName?: boolean;
compact?: boolean;
shouldShowPubkey: boolean; shouldShowPubkey: boolean;
}; };
export const ContactName = (props: Props) => { export const ContactName = (props: Props) => {
const { pubkey, name, profileName, module, boldProfileName, compact, shouldShowPubkey } = props; const { pubkey, name, profileName, module, boldProfileName, shouldShowPubkey } = props;
const prefix = module || 'module-contact-name'; const prefix = module || 'module-contact-name';
const convoName = useNicknameOrProfileNameOrShortenedPubkey(pubkey); const convoName = useNicknameOrProfileNameOrShortenedPubkey(pubkey);
@ -43,7 +42,7 @@ export const ContactName = (props: Props) => {
return ( return (
<span <span
className={classNames(prefix, compact && 'compact')} className={classNames(prefix)}
dir="auto" dir="auto"
data-testid={`${prefix}__profile-name`} data-testid={`${prefix}__profile-name`}
style={{ style={{

@ -1,6 +1,6 @@
import classNames from 'classnames'; import classNames from 'classnames';
import React, { useState } from 'react';
import { noop } from 'lodash'; import { noop } from 'lodash';
import React, { useState } from 'react';
import * as MIME from '../../../../types/MIME'; import * as MIME from '../../../../types/MIME';
import * as GoogleChrome from '../../../../util/GoogleChrome'; import * as GoogleChrome from '../../../../util/GoogleChrome';
@ -291,7 +291,6 @@ const QuoteAuthor = (props: QuoteAuthorProps) => {
pubkey={PubKey.shorten(author)} pubkey={PubKey.shorten(author)}
name={authorName} name={authorName}
profileName={authorProfileName} profileName={authorProfileName}
compact={true}
shouldShowPubkey={Boolean(props.showPubkeyForAuthor)} shouldShowPubkey={Boolean(props.showPubkeyForAuthor)}
/> />
)} )}

@ -41,7 +41,6 @@ export const QuoteAuthor = (props: QuoteAuthorProps) => {
<ContactName <ContactName
pubkey={PubKey.shorten(author)} pubkey={PubKey.shorten(author)}
name={authorName} name={authorName}
compact={true}
shouldShowPubkey={Boolean(authorName && !isMe && isPublic)} shouldShowPubkey={Boolean(authorName && !isMe && isPublic)}
/> />
</StyledQuoteAuthor> </StyledQuoteAuthor>

@ -14,6 +14,7 @@ import {
} from '../../state/ducks/modalDialog'; } from '../../state/ducks/modalDialog';
import { import {
useSelectedIsPublic, useSelectedIsPublic,
useSelectedWeAreAdmin,
useSelectedWeAreModerator, useSelectedWeAreModerator,
} from '../../state/selectors/selectedConversation'; } from '../../state/selectors/selectedConversation';
import { SortedReactionList } from '../../types/Reaction'; import { SortedReactionList } from '../../types/Reaction';
@ -50,6 +51,11 @@ const StyledSendersContainer = styled(Flex)`
padding: 0 16px 16px; padding: 0 16px 16px;
`; `;
const StyledContactContainer = styled.span`
text-overflow: ellipsis;
overflow: hidden;
`;
const StyledReactionBar = styled(Flex)` const StyledReactionBar = styled(Flex)`
width: 100%; width: 100%;
margin: 12px 0 20px 4px; margin: 12px 0 20px 4px;
@ -132,7 +138,7 @@ const ReactionSenders = (props: ReactionSendersProps) => {
justifyContent={'space-between'} justifyContent={'space-between'}
alignItems={'center'} alignItems={'center'}
> >
<Flex container={true} alignItems={'center'}> <Flex container={true} alignItems={'center'} style={{ overflow: 'hidden' }}>
<Avatar <Avatar
size={AvatarSize.XS} size={AvatarSize.XS}
pubkey={sender} pubkey={sender}
@ -143,11 +149,13 @@ const ReactionSenders = (props: ReactionSendersProps) => {
{sender === me ? ( {sender === me ? (
window.i18n('you') window.i18n('you')
) : ( ) : (
<ContactName <StyledContactContainer>
pubkey={sender} <ContactName
module="module-conversation__user" pubkey={sender}
shouldShowPubkey={false} module="module-conversation__user"
/> shouldShowPubkey={false}
/>
</StyledContactContainer>
)} )}
</Flex> </Flex>
{sender === me && ( {sender === me && (
@ -231,6 +239,7 @@ export const ReactListModal = (props: Props) => {
const msgProps = useMessageReactsPropsById(messageId); const msgProps = useMessageReactsPropsById(messageId);
const isPublic = useSelectedIsPublic(); const isPublic = useSelectedIsPublic();
const weAreAdmin = useSelectedWeAreAdmin();
const weAreModerator = useSelectedWeAreModerator(); const weAreModerator = useSelectedWeAreModerator();
const me = UserUtils.getOurPubKeyStrFromCache(); const me = UserUtils.getOurPubKeyStrFromCache();
@ -362,7 +371,7 @@ export const ReactListModal = (props: Props) => {
</> </>
)} )}
</p> </p>
{isPublic && weAreModerator && ( {isPublic && (weAreAdmin || weAreModerator) && (
<SessionButton <SessionButton
text={window.i18n('clearAll')} text={window.i18n('clearAll')}
buttonColor={SessionButtonColor.Danger} buttonColor={SessionButtonColor.Danger}

Loading…
Cancel
Save