|
|
|
@ -7,7 +7,7 @@ import {
|
|
|
|
|
ConversationListItemProps,
|
|
|
|
|
MemoConversationListItemWithDetails,
|
|
|
|
|
} from '../ConversationListItem';
|
|
|
|
|
import { ConversationType as ReduxConversationType } from '../../state/ducks/conversations';
|
|
|
|
|
import { openConversationExternal, ReduxConversationType } from '../../state/ducks/conversations';
|
|
|
|
|
import { SearchResults, SearchResultsProps } from '../SearchResults';
|
|
|
|
|
import { SessionSearchInput } from './SessionSearchInput';
|
|
|
|
|
import { debounce } from 'lodash';
|
|
|
|
@ -29,8 +29,7 @@ import { joinOpenGroupV2WithUIEvents } from '../../opengroup/opengroupV2/JoinOpe
|
|
|
|
|
import autoBind from 'auto-bind';
|
|
|
|
|
import { onsNameRegex } from '../../session/snode_api/SNodeAPI';
|
|
|
|
|
import { SNodeAPI } from '../../session/snode_api';
|
|
|
|
|
|
|
|
|
|
import { createClosedGroup } from '../../receiver/closedGroups';
|
|
|
|
|
import { clearSearch, search, updateSearchTerm } from '../../state/ducks/search';
|
|
|
|
|
|
|
|
|
|
export interface Props {
|
|
|
|
|
searchTerm: string;
|
|
|
|
@ -38,12 +37,6 @@ export interface Props {
|
|
|
|
|
contacts: Array<ReduxConversationType>;
|
|
|
|
|
conversations?: Array<ConversationListItemProps>;
|
|
|
|
|
searchResults?: SearchResultsProps;
|
|
|
|
|
|
|
|
|
|
updateSearchTerm: (searchTerm: string) => void;
|
|
|
|
|
search: (query: string, options: SearchOptions) => void;
|
|
|
|
|
openConversationExternal: (id: string, messageId?: string) => void;
|
|
|
|
|
clearSearch: () => void;
|
|
|
|
|
theme: DefaultTheme;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export enum SessionComposeToType {
|
|
|
|
@ -81,7 +74,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public renderRow = ({ index, key, style }: RowRendererParamsType): JSX.Element => {
|
|
|
|
|
const { conversations, openConversationExternal } = this.props;
|
|
|
|
|
const { conversations } = this.props;
|
|
|
|
|
|
|
|
|
|
if (!conversations) {
|
|
|
|
|
throw new Error('renderRow: Tried to render without conversations');
|
|
|
|
@ -89,21 +82,15 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
|
|
|
|
|
const conversation = conversations[index];
|
|
|
|
|
|
|
|
|
|
return <MemoConversationListItemWithDetails style={style} {...conversation} />;
|
|
|
|
|
return <MemoConversationListItemWithDetails key={key} style={style} {...conversation} />;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
public renderList(): JSX.Element | Array<JSX.Element | null> {
|
|
|
|
|
const { conversations, openConversationExternal, searchResults } = this.props;
|
|
|
|
|
const { conversations, searchResults } = this.props;
|
|
|
|
|
const contacts = searchResults?.contacts || [];
|
|
|
|
|
|
|
|
|
|
if (searchResults) {
|
|
|
|
|
return (
|
|
|
|
|
<SearchResults
|
|
|
|
|
{...searchResults}
|
|
|
|
|
contacts={contacts}
|
|
|
|
|
openConversationExternal={openConversationExternal}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
return <SearchResults {...searchResults} contacts={contacts} />;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!conversations) {
|
|
|
|
@ -147,7 +134,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
return (
|
|
|
|
|
<LeftPaneSectionHeader
|
|
|
|
|
label={window.i18n('messagesHeader')}
|
|
|
|
|
theme={this.props.theme}
|
|
|
|
|
buttonIcon={SessionIconType.Plus}
|
|
|
|
|
buttonClicked={this.handleNewSessionButtonClick}
|
|
|
|
|
/>
|
|
|
|
@ -172,7 +158,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
searchString={this.props.searchTerm}
|
|
|
|
|
onChange={this.updateSearch}
|
|
|
|
|
placeholder={window.i18n('searchFor...')}
|
|
|
|
|
theme={this.props.theme}
|
|
|
|
|
/>
|
|
|
|
|
{this.renderList()}
|
|
|
|
|
{this.renderBottomButtons()}
|
|
|
|
@ -181,10 +166,8 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public updateSearch(searchTerm: string) {
|
|
|
|
|
const { updateSearchTerm, clearSearch } = this.props;
|
|
|
|
|
|
|
|
|
|
if (!searchTerm) {
|
|
|
|
|
clearSearch();
|
|
|
|
|
window.inboxStore?.dispatch(clearSearch());
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
@ -192,9 +175,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
// reset our pubKeyPasted, we can either have a pasted sessionID or a sessionID got from a search
|
|
|
|
|
this.setState({ valuePasted: '' });
|
|
|
|
|
|
|
|
|
|
if (updateSearchTerm) {
|
|
|
|
|
updateSearchTerm(searchTerm);
|
|
|
|
|
}
|
|
|
|
|
window.inboxStore?.dispatch(updateSearchTerm(searchTerm));
|
|
|
|
|
|
|
|
|
|
if (searchTerm.length < 2) {
|
|
|
|
|
return;
|
|
|
|
@ -209,19 +190,17 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public clearSearch() {
|
|
|
|
|
this.props.clearSearch();
|
|
|
|
|
window.inboxStore?.dispatch(clearSearch());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public search() {
|
|
|
|
|
const { search } = this.props;
|
|
|
|
|
const { searchTerm } = this.props;
|
|
|
|
|
|
|
|
|
|
if (search) {
|
|
|
|
|
window.inboxStore?.dispatch(
|
|
|
|
|
search(searchTerm, {
|
|
|
|
|
noteToSelf: window.i18n('noteToSelf').toLowerCase(),
|
|
|
|
|
ourNumber: UserUtils.getOurPubKeyStrFromCache(),
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private renderClosableOverlay(overlay: SessionComposeToType) {
|
|
|
|
@ -239,7 +218,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
searchTerm={searchTerm}
|
|
|
|
|
updateSearch={this.updateSearch}
|
|
|
|
|
showSpinner={loading}
|
|
|
|
|
theme={this.props.theme}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
@ -257,7 +235,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
searchTerm={searchTerm}
|
|
|
|
|
updateSearch={this.updateSearch}
|
|
|
|
|
showSpinner={loading}
|
|
|
|
|
theme={this.props.theme}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
@ -273,7 +250,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
searchResults={searchResults}
|
|
|
|
|
showSpinner={loading}
|
|
|
|
|
updateSearch={this.updateSearch}
|
|
|
|
|
theme={this.props.theme}
|
|
|
|
|
/>
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
@ -332,8 +308,6 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async handleMessageButtonClick() {
|
|
|
|
|
const { openConversationExternal } = this.props;
|
|
|
|
|
|
|
|
|
|
if (!this.state.valuePasted && !this.props.searchTerm) {
|
|
|
|
|
ToastUtils.pushToastError('invalidPubKey', window.i18n('invalidNumberError')); // or ons name
|
|
|
|
|
return;
|
|
|
|
@ -349,7 +323,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
pubkeyorOns,
|
|
|
|
|
ConversationTypeEnum.PRIVATE
|
|
|
|
|
);
|
|
|
|
|
openConversationExternal(pubkeyorOns);
|
|
|
|
|
window.inboxStore?.dispatch(openConversationExternal(pubkeyorOns));
|
|
|
|
|
this.handleToggleOverlay(undefined);
|
|
|
|
|
} else {
|
|
|
|
|
// this might be an ONS, validate the regex first
|
|
|
|
@ -369,7 +343,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
|
|
|
|
|
resolvedSessionID,
|
|
|
|
|
ConversationTypeEnum.PRIVATE
|
|
|
|
|
);
|
|
|
|
|
openConversationExternal(resolvedSessionID);
|
|
|
|
|
window.inboxStore?.dispatch(openConversationExternal(resolvedSessionID));
|
|
|
|
|
this.handleToggleOverlay(undefined);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
window?.log?.warn('failed to resolve ons name', pubkeyorOns, e);
|
|
|
|
|