From 8592abd467c1f521aaae2db5df36e50b225504b1 Mon Sep 17 00:00:00 2001 From: Jeff Emmett Date: Thu, 16 Apr 2026 09:36:29 -0400 Subject: [PATCH] feat(rmeets): chat popup notifications + right-side chat panel - Enable chat notifications (brief popup for all participants) - Move chat panel to right side via CHAT_PANEL_POSITION - Applied to both clean room mode and folk-jitsi-room shell mode Co-Authored-By: Claude Opus 4.6 --- modules/rmeets/components/folk-jitsi-room.ts | 2 ++ modules/rmeets/mod.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/modules/rmeets/components/folk-jitsi-room.ts b/modules/rmeets/components/folk-jitsi-room.ts index 8def9dca..6017522d 100644 --- a/modules/rmeets/components/folk-jitsi-room.ts +++ b/modules/rmeets/components/folk-jitsi-room.ts @@ -143,6 +143,7 @@ class FolkJitsiRoom extends HTMLElement { hideConferenceSubject: false, disableVirtualBackground: false, disableProfile: false, + notifications: ['chat'], toolbarButtons: [ "camera", "microphone", "desktop", "hangup", "raisehand", "tileview", "toggle-camera", @@ -160,6 +161,7 @@ class FolkJitsiRoom extends HTMLElement { SHOW_BRAND_WATERMARK: false, CLOSE_PAGE_GUEST_HINT: false, SHOW_PROMOTIONAL_CLOSE_PAGE: false, + CHAT_PANEL_POSITION: 'right', SETTINGS_SECTIONS: ['devices', 'language', 'moderator', 'profile', 'sounds', 'more'], }, }); diff --git a/modules/rmeets/mod.ts b/modules/rmeets/mod.ts index f3bc49f3..d2d382c8 100644 --- a/modules/rmeets/mod.ts +++ b/modules/rmeets/mod.ts @@ -750,6 +750,7 @@ routes.get("/:room", (c) => { enableClosePage: false, disableVirtualBackground: false, disableProfile: false, + notifications: ['chat'], toolbarButtons: [ "microphone","camera","desktop","hangup", "raisehand","tileview","toggle-camera", @@ -768,6 +769,7 @@ routes.get("/:room", (c) => { MOBILE_APP_PROMO: false, HIDE_DEEP_LINKING_LOGO: true, DISABLE_JOIN_LEAVE_NOTIFICATIONS: false, + CHAT_PANEL_POSITION: 'right', SETTINGS_SECTIONS: ['devices', 'language', 'moderator', 'profile', 'sounds', 'more'], }, });