Compare commits

...

1 Commits

Author SHA1 Message Date
Horatiu Muresan 35679f9645 fix(polls) Fix autoscroll for polls causing layout issues 2022-09-27 16:00:44 +03:00
1 changed files with 14 additions and 4 deletions

View File

@ -1,10 +1,12 @@
// @flow
import React, { useEffect, useRef } from 'react';
import React, { useCallback, useEffect, useRef } from 'react';
import { useTranslation } from 'react-i18next';
import { useSelector } from 'react-redux';
import { Icon, IconChatUnread } from '../../../base/icons';
import { browser } from '../../../base/lib-jitsi-meet';
import PollItem from './PollItem';
@ -14,11 +16,19 @@ const PollsList = () => {
const polls = useSelector(state => state['features/polls'].polls);
const pollListEndRef = useRef(null);
const scrollToBottom = () => {
const scrollToBottom = useCallback(() => {
if (pollListEndRef.current) {
pollListEndRef.current.scrollIntoView({ behavior: 'smooth' });
// Safari does not support options
const param = browser.isSafari()
? false : {
behavior: 'smooth',
block: 'end',
inline: 'nearest'
};
pollListEndRef.current.scrollIntoView(param);
}
};
}, [ pollListEndRef.current ]);
useEffect(() => {
scrollToBottom();