diff --git a/ts/components/conversation/ConversationHeader.tsx b/ts/components/conversation/ConversationHeader.tsx index f59e4e90e..20e47b40f 100644 --- a/ts/components/conversation/ConversationHeader.tsx +++ b/ts/components/conversation/ConversationHeader.tsx @@ -1,13 +1,11 @@ -import React, { useEffect, useState } from 'react'; +import React from 'react'; import { Avatar, AvatarSize } from '../avatar/Avatar'; import { contextMenu } from 'react-contexify'; -import styled, { CSSProperties } from 'styled-components'; +import styled from 'styled-components'; import { ConversationNotificationSettingType } from '../../models/conversationAttributes'; import { - getConversationHeaderTitleProps, - getCurrentNotificationSettingText, getIsSelectedActive, getIsSelectedBlocked, getIsSelectedNoteToSelf, @@ -17,7 +15,6 @@ import { getSelectedMessageIds, isMessageDetailView, isMessageSelectionMode, - isRightPanelShowing, } from '../../state/selectors/conversations'; import { useDispatch, useSelector } from 'react-redux'; @@ -27,13 +24,12 @@ import { } from '../../interactions/conversations/unsendingInteractions'; import { closeMessageDetailsView, - closeRightPanel, openRightPanel, resetSelectedMessageIds, } from '../../state/ducks/conversations'; import { callRecipient } from '../../interactions/conversationInteractions'; import { getHasIncomingCall, getHasOngoingCall } from '../../state/selectors/call'; -import { useConversationUsername, useIsRequest } from '../../hooks/useParamSelector'; +import { useIsRequest } from '../../hooks/useParamSelector'; import { SessionButton, SessionButtonColor, @@ -43,11 +39,7 @@ import { import { SessionIconButton } from '../icon'; import { ConversationHeaderMenu } from '../menu/ConversationHeaderMenu'; import { Flex } from '../basic/Flex'; -import { - DisappearingMessageConversationType, - ExpirationTimerOptions, -} from '../../util/expiringMessages'; -import { setRightOverlayMode } from '../../state/ducks/section'; +import { ConversationHeaderTitle } from './ConversationHeaderTitle'; export interface TimerOption { name: string; @@ -239,247 +231,6 @@ const CallButton = () => { ); }; -export const StyledSubtitleContainer = styled.div` - display: flex; - flex-direction: column; - align-items: center; - justify-content: center; - margin: 0 auto; - min-width: 230px; - - div:first-child { - span:last-child { - margin-bottom: 0; - } - } -`; - -const StyledSubtitleDot = styled.span<{ active: boolean }>` - border-radius: 50%; - background-color: ${props => - props.active ? 'var(--text-primary-color)' : 'var(--text-secondary-color)'}; - - height: 5px; - width: 5px; - margin: 0 2px; -`; - -const SubtitleDotMenu = ({ - options, - selectedOptionIndex, - style, -}: { - options: Array; - selectedOptionIndex: number; - style: CSSProperties; -}) => ( - - {options.map((option, index) => { - if (!option) { - return null; - } - - return ( - - ); - })} - -); - -export type ConversationHeaderTitleProps = { - conversationKey: string; - isMe: boolean; - isGroup: boolean; - isPublic: boolean; - members: Array; - subscriberCount?: number; - isKickedFromGroup: boolean; - currentNotificationSetting?: ConversationNotificationSettingType; - expirationType?: DisappearingMessageConversationType; - expireTimer?: number; -}; - -const ConversationHeaderTitle = () => { - const headerTitleProps = useSelector(getConversationHeaderTitleProps); - const notificationSetting = useSelector(getCurrentNotificationSettingText); - const isRightPanelOn = useSelector(isRightPanelShowing); - - const convoName = useConversationUsername(headerTitleProps?.conversationKey); - const dispatch = useDispatch(); - - const [visibleTitleIndex, setVisibleTitleIndex] = useState(0); - - if (!headerTitleProps) { - return null; - } - - const { - isGroup, - isPublic, - members, - subscriberCount, - isMe, - isKickedFromGroup, - expirationType, - expireTimer, - } = headerTitleProps; - - const { i18n } = window; - - const subtitles: Array = []; - const notificationSubtitle = notificationSetting - ? i18n('notificationSubtitle', [notificationSetting]) - : null; - - let memberCount = 0; - if (isGroup) { - if (isPublic) { - memberCount = subscriberCount || 0; - } else { - memberCount = members.length; - } - } - if (notificationSubtitle) { - subtitles.push(notificationSubtitle); - } - - let memberCountSubtitle = null; - if (isGroup && memberCount > 0 && !isKickedFromGroup) { - const count = String(memberCount); - memberCountSubtitle = isPublic ? i18n('activeMembers', [count]) : i18n('members', [count]); - } - if (memberCountSubtitle) { - subtitles.push(memberCountSubtitle); - } - - const disappearingMessageSettingText = - expirationType === 'off' - ? null - : expirationType === 'deleteAfterRead' - ? window.i18n('disappearingMessagesModeAfterRead') - : window.i18n('disappearingMessagesModeAfterSend'); - const abbreviatedExpireTime = Boolean(expireTimer) - ? ExpirationTimerOptions.getAbbreviated(expireTimer) - : null; - const disappearingMessageSubtitle = disappearingMessageSettingText - ? `${disappearingMessageSettingText}${ - abbreviatedExpireTime ? ` - ${abbreviatedExpireTime}` : '' - }` - : null; - if (disappearingMessageSubtitle) { - subtitles.push(disappearingMessageSubtitle); - } - - window.log.info(`WIP: subtitles`, subtitles, visibleTitleIndex); - - const handleTitleCycle = (direction: 1 | -1) => { - let newIndex = visibleTitleIndex + direction; - if (newIndex > subtitles.length - 1) { - newIndex = 0; - } - - if (newIndex < 0) { - newIndex = subtitles.length - 1; - } - - if (subtitles[newIndex]) { - setVisibleTitleIndex(newIndex); - } - }; - - useEffect(() => { - setVisibleTitleIndex(0); - }, [convoName]); - - if (isMe) { - // TODO customise for new disappearing message system - return
{i18n('noteToSelf')}
; - } - - return ( -
{ - if (isRightPanelOn) { - dispatch(closeRightPanel()); - } else { - if (visibleTitleIndex === 2) { - dispatch(setRightOverlayMode('disappearing-messages')); - } else { - dispatch(setRightOverlayMode('panel-settings')); - } - dispatch(openRightPanel()); - } - }} - role="button" - > - 1 ? '-5px' : undefined, - }} - > - {convoName} - - {subtitles && subtitles[visibleTitleIndex] && ( - - - { - handleTitleCycle(-1); - }} - isHidden={subtitles.length < 2} - /> - {visibleTitleIndex === 2 && expirationType !== 'off' && ( - - )} - - {subtitles[visibleTitleIndex]} - - { - handleTitleCycle(1); - }} - isHidden={subtitles.length < 2} - /> - - - - )} -
- ); -}; - export const ConversationHeaderWithDetails = () => { const isSelectionMode = useSelector(isMessageSelectionMode); const isMessageDetailOpened = useSelector(isMessageDetailView); @@ -502,12 +253,7 @@ export const ConversationHeaderWithDetails = () => { showBackButton={isMessageDetailOpened} /> - -
-
- -
-
+ {!isSelectionMode && ( ` + border-radius: 50%; + background-color: ${props => + props.active ? 'var(--text-primary-color)' : 'var(--text-secondary-color)'}; + + height: 5px; + width: 5px; + margin: 0 2px; +`; + +const SubtitleDotMenu = ({ + options, + selectedOptionIndex, + style, +}: { + options: Array; + selectedOptionIndex: number; + style: CSSProperties; +}) => ( + + {options.map((option, index) => { + if (!option) { + return null; + } + + return ( + + ); + })} + +); + +export type ConversationHeaderTitleProps = { + conversationKey: string; + isMe: boolean; + isGroup: boolean; + isPublic: boolean; + members: Array; + subscriberCount?: number; + isKickedFromGroup: boolean; + currentNotificationSetting?: ConversationNotificationSettingType; + expirationType?: DisappearingMessageConversationType; + expireTimer?: number; +}; + +export const ConversationHeaderTitle = () => { + const headerTitleProps = useSelector(getConversationHeaderTitleProps); + const notificationSetting = useSelector(getCurrentNotificationSettingText); + const isRightPanelOn = useSelector(isRightPanelShowing); + + const convoName = useConversationUsername(headerTitleProps?.conversationKey); + const dispatch = useDispatch(); + + const [visibleTitleIndex, setVisibleTitleIndex] = useState(0); + + if (!headerTitleProps) { + return null; + } + + const { + isGroup, + isPublic, + members, + subscriberCount, + isMe, + isKickedFromGroup, + expirationType, + expireTimer, + } = headerTitleProps; + + const { i18n } = window; + + const subtitles: Array = []; + const notificationSubtitle = notificationSetting + ? i18n('notificationSubtitle', [notificationSetting]) + : null; + + let memberCount = 0; + if (isGroup) { + if (isPublic) { + memberCount = subscriberCount || 0; + } else { + memberCount = members.length; + } + } + if (notificationSubtitle) { + subtitles.push(notificationSubtitle); + } + + let memberCountSubtitle = null; + if (isGroup && memberCount > 0 && !isKickedFromGroup) { + const count = String(memberCount); + memberCountSubtitle = isPublic ? i18n('activeMembers', [count]) : i18n('members', [count]); + } + if (memberCountSubtitle) { + subtitles.push(memberCountSubtitle); + } + + const disappearingMessageSettingText = + expirationType === 'off' + ? null + : expirationType === 'deleteAfterRead' + ? window.i18n('disappearingMessagesModeAfterRead') + : window.i18n('disappearingMessagesModeAfterSend'); + const abbreviatedExpireTime = Boolean(expireTimer) + ? ExpirationTimerOptions.getAbbreviated(expireTimer) + : null; + const disappearingMessageSubtitle = disappearingMessageSettingText + ? `${disappearingMessageSettingText}${ + abbreviatedExpireTime ? ` - ${abbreviatedExpireTime}` : '' + }` + : null; + if (disappearingMessageSubtitle) { + subtitles.push(disappearingMessageSubtitle); + } + + const handleTitleCycle = (direction: 1 | -1) => { + let newIndex = visibleTitleIndex + direction; + if (newIndex > subtitles.length - 1) { + newIndex = 0; + } + + if (newIndex < 0) { + newIndex = subtitles.length - 1; + } + + if (subtitles[newIndex]) { + setVisibleTitleIndex(newIndex); + } + }; + + useEffect(() => { + setVisibleTitleIndex(0); + }, [convoName]); + + if (isMe) { + // TODO customise for new disappearing message system + return
{i18n('noteToSelf')}
; + } + + return ( +
+
+
{ + if (isRightPanelOn) { + dispatch(closeRightPanel()); + } else { + if (visibleTitleIndex === 2) { + dispatch(setRightOverlayMode('disappearing-messages')); + } else { + dispatch(setRightOverlayMode('panel-settings')); + } + dispatch(openRightPanel()); + } + }} + role="button" + > + 1 + ? '-5px' + : undefined, + }} + > + {convoName} + + {subtitles && subtitles[visibleTitleIndex] && ( + + + { + handleTitleCycle(-1); + }} + isHidden={subtitles.length < 2} + /> + {visibleTitleIndex === 2 && expirationType !== 'off' && ( + + )} + + {subtitles[visibleTitleIndex]} + + { + handleTitleCycle(1); + }} + isHidden={subtitles.length < 2} + /> + + + + )} +
+
+
+ ); +};