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.
		
		
		
		
		
			
		
			
				
	
	
		
			148 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			TypeScript
		
	
			
		
		
	
	
			148 lines
		
	
	
		
			4.4 KiB
		
	
	
	
		
			TypeScript
		
	
| 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 { OverlayMode, setOverlayMode } from '../../state/ducks/section';
 | |
| import { getOverlayMode } 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<string>;
 | |
|   hasSearchResults: boolean;
 | |
|   overlayMode: OverlayMode | 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 overlayMode = useSelector(getOverlayMode);
 | |
| 
 | |
|   switch (overlayMode) {
 | |
|     case 'choose-action':
 | |
|       return <OverlayChooseAction />;
 | |
|     case 'open-group':
 | |
|       return <OverlayCommunity />;
 | |
|     case 'closed-group':
 | |
|       return <OverlayClosedGroup />;
 | |
|     case 'message':
 | |
|       return <OverlayMessage />;
 | |
|     case 'message-requests':
 | |
|       return <OverlayMessageRequest />;
 | |
|     case undefined:
 | |
|       return null;
 | |
|     default:
 | |
|       return assertUnreachable(
 | |
|         overlayMode,
 | |
|         `ClosableOverlay: overlayMode case not handled "${overlayMode}"`
 | |
|       );
 | |
|   }
 | |
| };
 | |
| 
 | |
| export class LeftPaneMessageSection extends React.Component<Props> {
 | |
|   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 <ConversationListItem key={key} style={style} conversationId={conversationId} />;
 | |
|   };
 | |
| 
 | |
|   public renderList(): JSX.Element {
 | |
|     const { conversationIds, hasSearchResults } = this.props;
 | |
| 
 | |
|     if (hasSearchResults) {
 | |
|       return <SearchResults />;
 | |
|     }
 | |
| 
 | |
|     if (!conversationIds) {
 | |
|       throw new Error('render: must provided conversations if no search results are provided');
 | |
|     }
 | |
| 
 | |
|     const length = conversationIds.length;
 | |
| 
 | |
|     return (
 | |
|       <StyledLeftPaneList key={0}>
 | |
|         <AutoSizer>
 | |
|           {({ height, width }) => (
 | |
|             <List
 | |
|               className="module-left-pane__virtual-list"
 | |
|               height={height}
 | |
|               rowCount={length}
 | |
|               rowHeight={64}
 | |
|               rowRenderer={this.renderRow}
 | |
|               width={width}
 | |
|               autoHeight={false}
 | |
|               conversationIds={conversationIds}
 | |
|             />
 | |
|           )}
 | |
|         </AutoSizer>
 | |
|       </StyledLeftPaneList>
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   public render(): JSX.Element {
 | |
|     const { overlayMode } = this.props;
 | |
| 
 | |
|     return (
 | |
|       <StyledLeftPaneContent>
 | |
|         <LeftPaneSectionHeader />
 | |
|         {overlayMode ? <ClosableOverlay /> : this.renderConversations()}
 | |
|       </StyledLeftPaneContent>
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   public renderConversations() {
 | |
|     return (
 | |
|       <StyledConversationListContent>
 | |
|         <SessionSearchInput />
 | |
|         <MessageRequestsBanner
 | |
|           handleOnClick={() => {
 | |
|             window.inboxStore?.dispatch(setOverlayMode('message-requests'));
 | |
|           }}
 | |
|         />
 | |
|         {this.renderList()}
 | |
|       </StyledConversationListContent>
 | |
|     );
 | |
|   }
 | |
| }
 |