signal-desktop/ts/components/conversation/ConversationHeader.tsx

664 lines
18 KiB
TypeScript
Raw Normal View History

2021-03-01 20:08:37 +00:00
// Copyright 2018-2021 Signal Messenger, LLC
2020-10-30 20:34:04 +00:00
// SPDX-License-Identifier: AGPL-3.0-only
2021-03-01 20:08:37 +00:00
import React, { ReactNode } from 'react';
import Measure from 'react-measure';
2019-07-31 16:16:29 +00:00
import classNames from 'classnames';
import {
ContextMenu,
ContextMenuTrigger,
MenuItem,
SubMenu,
} from 'react-contextmenu';
2020-07-24 01:35:32 +00:00
import { Emojify } from './Emojify';
import { DisappearingTimeDialog } from '../DisappearingTimeDialog';
2020-12-12 00:45:14 +00:00
import { Avatar, AvatarSize } from '../Avatar';
2020-07-24 01:35:32 +00:00
import { InContactsIcon } from '../InContactsIcon';
import { LocalizerType } from '../../types/Util';
import { ConversationType } from '../../state/ducks/conversations';
2021-08-05 12:35:33 +00:00
import { getMuteOptions } from '../../util/getMuteOptions';
import * as expirationTimer from '../../util/expirationTimer';
import { missingCaseError } from '../../util/missingCaseError';
import { isInSystemContacts } from '../../util/isInSystemContacts';
export enum OutgoingCallButtonStyle {
None,
JustVideo,
Both,
2020-11-20 17:19:28 +00:00
Join,
}
export type PropsDataType = {
conversationTitle?: string;
2020-10-30 17:52:21 +00:00
isMissingMandatoryProfileSharing?: boolean;
outgoingCallButtonStyle: OutgoingCallButtonStyle;
showBackButton?: boolean;
isSMSOnly?: boolean;
} & Pick<
ConversationType,
| 'acceptedMessageRequest'
2021-07-20 20:18:35 +00:00
| 'announcementsOnly'
| 'areWeAdmin'
| 'avatarPath'
| 'canChangeTimer'
| 'color'
| 'expireTimer'
| 'groupVersion'
| 'id'
| 'isArchived'
| 'isMe'
| 'isPinned'
| 'isVerified'
| 'left'
| 'markedUnread'
| 'muteExpiresAt'
| 'name'
| 'phoneNumber'
| 'profileName'
| 'sharedGroupNames'
| 'title'
| 'type'
| 'unblurredAvatarPath'
>;
export type PropsActionsType = {
2020-08-27 19:45:08 +00:00
onSetMuteNotifications: (seconds: number) => void;
onSetDisappearingMessages: (seconds: number) => void;
2021-01-28 00:18:50 +00:00
onShowContactModal: (contactId: string) => void;
onDeleteMessages: () => void;
onResetSession: () => void;
2019-08-09 23:12:29 +00:00
onSearchInConversation: () => void;
2020-06-04 18:16:19 +00:00
onOutgoingAudioCallInConversation: () => void;
onOutgoingVideoCallInConversation: () => void;
2020-10-02 18:30:43 +00:00
onSetPin: (value: boolean) => void;
2021-05-28 16:15:17 +00:00
onShowChatColorEditor: () => void;
onShowConversationDetails: () => void;
onShowSafetyNumber: () => void;
onShowAllMedia: () => void;
onShowGroupMembers: () => void;
onGoBack: () => void;
2019-03-12 00:20:16 +00:00
onArchive: () => void;
onMarkUnread: () => void;
2019-03-12 00:20:16 +00:00
onMoveToInbox: () => void;
};
2019-03-12 00:20:16 +00:00
export type PropsHousekeepingType = {
2019-03-12 00:20:16 +00:00
i18n: LocalizerType;
};
2020-07-24 01:35:32 +00:00
export type PropsType = PropsDataType &
PropsActionsType &
PropsHousekeepingType;
2021-06-01 20:45:43 +00:00
enum ModalState {
NothingOpen,
CustomDisappearingTimeout,
}
2021-03-01 20:08:37 +00:00
type StateType = {
isNarrow: boolean;
2021-06-01 20:45:43 +00:00
modalState: ModalState;
2021-03-01 20:08:37 +00:00
};
2021-06-01 20:45:43 +00:00
const TIMER_ITEM_CLASS = 'module-ConversationHeader__disappearing-timer__item';
2021-03-01 20:08:37 +00:00
export class ConversationHeader extends React.Component<PropsType, StateType> {
private showMenuBound: (event: React.MouseEvent<HTMLButtonElement>) => void;
2020-09-14 19:51:27 +00:00
// Comes from a third-party dependency
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2021-03-01 20:08:37 +00:00
private menuTriggerRef: React.RefObject<any>;
2020-07-24 01:35:32 +00:00
public constructor(props: PropsType) {
super(props);
2021-06-01 20:45:43 +00:00
this.state = { isNarrow: false, modalState: ModalState.NothingOpen };
2021-03-01 20:08:37 +00:00
2019-01-14 21:49:58 +00:00
this.menuTriggerRef = React.createRef();
this.showMenuBound = this.showMenu.bind(this);
}
2021-03-01 20:08:37 +00:00
private showMenu(event: React.MouseEvent<HTMLButtonElement>): void {
2019-01-14 21:49:58 +00:00
if (this.menuTriggerRef.current) {
this.menuTriggerRef.current.handleContextClick(event);
}
}
2021-03-01 20:08:37 +00:00
private renderBackButton(): ReactNode {
2020-09-14 19:51:27 +00:00
const { i18n, onGoBack, showBackButton } = this.props;
return (
<button
2020-09-14 19:51:27 +00:00
type="button"
onClick={onGoBack}
2019-07-31 16:16:29 +00:00
className={classNames(
2021-03-01 20:08:37 +00:00
'module-ConversationHeader__back-icon',
showBackButton ? 'module-ConversationHeader__back-icon--show' : null
)}
disabled={!showBackButton}
2020-09-14 19:51:27 +00:00
aria-label={i18n('goBack')}
/>
);
}
2021-03-01 20:08:37 +00:00
private renderHeaderInfoTitle(): ReactNode {
const { name, title, type, i18n, isMe } = this.props;
2019-01-31 01:45:58 +00:00
if (isMe) {
return (
2021-03-01 20:08:37 +00:00
<div className="module-ConversationHeader__header__info__title">
2019-01-31 01:45:58 +00:00
{i18n('noteToSelf')}
</div>
);
}
return (
2021-03-01 20:08:37 +00:00
<div className="module-ConversationHeader__header__info__title">
2020-07-24 01:35:32 +00:00
<Emojify text={title} />
{isInSystemContacts({ name, type }) ? (
2021-03-01 20:08:37 +00:00
<InContactsIcon
className="module-ConversationHeader__header__info__title__in-contacts-icon"
i18n={i18n}
/>
) : null}
</div>
);
}
2021-03-01 20:08:37 +00:00
private renderHeaderInfoSubtitle(): ReactNode {
const expirationNode = this.renderExpirationLength();
const verifiedNode = this.renderVerifiedIcon();
if (expirationNode || verifiedNode) {
return (
<div className="module-ConversationHeader__header__info__subtitle">
{expirationNode}
{verifiedNode}
</div>
);
}
return null;
}
private renderAvatar(): ReactNode {
const {
acceptedMessageRequest,
avatarPath,
color,
i18n,
2020-07-24 01:35:32 +00:00
type,
2019-01-31 01:45:58 +00:00
isMe,
name,
phoneNumber,
profileName,
sharedGroupNames,
2020-07-24 01:35:32 +00:00
title,
unblurredAvatarPath,
} = this.props;
return (
2021-03-01 20:08:37 +00:00
<span className="module-ConversationHeader__header__avatar">
<Avatar
acceptedMessageRequest={acceptedMessageRequest}
avatarPath={avatarPath}
color={color}
2020-07-24 01:35:32 +00:00
conversationType={type}
i18n={i18n}
isMe={isMe}
2019-01-31 01:45:58 +00:00
noteToSelf={isMe}
2020-07-24 01:35:32 +00:00
title={title}
name={name}
phoneNumber={phoneNumber}
profileName={profileName}
sharedGroupNames={sharedGroupNames}
2020-12-12 00:45:14 +00:00
size={AvatarSize.THIRTY_TWO}
unblurredAvatarPath={unblurredAvatarPath}
/>
</span>
);
}
2021-03-01 20:08:37 +00:00
private renderExpirationLength(): ReactNode {
const { i18n, expireTimer } = this.props;
if (!expireTimer) {
return null;
}
return (
2021-03-01 20:08:37 +00:00
<div className="module-ConversationHeader__header__info__subtitle__expiration">
{expirationTimer.format(i18n, expireTimer)}
</div>
);
}
2021-03-01 20:08:37 +00:00
private renderVerifiedIcon(): ReactNode {
const { i18n, isVerified } = this.props;
if (!isVerified) {
return null;
}
return (
<div className="module-ConversationHeader__header__info__subtitle__verified">
{i18n('verified')}
</div>
);
}
private renderMoreButton(triggerId: string): ReactNode {
2020-09-14 19:51:27 +00:00
const { i18n, showBackButton } = this.props;
return (
2019-01-14 21:49:58 +00:00
<ContextMenuTrigger id={triggerId} ref={this.menuTriggerRef}>
<button
2020-09-14 19:51:27 +00:00
type="button"
onClick={this.showMenuBound}
2019-07-31 16:16:29 +00:00
className={classNames(
'module-ConversationHeader__button',
'module-ConversationHeader__button--more',
showBackButton ? null : 'module-ConversationHeader__button--show'
)}
disabled={showBackButton}
2020-09-14 19:51:27 +00:00
aria-label={i18n('moreInfo')}
/>
</ContextMenuTrigger>
);
}
2021-03-01 20:08:37 +00:00
private renderSearchButton(): ReactNode {
2020-09-14 19:51:27 +00:00
const { i18n, onSearchInConversation, showBackButton } = this.props;
2019-08-09 23:12:29 +00:00
return (
<button
2020-09-14 19:51:27 +00:00
type="button"
2019-08-09 23:12:29 +00:00
onClick={onSearchInConversation}
className={classNames(
'module-ConversationHeader__button',
'module-ConversationHeader__button--search',
showBackButton ? null : 'module-ConversationHeader__button--show'
2019-08-09 23:12:29 +00:00
)}
disabled={showBackButton}
2020-09-14 19:51:27 +00:00
aria-label={i18n('search')}
2019-08-09 23:12:29 +00:00
/>
);
}
2021-03-01 20:08:37 +00:00
private renderOutgoingCallButtons(): ReactNode {
2020-09-14 19:51:27 +00:00
const {
2021-07-20 20:18:35 +00:00
announcementsOnly,
areWeAdmin,
2020-09-14 19:51:27 +00:00
i18n,
onOutgoingAudioCallInConversation,
2020-10-30 17:52:21 +00:00
onOutgoingVideoCallInConversation,
outgoingCallButtonStyle,
2020-09-14 19:51:27 +00:00
showBackButton,
} = this.props;
2021-03-01 20:08:37 +00:00
const { isNarrow } = this.state;
2020-09-14 19:51:27 +00:00
const videoButton = (
<button
2021-07-20 20:18:35 +00:00
aria-label={i18n('makeOutgoingVideoCall')}
className={classNames(
'module-ConversationHeader__button',
'module-ConversationHeader__button--video',
2021-07-20 20:18:35 +00:00
showBackButton ? null : 'module-ConversationHeader__button--show',
!showBackButton && announcementsOnly && !areWeAdmin
? 'module-ConversationHeader__button--show-disabled'
: undefined
)}
disabled={showBackButton}
2021-07-20 20:18:35 +00:00
onClick={onOutgoingVideoCallInConversation}
type="button"
/>
2020-06-04 18:16:19 +00:00
);
switch (outgoingCallButtonStyle) {
case OutgoingCallButtonStyle.None:
return null;
case OutgoingCallButtonStyle.JustVideo:
return videoButton;
case OutgoingCallButtonStyle.Both:
return (
<>
{videoButton}
<button
type="button"
onClick={onOutgoingAudioCallInConversation}
className={classNames(
'module-ConversationHeader__button',
'module-ConversationHeader__button--audio',
showBackButton
? null
: 'module-ConversationHeader__button--show'
)}
disabled={showBackButton}
aria-label={i18n('makeOutgoingCall')}
/>
</>
);
2020-11-20 17:19:28 +00:00
case OutgoingCallButtonStyle.Join:
return (
<button
2021-03-01 20:08:37 +00:00
aria-label={i18n('joinOngoingCall')}
2020-11-20 17:19:28 +00:00
className={classNames(
'module-ConversationHeader__button',
'module-ConversationHeader__button--join-call',
showBackButton ? null : 'module-ConversationHeader__button--show'
2020-11-20 17:19:28 +00:00
)}
disabled={showBackButton}
2021-07-20 20:18:35 +00:00
onClick={onOutgoingVideoCallInConversation}
type="button"
2020-11-20 17:19:28 +00:00
>
2021-03-01 20:08:37 +00:00
{isNarrow ? null : i18n('joinOngoingCall')}
2020-11-20 17:19:28 +00:00
</button>
);
default:
throw missingCaseError(outgoingCallButtonStyle);
}
2020-06-04 18:16:19 +00:00
}
2021-03-01 20:08:37 +00:00
private renderMenu(triggerId: string): ReactNode {
const {
i18n,
acceptedMessageRequest,
2020-10-30 17:52:21 +00:00
canChangeTimer,
2021-06-01 20:45:43 +00:00
expireTimer,
2020-10-30 17:52:21 +00:00
isArchived,
isMe,
2020-10-02 18:30:43 +00:00
isPinned,
2020-07-24 01:35:32 +00:00
type,
markedUnread,
2020-10-30 17:52:21 +00:00
muteExpiresAt,
isMissingMandatoryProfileSharing,
left,
groupVersion,
onDeleteMessages,
onResetSession,
onSetDisappearingMessages,
2020-08-27 19:45:08 +00:00
onSetMuteNotifications,
onShowAllMedia,
2021-05-28 16:15:17 +00:00
onShowChatColorEditor,
onShowConversationDetails,
onShowGroupMembers,
onShowSafetyNumber,
2019-03-12 00:20:16 +00:00
onArchive,
onMarkUnread,
2020-10-02 18:30:43 +00:00
onSetPin,
2019-03-12 00:20:16 +00:00
onMoveToInbox,
} = this.props;
2021-08-05 12:35:33 +00:00
const muteOptions = getMuteOptions(muteExpiresAt, i18n);
2020-08-27 19:45:08 +00:00
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const disappearingTitle = i18n('disappearingMessages') as any;
2020-09-14 19:51:27 +00:00
// eslint-disable-next-line @typescript-eslint/no-explicit-any
2020-08-27 19:45:08 +00:00
const muteTitle = i18n('muteNotificationsTitle') as any;
2020-07-24 01:35:32 +00:00
const isGroup = type === 'group';
2020-10-30 17:52:21 +00:00
const disableTimerChanges = Boolean(
!canChangeTimer ||
!acceptedMessageRequest ||
left ||
isMissingMandatoryProfileSharing
);
const hasGV2AdminEnabled = isGroup && groupVersion === 2;
2021-06-01 20:45:43 +00:00
const isActiveExpireTimer = (value: number): boolean => {
if (!expireTimer) {
return value === 0;
}
// Custom time...
if (value === -1) {
return !expirationTimer.DEFAULT_DURATIONS_SET.has(expireTimer);
}
return value === expireTimer;
};
const expireDurations: ReadonlyArray<ReactNode> = [
...expirationTimer.DEFAULT_DURATIONS_IN_SECONDS,
-1,
].map((seconds: number) => {
let text: string;
if (seconds === -1) {
text = i18n('customDisappearingTimeOption');
} else {
text = expirationTimer.format(i18n, seconds, {
capitalizeOff: true,
});
}
const onDurationClick = () => {
if (seconds === -1) {
this.setState({
modalState: ModalState.CustomDisappearingTimeout,
});
} else {
onSetDisappearingMessages(seconds);
}
};
return (
<MenuItem key={seconds} onClick={onDurationClick}>
<div
className={classNames(
TIMER_ITEM_CLASS,
isActiveExpireTimer(seconds) && `${TIMER_ITEM_CLASS}--active`
)}
>
{text}
</div>
</MenuItem>
);
});
return (
<ContextMenu id={triggerId}>
2020-09-09 02:25:05 +00:00
{disableTimerChanges ? null : (
2021-07-13 22:27:28 +00:00
<SubMenu hoverDelay={1} title={disappearingTitle}>
{expireDurations}
</SubMenu>
2020-09-09 02:25:05 +00:00
)}
2021-07-13 22:27:28 +00:00
<SubMenu hoverDelay={1} title={muteTitle}>
{muteOptions.map(item => (
<MenuItem
key={item.name}
disabled={item.disabled}
onClick={() => {
onSetMuteNotifications(item.value);
}}
>
{item.name}
</MenuItem>
))}
</SubMenu>
2021-05-28 16:15:17 +00:00
{!isGroup ? (
<MenuItem onClick={onShowChatColorEditor}>
{i18n('showChatColorEditor')}
</MenuItem>
) : null}
{hasGV2AdminEnabled ? (
<MenuItem onClick={onShowConversationDetails}>
{i18n('showConversationDetails')}
</MenuItem>
) : null}
{isGroup && !hasGV2AdminEnabled ? (
<MenuItem onClick={onShowGroupMembers}>
{i18n('showMembers')}
</MenuItem>
) : null}
<MenuItem onClick={onShowAllMedia}>{i18n('viewRecentMedia')}</MenuItem>
{!isGroup && !isMe ? (
<MenuItem onClick={onShowSafetyNumber}>
{i18n('showSafetyNumber')}
</MenuItem>
) : null}
{!isGroup && acceptedMessageRequest ? (
<MenuItem onClick={onResetSession}>{i18n('resetSession')}</MenuItem>
) : null}
<MenuItem divider />
{!markedUnread ? (
<MenuItem onClick={onMarkUnread}>{i18n('markUnread')}</MenuItem>
) : null}
2019-03-12 00:20:16 +00:00
{isArchived ? (
<MenuItem onClick={onMoveToInbox}>
{i18n('moveConversationToInbox')}
</MenuItem>
) : (
<MenuItem onClick={onArchive}>{i18n('archiveConversation')}</MenuItem>
)}
<MenuItem onClick={onDeleteMessages}>{i18n('deleteMessages')}</MenuItem>
{isPinned ? (
<MenuItem onClick={() => onSetPin(false)}>
{i18n('unpinConversation')}
</MenuItem>
) : (
<MenuItem onClick={() => onSetPin(true)}>
{i18n('pinConversation')}
</MenuItem>
)}
</ContextMenu>
);
}
2021-03-01 20:08:37 +00:00
private renderHeader(): ReactNode {
const {
conversationTitle,
groupVersion,
id,
isMe,
onShowContactModal,
onShowConversationDetails,
type,
} = this.props;
if (conversationTitle !== undefined) {
return (
2021-03-01 20:08:37 +00:00
<div className="module-ConversationHeader__header">
<div className="module-ConversationHeader__header__info">
<div className="module-ConversationHeader__header__info__title">
{conversationTitle}
</div>
</div>
</div>
);
}
2021-01-28 00:18:50 +00:00
2021-03-01 20:08:37 +00:00
let onClick: undefined | (() => void);
switch (type) {
case 'direct':
onClick = isMe
? undefined
: () => {
onShowContactModal(id);
};
break;
case 'group': {
const hasGV2AdminEnabled = groupVersion === 2;
2021-03-01 20:08:37 +00:00
onClick = hasGV2AdminEnabled
? () => {
onShowConversationDetails();
}
: undefined;
break;
}
default:
throw missingCaseError(type);
}
2021-03-01 20:08:37 +00:00
const contents = (
<>
{this.renderAvatar()}
<div className="module-ConversationHeader__header__info">
{this.renderHeaderInfoTitle()}
{this.renderHeaderInfoSubtitle()}
</div>
2021-03-01 20:08:37 +00:00
</>
);
2021-03-01 20:08:37 +00:00
if (onClick) {
2021-01-28 00:18:50 +00:00
return (
2021-03-01 20:08:37 +00:00
<button
type="button"
className="module-ConversationHeader__header module-ConversationHeader__header--clickable"
onClick={onClick}
>
{contents}
</button>
2021-01-28 00:18:50 +00:00
);
}
2021-03-01 20:08:37 +00:00
return <div className="module-ConversationHeader__header">{contents}</div>;
2021-01-28 00:18:50 +00:00
}
2021-03-01 20:08:37 +00:00
public render(): ReactNode {
2021-06-01 20:45:43 +00:00
const {
id,
isSMSOnly,
i18n,
onSetDisappearingMessages,
expireTimer,
} = this.props;
const { isNarrow, modalState } = this.state;
2019-01-14 21:49:58 +00:00
const triggerId = `conversation-${id}`;
2021-06-01 20:45:43 +00:00
let modalNode: ReactNode;
if (modalState === ModalState.NothingOpen) {
modalNode = undefined;
} else if (modalState === ModalState.CustomDisappearingTimeout) {
modalNode = (
<DisappearingTimeDialog
i18n={i18n}
initialValue={expireTimer}
onSubmit={value => {
this.setState({ modalState: ModalState.NothingOpen });
onSetDisappearingMessages(value);
}}
onClose={() => this.setState({ modalState: ModalState.NothingOpen })}
/>
);
} else {
throw missingCaseError(modalState);
}
return (
2021-06-01 20:45:43 +00:00
<>
{modalNode}
<Measure
bounds
onResize={({ bounds }) => {
if (!bounds || !bounds.width) {
return;
}
this.setState({ isNarrow: bounds.width < 500 });
}}
>
{({ measureRef }) => (
<div
className={classNames('module-ConversationHeader', {
'module-ConversationHeader--narrow': isNarrow,
})}
ref={measureRef}
>
{this.renderBackButton()}
{this.renderHeader()}
{!isSMSOnly && this.renderOutgoingCallButtons()}
{this.renderSearchButton()}
{this.renderMoreButton(triggerId)}
{this.renderMenu(triggerId)}
</div>
)}
</Measure>
</>
);
}
}