mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-08 08:58:38 +01:00
Open conversation details when clicking conversation header
This commit is contained in:
@@ -49,7 +49,6 @@ const commonProps = {
|
||||
),
|
||||
|
||||
onShowAllMedia: action('onShowAllMedia'),
|
||||
onShowContactModal: action('onShowContactModal'),
|
||||
onShowGroupMembers: action('onShowGroupMembers'),
|
||||
onGoBack: action('onGoBack'),
|
||||
|
||||
|
||||
@@ -66,7 +66,6 @@ export type PropsDataType = {
|
||||
export type PropsActionsType = {
|
||||
onSetMuteNotifications: (seconds: number) => void;
|
||||
onSetDisappearingMessages: (seconds: number) => void;
|
||||
onShowContactModal: (contactId: string) => void;
|
||||
onDeleteMessages: () => void;
|
||||
onSearchInConversation: () => void;
|
||||
onOutgoingAudioCallInConversation: () => void;
|
||||
@@ -519,9 +518,6 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
|
||||
const {
|
||||
conversationTitle,
|
||||
groupVersion,
|
||||
id,
|
||||
isMe,
|
||||
onShowContactModal,
|
||||
onShowConversationDetails,
|
||||
type,
|
||||
} = this.props;
|
||||
@@ -541,11 +537,9 @@ export class ConversationHeader extends React.Component<PropsType, StateType> {
|
||||
let onClick: undefined | (() => void);
|
||||
switch (type) {
|
||||
case 'direct':
|
||||
onClick = isMe
|
||||
? undefined
|
||||
: () => {
|
||||
onShowContactModal(id);
|
||||
};
|
||||
onClick = () => {
|
||||
onShowConversationDetails();
|
||||
};
|
||||
break;
|
||||
case 'group': {
|
||||
const hasGV2AdminEnabled = groupVersion === 2;
|
||||
|
||||
@@ -38,7 +38,6 @@ export type OwnProps = {
|
||||
onSetMuteNotifications: (seconds: number) => void;
|
||||
onSetPin: (value: boolean) => void;
|
||||
onShowAllMedia: () => void;
|
||||
onShowContactModal: (contactId: string) => void;
|
||||
onShowConversationDetails: () => void;
|
||||
onShowGroupMembers: () => void;
|
||||
};
|
||||
|
||||
@@ -384,7 +384,6 @@ export class ConversationView extends window.Backbone.View<ConversationModel> {
|
||||
const conversationHeaderProps = {
|
||||
id: this.model.id,
|
||||
|
||||
onShowContactModal: this.showContactModal.bind(this),
|
||||
onSetDisappearingMessages: (seconds: number) =>
|
||||
this.setDisappearingMessages(seconds),
|
||||
onDeleteMessages: () => this.destroyMessages(),
|
||||
|
||||
Reference in New Issue
Block a user