Reenable LayoutAnimation on RoomView, but only for new messages
This commit is contained in:
parent
ae7398233a
commit
2c62d9cb46
|
@ -9,7 +9,7 @@ import { Observable, Subscription } from 'rxjs';
|
||||||
import ActivityIndicator from '../../../containers/ActivityIndicator';
|
import ActivityIndicator from '../../../containers/ActivityIndicator';
|
||||||
import { MessageType, TAnyMessage, TMessageModel, TThreadMessageModel, TThreadModel } from '../../../definitions';
|
import { MessageType, TAnyMessage, TMessageModel, TThreadMessageModel, TThreadModel } from '../../../definitions';
|
||||||
import database from '../../../lib/database';
|
import database from '../../../lib/database';
|
||||||
import { compareServerVersion, debounce } from '../../../lib/methods/helpers';
|
import { animateNextTransition, 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 log from '../../../lib/methods/helpers/log';
|
||||||
import EmptyRoom from '../EmptyRoom';
|
import EmptyRoom from '../EmptyRoom';
|
||||||
|
@ -123,7 +123,7 @@ class ListContainer extends React.Component<IListContainerProps, IListContainerS
|
||||||
|
|
||||||
query = async () => {
|
query = async () => {
|
||||||
this.count += QUERY_SIZE;
|
this.count += QUERY_SIZE;
|
||||||
const { rid, tmid, showMessageInMainThread, serverVersion } = this.props;
|
const { rid, tmid, showMessageInMainThread, serverVersion, listRef } = this.props;
|
||||||
const db = database.active;
|
const db = database.active;
|
||||||
|
|
||||||
// handle servers with version < 3.0.0
|
// handle servers with version < 3.0.0
|
||||||
|
@ -185,10 +185,11 @@ class ListContainer extends React.Component<IListContainerProps, IListContainerS
|
||||||
|
|
||||||
if (this.mounted) {
|
if (this.mounted) {
|
||||||
this.setState({ messages: data });
|
this.setState({ messages: data });
|
||||||
// if (this.animated) {
|
|
||||||
// listRef.current?.prepareForLayoutAnimationRender();
|
if (this.animated && this.viewableItems?.[0].index === 0) {
|
||||||
// animateNextTransition();
|
listRef.current?.prepareForLayoutAnimationRender();
|
||||||
// }
|
animateNextTransition();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
this.state.messages = data;
|
this.state.messages = data;
|
||||||
|
|
Loading…
Reference in New Issue