Compare commits

...

3 commits

Author SHA1 Message Date
cbd4b2ae33
chore: add mx-uc.css 2024-01-18 08:03:28 +09:00
a396a8dca0
misc: update config.json and title for supnas 2024-01-18 08:03:28 +09:00
658185a39f
fix: auto scroll to bottom properly 2024-01-18 08:03:17 +09:00
5 changed files with 26 additions and 18 deletions

View file

@ -1,13 +1,8 @@
{
"defaultHomeserver": 3,
"defaultHomeserver": 0,
"homeserverList": [
"0wnz.at",
"converser.eu",
"envs.net",
"matrix.org",
"monero.social",
"mozilla.org",
"xmr.se"
"chat.naskya.net",
"chat.sup39.dev"
],
"allowCustomHomeservers": true
"allowCustomHomeservers": false
}

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<title>Cinny</title>
<title>Cinny@さぽなす</title>
<meta name="name" content="Cinny" />
<meta name="author" content="Ajay Bura" />
<meta
@ -26,6 +26,7 @@
<meta name="theme-color" content="#000000" />
<link id="favicon" rel="shortcut icon" href="./public/favicon.ico" />
<link rel="stylesheet" href="/mx-uc.css" />
<link rel="manifest" href="/manifest.json" />
<meta name="mobile-web-app-capable" content="yes" />

4
public/mx-uc.css Normal file
View file

@ -0,0 +1,4 @@
:root {
--mx-uc--sup39-chat_sup39_dev: #2ee5b8;
/* --mx-uc--naskya-chat_naskya_net: ; */
}

View file

@ -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

View file

@ -33,6 +33,10 @@ const copyFiles = {
src: 'public/res/android',
dest: 'public/',
},
{
src: 'public/mx-uc.css',
dest: '',
},
{
src: 'twemoji/assets/svg/*',
dest: 'twemoji/',