|
|
|
@ -142,12 +142,9 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
// Keyboard navigation
|
|
|
|
|
this.onKeyDown = this.onKeyDown.bind(this);
|
|
|
|
|
|
|
|
|
|
const conversationModel = window.ConversationController.get(
|
|
|
|
|
const conversationModel = window.ConversationController.getOrThrow(
|
|
|
|
|
this.state.conversationKey
|
|
|
|
|
);
|
|
|
|
|
if (!conversationModel) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
conversationModel.on('change', () => {
|
|
|
|
|
this.setState(
|
|
|
|
|
{
|
|
|
|
@ -214,12 +211,9 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
const conversation = this.props.conversations.conversationLookup[
|
|
|
|
|
conversationKey
|
|
|
|
|
];
|
|
|
|
|
const conversationModel = window.ConversationController.get(
|
|
|
|
|
const conversationModel = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
if (!conversationModel) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
const isRss = conversation.isRss;
|
|
|
|
|
|
|
|
|
|
// TODO VINCE: OPTIMISE FOR NEW SENDING???
|
|
|
|
@ -232,7 +226,6 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
const showSafetyNumber = this.state.infoViewState === 'safetyNumber';
|
|
|
|
|
const showMessageDetails = this.state.infoViewState === 'messageDetails';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<SessionTheme theme={this.props.theme}>
|
|
|
|
|
<div className="conversation-header">{this.renderHeader()}</div>
|
|
|
|
@ -414,16 +407,13 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
// in the conversation model.
|
|
|
|
|
// The only time we need to call getMessages() is to grab more messages on scroll.
|
|
|
|
|
const { conversationKey, initialFetchComplete } = this.state;
|
|
|
|
|
const conversationModel = window.ConversationController.get(
|
|
|
|
|
const conversationModel = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (initialFetchComplete) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (!conversationModel) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const messageSet = await window.Signal.Data.getMessagesByConversation(
|
|
|
|
|
conversationKey,
|
|
|
|
@ -506,10 +496,9 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
|
|
|
|
|
public getHeaderProps() {
|
|
|
|
|
const { conversationKey } = this.state;
|
|
|
|
|
const conversation = window.ConversationController.get(conversationKey);
|
|
|
|
|
if (!conversation) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
const conversation = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
const expireTimer = conversation.get('expireTimer');
|
|
|
|
|
const expirationSettingName = expireTimer
|
|
|
|
|
? window.Whisper.ExpirationTimerOptions.getName(expireTimer || 0)
|
|
|
|
@ -615,10 +604,9 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
|
|
|
|
|
public getGroupSettingsProps() {
|
|
|
|
|
const { conversationKey } = this.state;
|
|
|
|
|
const conversation = window.ConversationController.get(conversationKey);
|
|
|
|
|
if (!conversation) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
const conversation = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const ourPK = window.textsecure.storage.user.getNumber();
|
|
|
|
|
const members = conversation.get('members') || [];
|
|
|
|
@ -730,10 +718,10 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
|
|
|
|
|
// If you're not friends, don't mark anything as read. Otherwise
|
|
|
|
|
// this will automatically accept friend request.
|
|
|
|
|
const conversation = window.ConversationController.get(conversationKey);
|
|
|
|
|
if (!conversation) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
const conversation = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (conversation.isBlocked()) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@ -826,14 +814,12 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const { conversationKey } = this.state;
|
|
|
|
|
const conversationModel = window.ConversationController.get(
|
|
|
|
|
const conversationModel = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const multiple = selectedMessages.length > 1;
|
|
|
|
|
if (!conversationModel) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const isPublic = conversationModel.isPublic();
|
|
|
|
|
|
|
|
|
|
// In future, we may be able to unsend private messages also
|
|
|
|
@ -1068,27 +1054,29 @@ export class SessionConversation extends React.Component<Props, State> {
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
// ~~~~~~~~~~~~~~ MESSAGE QUOTE ~~~~~~~~~~~~~~~
|
|
|
|
|
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
private async replyToMessage(quotedMessageTimestamp ?: number) {
|
|
|
|
|
private async replyToMessage(quotedMessageTimestamp?: number) {
|
|
|
|
|
if (!_.isEqual(this.state.quotedMessageTimestamp, quotedMessageTimestamp)) {
|
|
|
|
|
const { conversationKey } = this.state;
|
|
|
|
|
const conversationModel = window.ConversationController.get(
|
|
|
|
|
const conversationModel = window.ConversationController.getOrThrow(
|
|
|
|
|
conversationKey
|
|
|
|
|
);
|
|
|
|
|
if (!conversationModel) {
|
|
|
|
|
throw new Error('conversation null on ConversationController.get()');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const conversation = this.props.conversations.conversationLookup[
|
|
|
|
|
conversationKey
|
|
|
|
|
];
|
|
|
|
|
let quotedMessageProps = null;
|
|
|
|
|
if (quotedMessageTimestamp) {
|
|
|
|
|
const quotedMessageModel = conversationModel.getMessagesWithTimestamp(conversation.id, quotedMessageTimestamp);
|
|
|
|
|
const quotedMessageModel = conversationModel.getMessagesWithTimestamp(
|
|
|
|
|
conversation.id,
|
|
|
|
|
quotedMessageTimestamp
|
|
|
|
|
);
|
|
|
|
|
if (quotedMessageModel && quotedMessageModel.length === 1) {
|
|
|
|
|
quotedMessageProps = await conversationModel.makeQuote(quotedMessageModel[0]);
|
|
|
|
|
quotedMessageProps = await conversationModel.makeQuote(
|
|
|
|
|
quotedMessageModel[0]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.setState({ quotedMessageTimestamp, quotedMessageProps });
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|