Sidebar channels: visibility by activity - #302
Open
7PH wants to merge 12 commits into
Open
Conversation
…ray when idle, animate while a media plays
… not chat-room members
…less of drift threshold (automatic syncs still respect it)
…verflowing (fixes hidden delete button on long queue titles)
|
…m right-click menu suppresses the browser's native 'open image in new tab')
…dex builds stop failing on the messages table
| const img = document.createElement('img'); | ||
| img.src = stickerUrl; | ||
| img.alt = ''; | ||
| img.style.left = 5 + Math.random() * 85 + '%'; |
| img.src = stickerUrl; | ||
| img.alt = ''; | ||
| img.style.left = 5 + Math.random() * 85 + '%'; | ||
| img.style.animationDelay = Math.random() * 600 + 'ms'; |
| img.alt = ''; | ||
| img.style.left = 5 + Math.random() * 85 + '%'; | ||
| img.style.animationDelay = Math.random() * 600 + 'ms'; | ||
| img.style.animationDuration = 1400 + Math.random() * 600 + 'ms'; |
… rainbow highlight and sticker burst on hover/click
Radix Vue's ContextMenu restores focus to the trigger element after the menu closes (via requestAnimationFrame). This ran after the app.newMessage watcher in NewMessageForm fired its .focus() call, stealing focus back. Fix: schedule a setTimeout(0) focus via useMessageComposer in quoteMessage and editMessage. setTimeout(0) runs after requestAnimationFrame, so our focus call wins regardless of which path triggered the action (context menu or hover toolbar).
…ys, so deploys survive slow postgres startup
7PH
force-pushed
the
dev/7ph/various-improvements
branch
from
August 23, 2026 14:27
fbc80a9 to
b4fa09f
Compare
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.







Sidebar channels
Icons reflect activity: playing media channels get a colored icon with glow and equalizer, occupied voice channels turn emerald, empty ones stay gray. Server exposes
pausedandqueueLengthon player channels.Player
Highlighted words (new)
Admins map words to stickers (
/highlight, "Highlighted words" modal). Configured words render with an animated rainbow highlight; hover or click bursts the sticker across the message panel. Wrapping happens client-side on text nodes only, so old messages get it and stickers, links and buttons are unaffected. Management gated byminRightForHighlightManagement(optional, defaults to op).Misc