You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
session-desktop/ts/state/smart/SessionConversation.tsx

47 lines
1.6 KiB
TypeScript

import { connect } from 'react-redux';
import { mapDispatchToProps } from '../actions';
import { SessionConversation } from '../../components/session/conversation/SessionConversation';
import { StateType } from '../reducer';
const mapStateToProps = (state: StateType) => {
// Get messages here!!!!!
// FIXME VINCE: Get messages for all conversations, not just this one
// Store as object of objects with key refs
// console.log(`[update] State from dispatch:`, state);
// const message: Array<any> = [];
// if(state.conversations) {
// const conversationKey = state.conversations.selectedConversation;
// // FIXME VINCE: msgCount should not be a magic number
// const msgCount = 30;
// const messageSet = await window.Signal.Data.getMessagesByConversation(
// conversationKey,
// { limit: msgCount, MessageCollection: window.Whisper.MessageCollection },
// );
// const messageModels = messageSet.models;
// let previousSender;
// for (let i = 0; i < messageModels.length; i++){
// // Handle firstMessageOfSeries for conditional avatar rendering
// let firstMessageOfSeries = true;
// if (i > 0 && previousSender === messageModels[i].authorPhoneNumber){
// firstMessageOfSeries = false;
// }
// messages.push({...messageModels[i], firstMessageOfSeries});
// previousSender = messageModels[i].authorPhoneNumber;
// }
// }
return {
conversations: state.conversations,
};
};
const smart = connect(mapStateToProps, mapDispatchToProps);
export const SmartSessionConversation = smart(SessionConversation);