import autoBind from 'auto-bind'; import React from 'react'; import { useSelector } from 'react-redux'; import { AutoSizer, List, ListRowProps } from 'react-virtualized'; import styled from 'styled-components'; import { SearchResults } from '../search/SearchResults'; import { LeftPaneSectionHeader } from './LeftPaneSectionHeader'; import { MessageRequestsBanner } from './MessageRequestsBanner'; import { LeftOverlayMode, setLeftOverlayMode } from '../../state/ducks/section'; import { getLeftOverlayMode } from '../../state/selectors/section'; import { assertUnreachable } from '../../types/sqlSharedTypes'; import { SessionSearchInput } from '../SessionSearchInput'; import { StyledLeftPaneList } from './LeftPaneList'; import { ConversationListItem } from './conversation-list-item/ConversationListItem'; import { OverlayClosedGroup } from './overlay/OverlayClosedGroup'; import { OverlayCommunity } from './overlay/OverlayCommunity'; import { OverlayMessage } from './overlay/OverlayMessage'; import { OverlayMessageRequest } from './overlay/OverlayMessageRequest'; import { OverlayChooseAction } from './overlay/choose-action/OverlayChooseAction'; export interface Props { conversationIds?: Array; hasSearchResults: boolean; leftOverlayMode: LeftOverlayMode | undefined; } const StyledLeftPaneContent = styled.div` display: flex; flex-direction: column; flex: 1; overflow: hidden; `; const StyledConversationListContent = styled.div` background: var(--background-primary-color); overflow-x: hidden; display: flex; flex-direction: column; flex-grow: 1; transition: none; `; const ClosableOverlay = () => { const leftOverlayMode = useSelector(getLeftOverlayMode); switch (leftOverlayMode) { case 'choose-action': return ; case 'open-group': return ; case 'closed-group': return ; case 'message': return ; case 'message-requests': return ; case undefined: return null; default: return assertUnreachable( leftOverlayMode, `ClosableOverlay: leftOverlayMode case not handled "${leftOverlayMode}"` ); } }; export class LeftPaneMessageSection extends React.Component { public constructor(props: Props) { super(props); autoBind(this); } public renderRow = ({ index, key, style }: ListRowProps): JSX.Element | null => { const { conversationIds } = this.props; // assume conversations that have been marked unapproved should be filtered out by selector. if (!conversationIds) { throw new Error('renderRow: Tried to render without conversations'); } const conversationId = conversationIds[index]; if (!conversationId) { throw new Error('renderRow: conversations selector returned element containing falsy value.'); } return ; }; public renderList(): JSX.Element { const { conversationIds, hasSearchResults } = this.props; if (hasSearchResults) { return ; } if (!conversationIds) { throw new Error('render: must provided conversations if no search results are provided'); } const length = conversationIds.length; return ( {({ height, width }) => ( )} ); } public render(): JSX.Element { const { leftOverlayMode } = this.props; return ( {leftOverlayMode ? : this.renderConversations()} ); } public renderConversations() { return ( { window.inboxStore?.dispatch(setLeftOverlayMode('message-requests')); }} /> {this.renderList()} ); } }