Reenable layout animation on RoomView

This commit is contained in:
Diego Mello 2022-11-30 13:13:52 -03:00
parent 2cefe12a91
commit 36f0935e55
1 changed files with 6 additions and 6 deletions

View File

@ -10,7 +10,7 @@ import ActivityIndicator from '../../../containers/ActivityIndicator';
import { MessageType, TAnyMessage, TMessageModel, TThreadMessageModel, TThreadModel } from '../../../definitions';
import database from '../../../lib/database';
import { compareServerVersion, debounce } from '../../../lib/methods/helpers';
// import { animateNextTransition } from '../../../lib/methods/helpers/layoutAnimation';
import { animateNextTransition } from '../../../lib/methods/helpers/layoutAnimation';
import log from '../../../lib/methods/helpers/log';
import EmptyRoom from '../EmptyRoom';
// @ts-ignore
@ -124,7 +124,7 @@ class ListContainer extends React.Component<IListContainerProps, IListContainerS
query = async () => {
this.count += QUERY_SIZE;
const { rid, tmid, showMessageInMainThread, serverVersion } = this.props;
const { rid, tmid, showMessageInMainThread, serverVersion, listRef } = this.props;
const db = database.active;
// handle servers with version < 3.0.0
@ -185,11 +185,11 @@ class ListContainer extends React.Component<IListContainerProps, IListContainerS
}
if (this.mounted) {
// if (this.animated) {
// listRef.current?.prepareForLayoutAnimationRender();
// animateNextTransition();
// }
this.setState({ messages: data });
if (this.animated) {
listRef.current?.prepareForLayoutAnimationRender();
animateNextTransition();
}
} else {
// @ts-ignore
this.state.messages = data;