Compare commits

..

2 commits

Author SHA1 Message Date
8cd6ba97b6
chore: add mx-uc.css 2024-01-18 22:37:49 +09:00
0b5efb0a88
chore: update config.json and title for supnas 2024-01-18 22:37:49 +09:00
2 changed files with 3 additions and 7 deletions

View file

@ -1139,17 +1139,13 @@ export function RoomTimeline({ room, eventId, roomInputRef, editor }: RoomTimeli
return null; return null;
} }
// FIXME const height = scaleYDimension(videoInfo.w || 400, 400, videoInfo.h || 400);
const videoW = videoInfo?.w ?? 400;
const videoH = videoInfo?.h ?? 400;
const maxW = scrollRef.current?.querySelector(`[data-message-id]>div>div:nth-child(2)`)?.clientWidth ?? 400;
const height = videoW <= maxW ? videoH : scaleYDimension(videoW, maxW, videoH);
return ( return (
<Attachment> <Attachment>
<AttachmentBox <AttachmentBox
style={{ style={{
height: toRem(Math.max(48, Math.min(480, height))), height: toRem(height < 48 ? 48 : height),
}} }}
> >
<VideoContent <VideoContent

View file

@ -116,7 +116,7 @@ export const VideoContent = as<'div', VideoContentProps>(
</Box> </Box>
)} )}
{srcState.status === AsyncStatus.Success && ( {srcState.status === AsyncStatus.Success && (
<Box className={css.AbsoluteContainer} style={{position: 'unset'}}> <Box className={css.AbsoluteContainer}>
<Video <Video
title={body} title={body}
src={srcState.data} src={srcState.data}