chore: minor tweak

This commit is contained in:
AlexAlexandre 2021-12-07 22:33:06 -03:00
parent 42d1744cc3
commit e738f5c80f
1 changed files with 3 additions and 2 deletions

View File

@ -20,6 +20,7 @@ import { compareServerVersion, methods } from '../../../lib/utils';
import List from './List'; import List from './List';
import NavBottomFAB from './NavBottomFAB'; import NavBottomFAB from './NavBottomFAB';
import { ChatsStackParamList } from '../../../stacks/types'; import { ChatsStackParamList } from '../../../stacks/types';
import { IRoomItem } from '../index';
const QUERY_SIZE = 50; const QUERY_SIZE = 50;
@ -270,7 +271,7 @@ class ListContainer extends React.Component<IRoomListContainerProps, any> {
return null; return null;
}; };
handleScrollToIndexFailed = (params: any) => { handleScrollToIndexFailed = (params: { highestMeasuredFrameIndex: number }) => {
const { listRef } = this.props; const { listRef } = this.props;
listRef.current.getNode().scrollToIndex({ index: params.highestMeasuredFrameIndex, animated: false }); listRef.current.getNode().scrollToIndex({ index: params.highestMeasuredFrameIndex, animated: false });
}; };
@ -324,7 +325,7 @@ class ListContainer extends React.Component<IRoomListContainerProps, any> {
return null; return null;
}; };
renderItem = ({ item, index }: { item: any; index: number }) => { renderItem = ({ item, index }: { item: IRoomItem; index: number }) => {
const { messages, highlightedMessage } = this.state; const { messages, highlightedMessage } = this.state;
const { renderRow } = this.props; const { renderRow } = this.props;
return renderRow(item, messages[index + 1], highlightedMessage); return renderRow(item, messages[index + 1], highlightedMessage);