hide shortened pubkey except for public groups

pull/1374/head
Audric Ackermann 5 years ago
parent 1b3140d126
commit 16b8fc8620
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -357,6 +357,7 @@ class ConversationListItem extends React.PureComponent<Props> {
module="module-conversation__user"
i18n={window.i18n}
boldProfileName={true}
shouldShowPubkey={false}
/>
</div>
);

@ -68,6 +68,7 @@ export class MessageSearchResult extends React.PureComponent<Props> {
profileName={from.profileName}
i18n={i18n}
module="module-message-search-result__header__name"
shouldShowPubkey={false}
/>
);
}
@ -86,6 +87,7 @@ export class MessageSearchResult extends React.PureComponent<Props> {
name={to.name}
profileName={to.profileName}
i18n={i18n}
shouldShowPubkey={false}
/>
</span>
</div>

@ -12,6 +12,7 @@ interface Props {
module?: string;
boldProfileName?: Boolean;
compact?: Boolean;
shouldShowPubkey: Boolean;
}
export class ContactName extends React.Component<Props> {
@ -24,19 +25,27 @@ export class ContactName extends React.Component<Props> {
module,
boldProfileName,
compact,
shouldShowPubkey,
} = this.props;
const prefix = module ? module : 'module-contact-name';
const title = name ? name : phoneNumber;
const shouldShowProfile = Boolean(profileName && !name);
const shouldShowProfile = Boolean(profileName || name);
const styles = (boldProfileName
? {
fontWeight: 'bold',
}
: {}) as React.CSSProperties;
const textProfile = profileName || name || '';
const profileElement = shouldShowProfile ? (
<span style={styles} className={`${prefix}__profile-name`}>
<Emojify text={profileName || ''} i18n={i18n} />
<Emojify text={textProfile} i18n={i18n} />
</span>
) : null;
const pubKeyElement = shouldShowPubkey ? (
<span className={`${prefix}__profile-number`}>
<Emojify text={title} i18n={i18n} />
</span>
) : null;
@ -44,14 +53,7 @@ export class ContactName extends React.Component<Props> {
<span className={classNames(prefix, compact && 'compact')} dir="auto">
{profileElement}
{shouldShowProfile ? ' ' : null}
<span
className={classNames(
`${prefix}__profile-number`,
shouldShowProfile && 'italic'
)}
>
<Emojify text={title} i18n={i18n} />
</span>
{pubKeyElement}
</span>
);
}

@ -181,7 +181,7 @@ class ConversationHeader extends React.Component<Props> {
let title;
if (profileName) {
title = `${profileName} ${window.shortenPubkey(phoneNumber)}`;
title = `${profileName}`;
} else {
if (name) {
title = `${name}`;

@ -1169,6 +1169,7 @@ export class Message extends React.PureComponent<Props, State> {
conversationType,
direction,
i18n,
isPublic,
} = this.props;
const title = authorName ? authorName : authorPhoneNumber;
@ -1192,6 +1193,7 @@ export class Message extends React.PureComponent<Props, State> {
module="module-message__author"
i18n={i18n}
boldProfileName={true}
shouldShowPubkey={Boolean(isPublic)}
/>
</div>
);

@ -107,6 +107,7 @@ export class MessageDetail extends React.Component<Props> {
name={contact.name}
profileName={contact.profileName}
i18n={i18n}
shouldShowPubkey={true}
/>
</div>
{errors.map((error, index) => (

@ -302,6 +302,7 @@ export class Quote extends React.Component<Props, State> {
i18n,
isFromMe,
isIncoming,
isPublic,
} = this.props;
return (
@ -320,6 +321,7 @@ export class Quote extends React.Component<Props, State> {
profileName={authorProfileName}
i18n={i18n}
compact={true}
shouldShowPubkey={Boolean(isPublic)}
/>
)}
</div>

@ -42,6 +42,7 @@ export class SafetyNumberNotification extends React.Component<Props> {
profileName={contact.profileName}
phoneNumber={contact.phoneNumber}
module="module-verification-notification__contact"
shouldShowPubkey={true}
/>
</span>,
]}

@ -51,6 +51,7 @@ export class TimerNotification extends React.Component<Props> {
name={name}
module="module-message__author"
boldProfileName={true}
shouldShowPubkey={false}
/>,
timespan,
]}

@ -53,6 +53,7 @@ export class VerificationNotification extends React.Component<Props> {
profileName={contact.profileName}
phoneNumber={contact.phoneNumber}
module="module-verification-notification__contact"
shouldShowPubkey={true}
/>,
]}
i18n={i18n}

@ -49,8 +49,6 @@ export class SessionMemberListItem extends React.Component<Props, State> {
const { isSelected } = this.state;
const name = this.props.member.authorProfileName;
const pubkey = this.props.member.authorPhoneNumber;
const shortPubkey = window.shortenPubkey(pubkey);
return (
<div
@ -67,7 +65,6 @@ export class SessionMemberListItem extends React.Component<Props, State> {
{this.renderAvatar()}
</span>
<span className="session-member-item__name">{name}</span>
<span className="session-member-item__pubkey">{shortPubkey}</span>
</div>
<span
className={classNames(

Loading…
Cancel
Save