fix: replace controller lookup with redux conversation lookup in getMessageQuoteProps

this is more performance and relies on the latest redux state
pull/2757/head
William Grant 2 years ago
parent e8b5f399f7
commit 391db5590e

@ -983,9 +983,14 @@ export const getMessageLinkPreviewProps = createSelector(getMessagePropsByMessag
// tslint:disable: cyclomatic-complexity
export const getMessageQuoteProps = createSelector(
getConversationLookup,
getConversationQuotes,
getMessagePropsByMessageId,
(quotesProps, msgModel): { direction: MessageModelType; quote: PropsForQuote } | undefined => {
(
conversationLookup,
quotesProps,
msgModel
): { direction: MessageModelType; quote: PropsForQuote } | undefined => {
if (!msgModel || isEmpty(msgModel)) {
return undefined;
}
@ -1028,14 +1033,14 @@ export const getMessageQuoteProps = createSelector(
return quoteNotFound;
}
const convo = getConversationController().get(sourceMsgProps.convoId);
const convo = conversationLookup[sourceMsgProps.convoId];
if (!convo) {
return quoteNotFound;
}
const attachment = sourceMsgProps.attachments && sourceMsgProps.attachments[0];
if (convo.isPublic() && PubKey.hasBlindedPrefix(sourceMsgProps.sender)) {
if (convo.isPublic && PubKey.hasBlindedPrefix(sourceMsgProps.sender)) {
const room = OpenGroupData.getV2OpenGroupRoom(sourceMsgProps.convoId);
if (room && roomHasBlindEnabled(room)) {
const usFromCache = findCachedBlindedIdFromUnblinded(

Loading…
Cancel
Save