update and fix messanger

This commit is contained in:
lendry
2026-06-26 00:16:17 +03:00
parent b0ea87e898
commit 4e78a81eb1
14 changed files with 898 additions and 125 deletions

View File

@@ -0,0 +1,12 @@
export const AVATAR_UPDATED_EVENT = 'id:avatar-updated';
export const CHAT_ROOM_AVATAR_UPDATED_EVENT = 'id:chat-room-avatar-updated';
export function dispatchAvatarUpdated(userId: string) {
if (typeof window === 'undefined') return;
window.dispatchEvent(new CustomEvent(AVATAR_UPDATED_EVENT, { detail: { userId } }));
}
export function dispatchChatRoomAvatarUpdated(roomId: string) {
if (typeof window === 'undefined') return;
window.dispatchEvent(new CustomEvent(CHAT_ROOM_AVATAR_UPDATED_EVENT, { detail: { roomId } }));
}