@ -7,12 +7,13 @@ import { SessionIconButton, SessionIconSize, SessionIconType } from '../session/
import { SessionButton , SessionButtonColor , SessionButtonType } from '../session/SessionButton' ;
import { ConversationAvatar } from '../session/usingClosedConversationDetails' ;
import { MemoConversationHeaderMenu } from '../session/menu/ConversationHeaderMenu' ;
import { contextMenu } from 'react-contexify' ;
import { useTheme } from 'styled-components' ;
import { contextMenu , theme } from 'react-contexify' ;
import styled , { useTheme } from 'styled-components' ;
import { ConversationNotificationSettingType } from '../../models/conversation' ;
import {
getConversationHeaderProps ,
getConversationHeaderTitleProps ,
getCurrentNotificationSettingText ,
getSelectedConversation ,
getSelectedMessageIds ,
isMessageDetailView ,
@ -74,7 +75,6 @@ const SelectionOverlay = (props: {
} ) = > {
const { onDeleteSelectedMessages , onCloseOverlay , isPublic } = props ;
const { i18n } = window ;
const theme = useTheme ( ) ;
const isServerDeletable = isPublic ;
const deleteMessageButtonText = i18n ( isServerDeletable ? 'deleteForEveryone' : 'delete' ) ;
@ -86,7 +86,7 @@ const SelectionOverlay = (props: {
iconType = { SessionIconType . Exit }
iconSize = { SessionIconSize . Medium }
onClick = { onCloseOverlay }
theme = { theme }
theme = { useTheme( ) }
/ >
< / div >
@ -104,7 +104,6 @@ const SelectionOverlay = (props: {
const TripleDotsMenu = ( props : { triggerId : string ; showBackButton : boolean } ) = > {
const { showBackButton } = props ;
const theme = useTheme ( ) ;
if ( showBackButton ) {
return < > < / > ;
}
@ -121,7 +120,7 @@ const TripleDotsMenu = (props: { triggerId: string; showBackButton: boolean }) =
< SessionIconButton
iconType = { SessionIconType . Ellipses }
iconSize = { SessionIconSize . Medium }
theme = { theme }
theme = { useTheme( ) }
/ >
< / div >
) ;
@ -175,7 +174,6 @@ const AvatarHeader = (props: {
const BackButton = ( props : { onGoBack : ( ) = > void ; showBackButton : boolean } ) = > {
const { onGoBack , showBackButton } = props ;
const theme = useTheme ( ) ;
if ( ! showBackButton ) {
return null ;
}
@ -186,11 +184,29 @@ const BackButton = (props: { onGoBack: () => void; showBackButton: boolean }) =>
iconSize = { SessionIconSize . Large }
iconRotation = { 90 }
onClick = { onGoBack }
theme = { theme }
theme = { useTheme( ) }
/ >
) ;
} ;
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 ) = > p . margin || '5px' } ;
}
span :last - child {
margin - bottom : 0 ;
}
` ;
export type ConversationHeaderTitleProps = {
phoneNumber : string ;
profileName? : string ;
@ -201,6 +217,7 @@ export type ConversationHeaderTitleProps = {
subscriberCount? : number ;
isKickedFromGroup : boolean ;
name? : string ;
currentNotificationSetting? : ConversationNotificationSettingType ;
} ;
const ConversationHeaderTitle = ( ) = > {
@ -245,21 +262,36 @@ const ConversationHeaderTitle = () => {
text = i18n ( 'members' , [ count ] ) ;
}
const textEl =
text === '' || isKickedFromGroup ? null : (
< span className = "module-conversation-header__title-text" > { text } < / span >
) ;
const notificationSetting = useSelector ( getCurrentNotificationSettingText ) ;
const notificationSubtitle = notificationSetting
? window . i18n ( 'notificationSubtitle' , notificationSetting )
: null ;
const title = profileName || name || phoneNumber ;
return (
< div className = "module-conversation-header__title" >
< span className = "module-contact-name__profile-name" > { title } < / span >
{ textEl }
< StyledSubtitleContainer margin = { useTheme ( ) . common . margins . xs } >
{ isKickedFromGroup ? null : < ConversationHeaderSubtitle text = { text } / > }
< 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 ) ;