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

371 lines
9.1 KiB
TypeScript
Raw Normal View History

import React from 'react';
2019-07-31 09:16:29 -07:00
import classNames from 'classnames';
import {
ContextMenu,
ContextMenuTrigger,
MenuItem,
SubMenu,
} from 'react-contextmenu';
2020-07-23 18:35:32 -07:00
import { Emojify } from './Emojify';
import { Avatar } from '../Avatar';
import { InContactsIcon } from '../InContactsIcon';
import { LocalizerType } from '../../types/Util';
import { ColorType } from '../../types/Colors';
2020-07-23 18:35:32 -07:00
interface TimerOption {
name: string;
value: number;
}
2020-07-23 18:35:32 -07:00
export interface PropsDataType {
id: string;
2019-03-11 17:20:16 -07:00
name?: string;
2020-07-23 18:35:32 -07:00
phoneNumber?: string;
profileName?: string;
color?: ColorType;
avatarPath?: string;
2020-07-23 18:35:32 -07:00
type: 'direct' | 'group';
title: string;
2019-03-11 17:20:16 -07:00
2020-05-27 17:37:06 -04:00
isAccepted?: boolean;
isVerified?: boolean;
isMe?: boolean;
isArchived?: boolean;
leftGroup?: boolean;
2019-03-11 17:20:16 -07:00
expirationSettingName?: string;
showBackButton?: boolean;
timerOptions?: Array<TimerOption>;
}
2020-07-23 18:35:32 -07:00
export interface PropsActionsType {
onSetDisappearingMessages: (seconds: number) => void;
onDeleteMessages: () => void;
onResetSession: () => void;
2019-08-09 16:12:29 -07:00
onSearchInConversation: () => void;
2020-06-04 11:16:19 -07:00
onOutgoingAudioCallInConversation: () => void;
onOutgoingVideoCallInConversation: () => void;
onShowSafetyNumber: () => void;
onShowAllMedia: () => void;
onShowGroupMembers: () => void;
onGoBack: () => void;
2019-03-11 17:20:16 -07:00
onArchive: () => void;
onMoveToInbox: () => void;
}
2019-03-11 17:20:16 -07:00
2020-07-23 18:35:32 -07:00
export interface PropsHousekeepingType {
2019-03-11 17:20:16 -07:00
i18n: LocalizerType;
}
2020-07-23 18:35:32 -07:00
export type PropsType = PropsDataType &
PropsActionsType &
PropsHousekeepingType;
2020-07-23 18:35:32 -07:00
export class ConversationHeader extends React.Component<PropsType> {
public showMenuBound: (event: React.MouseEvent<HTMLButtonElement>) => void;
2019-01-14 13:49:58 -08:00
public menuTriggerRef: React.RefObject<any>;
2020-07-23 18:35:32 -07:00
public constructor(props: PropsType) {
super(props);
2019-01-14 13:49:58 -08:00
this.menuTriggerRef = React.createRef();
this.showMenuBound = this.showMenu.bind(this);
}
public showMenu(event: React.MouseEvent<HTMLButtonElement>) {
2019-01-14 13:49:58 -08:00
if (this.menuTriggerRef.current) {
this.menuTriggerRef.current.handleContextClick(event);
}
}
public renderBackButton() {
const { onGoBack, showBackButton } = this.props;
return (
<button
onClick={onGoBack}
2019-07-31 09:16:29 -07:00
className={classNames(
'module-conversation-header__back-icon',
showBackButton ? 'module-conversation-header__back-icon--show' : null
)}
disabled={!showBackButton}
/>
);
}
public renderTitle() {
2019-01-30 17:45:58 -08:00
const {
name,
phoneNumber,
2020-07-23 18:35:32 -07:00
title,
type,
2019-01-30 17:45:58 -08:00
i18n,
isMe,
profileName,
isVerified,
} = this.props;
if (isMe) {
return (
<div className="module-conversation-header__title">
{i18n('noteToSelf')}
</div>
);
}
2020-07-23 18:35:32 -07:00
const shouldShowIcon = Boolean(name && type === 'direct');
const shouldShowNumber = Boolean(phoneNumber && (name || profileName));
return (
<div className="module-conversation-header__title">
2020-07-23 18:35:32 -07:00
<Emojify text={title} />
{shouldShowIcon ? (
<span>
{' '}
<InContactsIcon i18n={i18n} />
</span>
) : null}
2020-07-23 18:35:32 -07:00
{shouldShowNumber ? ` · ${phoneNumber}` : null}
{isVerified ? (
<span>
2020-07-23 18:35:32 -07:00
{' · '}
<span className="module-conversation-header__title__verified-icon" />
{i18n('verified')}
</span>
) : null}
</div>
);
}
public renderAvatar() {
const {
avatarPath,
color,
i18n,
2020-07-23 18:35:32 -07:00
type,
2019-01-30 17:45:58 -08:00
isMe,
name,
phoneNumber,
profileName,
2020-07-23 18:35:32 -07:00
title,
} = this.props;
return (
<span className="module-conversation-header__avatar">
<Avatar
avatarPath={avatarPath}
color={color}
2020-07-23 18:35:32 -07:00
conversationType={type}
i18n={i18n}
2019-01-30 17:45:58 -08:00
noteToSelf={isMe}
2020-07-23 18:35:32 -07:00
title={title}
name={name}
phoneNumber={phoneNumber}
profileName={profileName}
size={28}
/>
</span>
);
}
public renderExpirationLength() {
2019-08-09 16:12:29 -07:00
const { expirationSettingName, showBackButton } = this.props;
if (!expirationSettingName) {
return null;
}
return (
2019-08-09 16:12:29 -07:00
<div
className={classNames(
'module-conversation-header__expiration',
showBackButton
? 'module-conversation-header__expiration--hidden'
: null
)}
>
<div className="module-conversation-header__expiration__clock-icon" />
<div className="module-conversation-header__expiration__setting">
{expirationSettingName}
</div>
</div>
);
}
2019-08-09 16:12:29 -07:00
public renderMoreButton(triggerId: string) {
const { showBackButton } = this.props;
return (
2019-01-14 13:49:58 -08:00
<ContextMenuTrigger id={triggerId} ref={this.menuTriggerRef}>
<button
onClick={this.showMenuBound}
2019-07-31 09:16:29 -07:00
className={classNames(
2019-08-09 16:12:29 -07:00
'module-conversation-header__more-button',
showBackButton
? null
2019-08-09 16:12:29 -07:00
: 'module-conversation-header__more-button--show'
)}
disabled={showBackButton}
/>
</ContextMenuTrigger>
);
}
2019-08-09 16:12:29 -07:00
public renderSearchButton() {
const { onSearchInConversation, showBackButton } = this.props;
return (
<button
onClick={onSearchInConversation}
className={classNames(
'module-conversation-header__search-button',
showBackButton
? null
: 'module-conversation-header__search-button--show'
)}
disabled={showBackButton}
/>
);
}
2020-06-04 11:16:19 -07:00
public renderOutgoingAudioCallButton() {
if (!window.CALLING) {
return null;
}
2020-07-23 18:35:32 -07:00
if (this.props.type === 'group' || this.props.isMe) {
2020-06-04 11:16:19 -07:00
return null;
}
const { onOutgoingAudioCallInConversation, showBackButton } = this.props;
return (
<button
onClick={onOutgoingAudioCallInConversation}
className={classNames(
'module-conversation-header__audio-calling-button',
showBackButton
? null
: 'module-conversation-header__audio-calling-button--show'
)}
disabled={showBackButton}
/>
);
}
public renderOutgoingVideoCallButton() {
if (!window.CALLING) {
return null;
}
2020-07-23 18:35:32 -07:00
if (this.props.type === 'group' || this.props.isMe) {
2020-06-04 11:16:19 -07:00
return null;
}
const { onOutgoingVideoCallInConversation, showBackButton } = this.props;
return (
<button
onClick={onOutgoingVideoCallInConversation}
className={classNames(
'module-conversation-header__video-calling-button',
showBackButton
? null
: 'module-conversation-header__video-calling-button--show'
)}
disabled={showBackButton}
/>
);
}
public renderMenu(triggerId: string) {
const {
i18n,
2020-05-27 17:37:06 -04:00
isAccepted,
isMe,
2020-07-23 18:35:32 -07:00
type,
2019-03-11 17:20:16 -07:00
isArchived,
leftGroup,
onDeleteMessages,
onResetSession,
onSetDisappearingMessages,
onShowAllMedia,
onShowGroupMembers,
onShowSafetyNumber,
2019-03-11 17:20:16 -07:00
onArchive,
onMoveToInbox,
timerOptions,
} = this.props;
const disappearingTitle = i18n('disappearingMessages') as any;
2020-07-23 18:35:32 -07:00
const isGroup = type === 'group';
return (
<ContextMenu id={triggerId}>
2020-05-27 17:37:06 -04:00
{!leftGroup && isAccepted ? (
<SubMenu title={disappearingTitle}>
{(timerOptions || []).map(item => (
<MenuItem
key={item.value}
onClick={() => {
onSetDisappearingMessages(item.value);
}}
>
{item.name}
</MenuItem>
))}
</SubMenu>
2020-05-27 17:37:06 -04:00
) : null}
2020-06-09 12:54:09 -07:00
<MenuItem onClick={onShowAllMedia}>{i18n('viewRecentMedia')}</MenuItem>
{isGroup ? (
<MenuItem onClick={onShowGroupMembers}>
{i18n('showMembers')}
</MenuItem>
) : null}
{!isGroup && !isMe ? (
<MenuItem onClick={onShowSafetyNumber}>
{i18n('showSafetyNumber')}
</MenuItem>
) : null}
2020-05-27 17:37:06 -04:00
{!isGroup && isAccepted ? (
<MenuItem onClick={onResetSession}>{i18n('resetSession')}</MenuItem>
) : null}
2019-03-11 17:20:16 -07:00
{isArchived ? (
<MenuItem onClick={onMoveToInbox}>
{i18n('moveConversationToInbox')}
</MenuItem>
) : (
<MenuItem onClick={onArchive}>{i18n('archiveConversation')}</MenuItem>
)}
<MenuItem onClick={onDeleteMessages}>{i18n('deleteMessages')}</MenuItem>
</ContextMenu>
);
}
public render() {
const { id } = this.props;
2019-01-14 13:49:58 -08:00
const triggerId = `conversation-${id}`;
return (
<div className="module-conversation-header">
{this.renderBackButton()}
<div className="module-conversation-header__title-container">
<div className="module-conversation-header__title-flex">
{this.renderAvatar()}
{this.renderTitle()}
</div>
</div>
{this.renderExpirationLength()}
2019-08-09 16:12:29 -07:00
{this.renderSearchButton()}
2020-06-04 11:16:19 -07:00
{this.renderOutgoingVideoCallButton()}
{this.renderOutgoingAudioCallButton()}
2019-08-09 16:12:29 -07:00
{this.renderMoreButton(triggerId)}
2019-01-14 13:49:58 -08:00
{this.renderMenu(triggerId)}
</div>
);
}
}