fix: auto scroll to bottom properly
This commit is contained in:
parent
bb4763e509
commit
658185a39f
1 changed files with 12 additions and 8 deletions
|
@ -666,13 +666,13 @@ export function RoomTimeline({ room, eventId, roomInputRef, editor }: RoomTimeli
|
|||
// Stay at bottom when room editor resize
|
||||
useResizeObserver(
|
||||
useMemo(() => {
|
||||
let mounted = false;
|
||||
// let mounted = false;
|
||||
return (entries) => {
|
||||
if (!mounted) {
|
||||
// skip initial mounting call
|
||||
mounted = true;
|
||||
return;
|
||||
}
|
||||
// if (!mounted) {
|
||||
// // skip initial mounting call
|
||||
// mounted = true;
|
||||
// return;
|
||||
// }
|
||||
if (!roomInputRef.current) return;
|
||||
const editorBaseEntry = getResizeObserverEntry(roomInputRef.current, entries);
|
||||
const scrollElement = getScrollElement();
|
||||
|
@ -1100,13 +1100,17 @@ export function RoomTimeline({ room, eventId, roomInputRef, editor }: RoomTimeli
|
|||
if (typeof mxcUrl !== 'string') {
|
||||
return null;
|
||||
}
|
||||
// const height = scaleYDimension(imgInfo?.w || 400, 400, imgInfo?.h || 400);
|
||||
// FIXME
|
||||
const imgW = imgInfo?.w ?? 400;
|
||||
const imgH = imgInfo?.h ?? 400;
|
||||
const maxW = scrollRef.current?.querySelector(`[data-message-id]>div>div:nth-child(2)`)?.clientWidth ?? 400;
|
||||
const height = imgW <= maxW ? imgH : scaleYDimension(imgW, maxW, imgH);
|
||||
|
||||
return (
|
||||
<Attachment>
|
||||
<AttachmentBox
|
||||
style={{
|
||||
// height: toRem(height < 48 ? 48 : height),
|
||||
height: toRem(Math.max(48, Math.min(480, height))),
|
||||
}}
|
||||
>
|
||||
<ImageContent
|
||||
|
|
Loading…
Reference in a new issue