feat: Add deafen to pc, fix mobiel view, fix freeze on startup

This commit is contained in:
2026-06-05 15:27:06 +02:00
parent 35f52b0356
commit a675f12e61
85 changed files with 2499 additions and 519 deletions

View File

@@ -1,6 +1,6 @@
<div
appThemeNode="chatSurface"
class="chat-layout relative h-full"
class="chat-layout relative h-full min-w-0 overflow-x-hidden"
>
<app-chat-message-list
[allMessages]="roomMessages()"
@@ -20,6 +20,7 @@
(reactionToggled)="handleReactionToggled($event)"
(downloadRequested)="downloadAttachment($event)"
(imageOpened)="openLightbox($event)"
(imageGalleryOpened)="openImageGallery($event)"
(imageContextMenuRequested)="openImageContextMenu($event)"
(embedRemoved)="handleEmbedRemoved($event)"
(loadOlderRequested)="handleLoadOlderRequested($event)"
@@ -84,12 +85,16 @@
}
<app-chat-message-overlays
[lightboxAttachment]="lightboxAttachment()"
[lightboxState]="lightboxState()"
[galleryAttachments]="galleryAttachments()"
[imageContextMenu]="imageContextMenu()"
(lightboxClosed)="closeLightbox()"
(lightboxStepRequested)="stepLightbox($event)"
(galleryClosed)="closeImageGallery()"
(contextMenuClosed)="closeImageContextMenu()"
(downloadRequested)="downloadAttachment($event)"
(copyRequested)="copyImageToClipboard($event)"
(imageOpened)="openLightbox($event)"
(imageContextMenuRequested)="openImageContextMenu($event)"
/>
</div>