Open conversation details when clicking conversation header

This commit is contained in:
Josh Perez 2021-10-21 17:06:44 -04:00 committed by GitHub
parent 9ecf47594b
commit f31c5165d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 12 deletions

View file

@ -49,7 +49,6 @@ const commonProps = {
),
onShowAllMedia: action('onShowAllMedia'),
onShowContactModal: action('onShowContactModal'),
onShowGroupMembers: action('onShowGroupMembers'),
onGoBack: action('onGoBack'),

View file

@ -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;

View file

@ -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;
};

View file

@ -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(),