remove sendAnyWay and showSafetyNumber from props of MessageDetails

pull/1381/head
Audric Ackermann 4 years ago
parent 5e43210493
commit 20496c45d6
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -55,9 +55,7 @@ export interface MessageModel extends Backbone.Model<MessageAttributes> {
sendSyncMessageOnly: (message: any) => void;
isUnread: () => boolean;
commit: () => Promise<number>;
getPropsForMessageDetail: (
onSendAnyway: any /*, onShowSafetyNumber: any*/
) => any; // FIXME enable this back. Be sure to handle case where it comes from a medium group
getPropsForMessageDetail: () => any;
propsForMessage?: any;
propsForTimerNotification?: any;

@ -803,7 +803,7 @@
return Boolean(lookup[contactId]);
},
async getPropsForMessageDetail(onSendAnyway, onShowSafetyNumber) {
async getPropsForMessageDetail() {
const newIdentity = i18n('newIdentity');
const OUTGOING_KEY_ERROR = 'OutgoingIdentityKeyError';
@ -868,15 +868,6 @@
isUnidentifiedDelivery,
isPrimaryDevice,
profileName,
onSendAnyway: () => {
onSendAnyway({
contact: this.findContact(id),
message: this,
});
},
onShowSafetyNumber: () => {
onShowSafetyNumber(this.findContact(id));
},
};
})
);
@ -1188,7 +1179,7 @@
sentMessage.encryption === libsession.Types.EncryptionType.MediumGroup;
const isOpenGroupMessage =
sentMessage.group &&
!!sentMessage.group &&
sentMessage.group instanceof libsession.Types.OpenGroup;
// We trigger a sync message only when the message is not to one of our devices, AND
@ -1206,7 +1197,7 @@
const isSessionOrClosedMessage = !isOpenGroupMessage;
if (!isOpenGroupMessage) {
if (isSessionOrClosedMessage) {
const contentDecoded = textsecure.protobuf.Content.decode(
sentMessage.plainTextBuffer
);

@ -602,32 +602,6 @@
});
},
async showMessageDetail(message) {
const onClose = () => {
this.stopListening(message, 'change', update);
this.resetPanel();
this.updateHeader();
};
const props = await message.getPropsForMessageDetail();
const view = new Whisper.ReactWrapperView({
className: 'message-detail-wrapper',
Component: Signal.Components.MessageDetail,
props,
onClose,
});
const update = async () =>
view.update(await message.getPropsForMessageDetail());
this.listenTo(message, 'change', update);
this.listenTo(message, 'expired', onClose);
// We could listen to all involved contacts, but we'll call that overkill
this.listenBack(view);
this.updateHeader();
view.render();
},
showContactDetail({ contact, hasSignalAccount }) {
const regionCode = storage.get('regionCode');
const { contactSelector } = Signal.Types.Contact;

@ -304,11 +304,8 @@ export class SessionMessagesList extends React.Component<Props, State> {
messageProps.onDeleteMessage = this.props.deleteMessage;
messageProps.onReply = this.props.replyToMessage;
messageProps.onShowDetail = async () => {
void this.props.showMessageDetails(
await message.getPropsForMessageDetail(
this.onSendAnyway /*, this.props.onShowSafetyNumber*/
)
);
const messageDetailsProps = await message.getPropsForMessageDetail();
void this.props.showMessageDetails(messageDetailsProps);
};
messageProps.onClickAttachment = (attachment: any) => {

Loading…
Cancel
Save