Follow-up

This commit is contained in:
Alexander Zinchuk 2023-01-07 04:36:07 +01:00
parent ad6b57d3de
commit 324324bae7

View File

@ -9,7 +9,7 @@ import type {
import type { ObserveFn } from '../../../../hooks/useIntersectionObserver'; import type { ObserveFn } from '../../../../hooks/useIntersectionObserver';
import type { Thread } from '../../../../global/types'; import type { Thread } from '../../../../global/types';
import { ANIMATION_END_DELAY } from '../../../../config'; import { ANIMATION_END_DELAY, CHAT_HEIGHT_PX } from '../../../../config';
import { renderTextWithEntities } from '../../../common/helpers/renderTextWithEntities'; import { renderTextWithEntities } from '../../../common/helpers/renderTextWithEntities';
import { import {
getMessageMediaHash, getMessageMediaHash,
@ -173,7 +173,7 @@ export default function useChatListEntry({
element.style.opacity = '1'; element.style.opacity = '1';
}); });
} else if (animationType === ChatAnimationTypes.Move) { } else if (animationType === ChatAnimationTypes.Move) {
element.style.transform = `translate3d(0, ${-orderDiff * 100}%, 0)`; element.style.transform = `translate3d(0, ${-orderDiff * CHAT_HEIGHT_PX}px, 0)`;
fastRaf(() => { fastRaf(() => {
element.classList.add('animate-transform'); element.classList.add('animate-transform');