You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
390 lines
10 KiB
TypeScript
390 lines
10 KiB
TypeScript
import React from 'react';
|
|
|
|
import { Avatar, AvatarSize } from '../Avatar';
|
|
|
|
import { SessionIconButton, SessionIconSize, SessionIconType } from '../session/icon';
|
|
|
|
import { SessionButton, SessionButtonColor, SessionButtonType } from '../session/SessionButton';
|
|
import { ConversationAvatar } from '../session/usingClosedConversationDetails';
|
|
import { MemoConversationHeaderMenu } from '../session/menu/ConversationHeaderMenu';
|
|
import { contextMenu, theme } from 'react-contexify';
|
|
import styled, { ThemeProvider, useTheme } from 'styled-components';
|
|
import { ConversationNotificationSettingType } from '../../models/conversation';
|
|
import {
|
|
getConversationHeaderProps,
|
|
getConversationHeaderTitleProps,
|
|
getCurrentNotificationSettingText,
|
|
getSelectedConversation,
|
|
getSelectedMessageIds,
|
|
isMessageDetailView,
|
|
isMessageSelectionMode,
|
|
} from '../../state/selectors/conversations';
|
|
import { useDispatch, useSelector } from 'react-redux';
|
|
import { useMembersAvatars } from '../../hooks/useMembersAvatar';
|
|
|
|
import { deleteMessagesById } from '../../interactions/conversationInteractions';
|
|
import {
|
|
closeMessageDetailsView,
|
|
NotificationForConvoOption,
|
|
openRightPanel,
|
|
resetSelectedMessageIds,
|
|
} from '../../state/ducks/conversations';
|
|
import { getTheme } from '../../state/selectors/theme';
|
|
|
|
export interface TimerOption {
|
|
name: string;
|
|
value: number;
|
|
}
|
|
|
|
export type ConversationHeaderProps = {
|
|
id: string;
|
|
name?: string;
|
|
|
|
phoneNumber: string;
|
|
profileName?: string;
|
|
avatarPath?: string;
|
|
|
|
isMe: boolean;
|
|
isGroup: boolean;
|
|
isPrivate: boolean;
|
|
isPublic: boolean;
|
|
weAreAdmin: boolean;
|
|
|
|
// We might not always have the full list of members,
|
|
// e.g. for open groups where we could have thousands
|
|
// of members. We'll keep this for now (for closed chats)
|
|
members: Array<any>;
|
|
|
|
// not equal members.length (see above)
|
|
subscriberCount?: number;
|
|
|
|
expirationSettingName?: string;
|
|
notificationForConvo: Array<NotificationForConvoOption>;
|
|
currentNotificationSetting: ConversationNotificationSettingType;
|
|
hasNickname: boolean;
|
|
|
|
isBlocked: boolean;
|
|
|
|
isKickedFromGroup: boolean;
|
|
left: boolean;
|
|
};
|
|
|
|
const SelectionOverlay = (props: {
|
|
onDeleteSelectedMessages: () => void;
|
|
onCloseOverlay: () => void;
|
|
isPublic: boolean;
|
|
}) => {
|
|
const { onDeleteSelectedMessages, onCloseOverlay, isPublic } = props;
|
|
const { i18n } = window;
|
|
|
|
const isServerDeletable = isPublic;
|
|
const deleteMessageButtonText = i18n(isServerDeletable ? 'deleteForEveryone' : 'delete');
|
|
|
|
return (
|
|
<div className="message-selection-overlay">
|
|
<div className="close-button">
|
|
<SessionIconButton
|
|
iconType={SessionIconType.Exit}
|
|
iconSize={SessionIconSize.Medium}
|
|
onClick={onCloseOverlay}
|
|
/>
|
|
</div>
|
|
|
|
<div className="button-group">
|
|
<SessionButton
|
|
buttonType={SessionButtonType.Default}
|
|
buttonColor={SessionButtonColor.Danger}
|
|
text={deleteMessageButtonText}
|
|
onClick={onDeleteSelectedMessages}
|
|
/>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const TripleDotsMenu = (props: { triggerId: string; showBackButton: boolean }) => {
|
|
const { showBackButton } = props;
|
|
if (showBackButton) {
|
|
return <></>;
|
|
}
|
|
return (
|
|
<div
|
|
role="button"
|
|
onClick={(e: any) => {
|
|
contextMenu.show({
|
|
id: props.triggerId,
|
|
event: e,
|
|
});
|
|
}}
|
|
>
|
|
<SessionIconButton iconType={SessionIconType.Ellipses} iconSize={SessionIconSize.Medium} />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const ExpirationLength = (props: { expirationSettingName?: string }) => {
|
|
const { expirationSettingName } = props;
|
|
|
|
if (!expirationSettingName) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<div className="module-conversation-header__expiration">
|
|
<div className="module-conversation-header__expiration__clock-icon" />
|
|
<div className="module-conversation-header__expiration__setting">{expirationSettingName}</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
const AvatarHeader = (props: {
|
|
avatarPath?: string;
|
|
memberAvatars?: Array<ConversationAvatar>;
|
|
name?: string;
|
|
phoneNumber: string;
|
|
profileName?: string;
|
|
showBackButton: boolean;
|
|
onAvatarClick?: (pubkey: string) => void;
|
|
}) => {
|
|
const { avatarPath, memberAvatars, name, phoneNumber, profileName } = props;
|
|
const userName = name || profileName || phoneNumber;
|
|
|
|
return (
|
|
<span className="module-conversation-header__avatar">
|
|
<Avatar
|
|
avatarPath={avatarPath}
|
|
name={userName}
|
|
size={AvatarSize.S}
|
|
onAvatarClick={() => {
|
|
// do not allow right panel to appear if another button is shown on the SessionConversation
|
|
if (props.onAvatarClick && !props.showBackButton) {
|
|
props.onAvatarClick(phoneNumber);
|
|
}
|
|
}}
|
|
memberAvatars={memberAvatars}
|
|
pubkey={phoneNumber}
|
|
/>
|
|
</span>
|
|
);
|
|
};
|
|
|
|
const BackButton = (props: { onGoBack: () => void; showBackButton: boolean }) => {
|
|
const { onGoBack, showBackButton } = props;
|
|
if (!showBackButton) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<SessionIconButton
|
|
iconType={SessionIconType.Chevron}
|
|
iconSize={SessionIconSize.Large}
|
|
iconRotation={90}
|
|
onClick={onGoBack}
|
|
/>
|
|
);
|
|
};
|
|
|
|
interface StyledSubtitleContainerProps {
|
|
margin?: string;
|
|
}
|
|
export const StyledSubtitleContainer = styled.div`
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
span {
|
|
margin-bottom: ${(p: StyledSubtitleContainerProps) => {
|
|
return p.margin || '5px';
|
|
}};
|
|
}
|
|
|
|
span:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
`;
|
|
|
|
export type ConversationHeaderTitleProps = {
|
|
phoneNumber: string;
|
|
profileName?: string;
|
|
isMe: boolean;
|
|
isGroup: boolean;
|
|
isPublic: boolean;
|
|
members: Array<any>;
|
|
subscriberCount?: number;
|
|
isKickedFromGroup: boolean;
|
|
name?: string;
|
|
currentNotificationSetting?: ConversationNotificationSettingType;
|
|
};
|
|
|
|
const ConversationHeaderTitle = () => {
|
|
const headerTitleProps = useSelector(getConversationHeaderTitleProps);
|
|
if (!headerTitleProps) {
|
|
return null;
|
|
}
|
|
|
|
const {
|
|
phoneNumber,
|
|
profileName,
|
|
isGroup,
|
|
isPublic,
|
|
members,
|
|
subscriberCount,
|
|
isMe,
|
|
isKickedFromGroup,
|
|
name,
|
|
} = headerTitleProps;
|
|
|
|
const { i18n } = window;
|
|
|
|
if (isMe) {
|
|
return <div className="module-conversation-header__title">{i18n('noteToSelf')}</div>;
|
|
}
|
|
|
|
const memberCount: number = (() => {
|
|
if (!isGroup) {
|
|
return 0;
|
|
}
|
|
|
|
if (isPublic) {
|
|
return subscriberCount || 0;
|
|
} else {
|
|
return members.length;
|
|
}
|
|
})();
|
|
|
|
let memberCountText = '';
|
|
if (isGroup && memberCount > 0) {
|
|
const count = String(memberCount);
|
|
memberCountText = i18n('members', [count]);
|
|
}
|
|
|
|
const notificationSetting = useSelector(getCurrentNotificationSettingText);
|
|
const notificationSubtitle = notificationSetting
|
|
? window.i18n('notificationSubtitle', notificationSetting)
|
|
: null;
|
|
const title = profileName || name || phoneNumber;
|
|
const marginXS = useTheme().common.margins.xs;
|
|
|
|
return (
|
|
<div className="module-conversation-header__title">
|
|
<span className="module-contact-name__profile-name">{title}</span>
|
|
<StyledSubtitleContainer margin={marginXS}>
|
|
{isKickedFromGroup ? null : <ConversationHeaderSubtitle text={memberCountText} />}
|
|
<ConversationHeaderSubtitle text={notificationSubtitle} />
|
|
</StyledSubtitleContainer>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
/**
|
|
* The subtitle beneath a conversation title when looking at a conversation screen.
|
|
* @param props props for subtitle. Text to be displayed
|
|
* @returns JSX Element of the subtitle of conversation header
|
|
*/
|
|
export const ConversationHeaderSubtitle = (props: { text?: string | null }): JSX.Element | null => {
|
|
const { text } = props;
|
|
if (!text) {
|
|
return null;
|
|
}
|
|
return <span className="module-conversation-header__title-text">{text}</span>;
|
|
};
|
|
|
|
export const ConversationHeaderWithDetails = () => {
|
|
const headerProps = useSelector(getConversationHeaderProps);
|
|
|
|
const isSelectionMode = useSelector(isMessageSelectionMode);
|
|
const selectedMessageIds = useSelector(getSelectedMessageIds);
|
|
const selectedConversation = useSelector(getSelectedConversation);
|
|
const memberDetails = useMembersAvatars(selectedConversation);
|
|
const isMessageDetailOpened = useSelector(isMessageDetailView);
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
if (!headerProps) {
|
|
return null;
|
|
}
|
|
const {
|
|
isKickedFromGroup,
|
|
expirationSettingName,
|
|
phoneNumber,
|
|
avatarPath,
|
|
name,
|
|
profileName,
|
|
id,
|
|
isMe,
|
|
isPublic,
|
|
notificationForConvo,
|
|
currentNotificationSetting,
|
|
hasNickname,
|
|
weAreAdmin,
|
|
isBlocked,
|
|
left,
|
|
isPrivate,
|
|
isGroup,
|
|
} = headerProps;
|
|
|
|
const triggerId = 'conversation-header';
|
|
|
|
return (
|
|
<div className="module-conversation-header">
|
|
<div className="conversation-header--items-wrapper">
|
|
<BackButton
|
|
onGoBack={() => {
|
|
dispatch(closeMessageDetailsView());
|
|
}}
|
|
showBackButton={isMessageDetailOpened}
|
|
/>
|
|
|
|
<div className="module-conversation-header__title-container">
|
|
<div className="module-conversation-header__title-flex">
|
|
<TripleDotsMenu triggerId={triggerId} showBackButton={isMessageDetailOpened} />
|
|
<ConversationHeaderTitle />
|
|
</div>
|
|
</div>
|
|
{!isKickedFromGroup && <ExpirationLength expirationSettingName={expirationSettingName} />}
|
|
|
|
{!isSelectionMode && (
|
|
<AvatarHeader
|
|
onAvatarClick={() => {
|
|
dispatch(openRightPanel());
|
|
}}
|
|
phoneNumber={phoneNumber}
|
|
showBackButton={isMessageDetailOpened}
|
|
avatarPath={avatarPath}
|
|
memberAvatars={memberDetails}
|
|
name={name}
|
|
profileName={profileName}
|
|
/>
|
|
)}
|
|
|
|
<MemoConversationHeaderMenu
|
|
conversationId={id}
|
|
triggerId={triggerId}
|
|
isMe={isMe}
|
|
isPublic={isPublic}
|
|
isGroup={isGroup}
|
|
isKickedFromGroup={isKickedFromGroup}
|
|
weAreAdmin={weAreAdmin}
|
|
isBlocked={isBlocked}
|
|
isPrivate={isPrivate}
|
|
left={left}
|
|
hasNickname={hasNickname}
|
|
notificationForConvo={notificationForConvo}
|
|
currentNotificationSetting={currentNotificationSetting}
|
|
/>
|
|
</div>
|
|
|
|
{isSelectionMode && (
|
|
<SelectionOverlay
|
|
isPublic={isPublic}
|
|
onCloseOverlay={() => dispatch(resetSelectedMessageIds())}
|
|
onDeleteSelectedMessages={() => {
|
|
void deleteMessagesById(selectedMessageIds, id, true);
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
);
|
|
};
|