Redux prep for refactor

pull/1102/head
Vincent 5 years ago
parent cdd19037ba
commit 3fec09a293

@ -28,23 +28,23 @@ interface State {
}
interface Props {
conversations: Array<ConversationListItemPropsType>;
friends: Array<ConversationType>;
sentFriendsRequest: Array<ConversationListItemPropsType>;
receivedFriendsRequest: Array<ConversationListItemPropsType>;
unreadMessageCount: number;
receivedFriendRequestCount: number;
searchResults?: SearchResultsProps;
searchTerm: string;
isSecondaryDevice: boolean;
openConversationInternal: (id: string, messageId?: string) => void;
updateSearchTerm: (searchTerm: string) => void;
search: (query: string, options: SearchOptions) => void;
clearSearch: () => void;
// conversations: Array<ConversationListItemPropsType>;
// friends: Array<ConversationType>;
// sentFriendsRequest: Array<ConversationListItemPropsType>;
// receivedFriendsRequest: Array<ConversationListItemPropsType>;
// unreadMessageCount: number;
// receivedFriendRequestCount: number;
// searchResults?: SearchResultsProps;
// searchTerm: string;
// isSecondaryDevice: boolean;
// openConversationInternal: (id: string, messageId?: string) => void;
// updateSearchTerm: (searchTerm: string) => void;
// search: (query: string, options: SearchOptions) => void;
// clearSearch: () => void;
}
export class LeftPane extends React.Component<Props, State> {
export class LeftPane extends React.Component<any, State> {
public state = {
selectedSection: SectionType.Message,
};
@ -52,6 +52,9 @@ export class LeftPane extends React.Component<Props, State> {
public constructor(props: any) {
super(props);
this.handleSectionSelected = this.handleSectionSelected.bind(this);
console.log(`[vince] These are my props:`, props);
}
// this static function is set here to be used by all subsections (message, contacts,...) to render their headers

@ -6,12 +6,13 @@ import { StateType } from '../reducer';
import { getSessionConversationInfo } from '../selectors/conversations';
const mapStateToProps = (state: StateType) => {
const conversationInfo = getSessionConversationInfo(state);
//const conversationInfo = getSessionConversationInfo(state);
console.log(`[vince] stateToProps from SessionConversation:`, conversationInfo);
// console.log(`[vince] stateToProps from SessionConversation:`, conversationInfo);
console.log(`[vince] stateToProps from SessionConversation:`,state);
return {
...conversationInfo,
...state,
}
};

Loading…
Cancel
Save