diff --git a/src/broker/delegate.ts b/src/broker/delegate.ts index f2baeb9a..b88d6398 100644 --- a/src/broker/delegate.ts +++ b/src/broker/delegate.ts @@ -53,7 +53,7 @@ class BrokerDelegate implements ProseClientDelegate { this.__eventBus.emit("client:disconnected"); } - async composingUsersChanged(client: ProseClient, room: Room): Promise { + async composingUsersChanged(_client: ProseClient, room: Room): Promise { const composingUsers = await room.loadComposingUsers(); logger.info( @@ -63,7 +63,7 @@ class BrokerDelegate implements ProseClientDelegate { // TODO: Handle multiple composing users in the UI } - roomsChanged(_client: ProseClient): void { + roomsChanged(): void { Store.$muc.markRoomsChanged(); Store.$muc.load(); } @@ -114,7 +114,7 @@ class BrokerDelegate implements ProseClientDelegate { } async messagesUpdated( - client: ProseClient, + _client: ProseClient, room: Room, messageIDs: string[] ): Promise { diff --git a/src/components/base/BaseAlert.vue b/src/components/base/BaseAlert.vue index 1d8dfc87..dce6be6b 100644 --- a/src/components/base/BaseAlert.vue +++ b/src/components/base/BaseAlert.vue @@ -140,16 +140,6 @@ export default { }); }, - created() { - // Bind show event - EventBus.on("show", this.show as Handler); - }, - - beforeUnmount() { - // Unbind show event - EventBus.off("show", this.show as Handler); - }, - computed: { badgeIcon(): string { switch (this.level) { @@ -173,6 +163,16 @@ export default { } }, + created() { + // Bind show event + EventBus.on("show", this.show as Handler); + }, + + beforeUnmount() { + // Unbind show event + EventBus.off("show", this.show as Handler); + }, + methods: { show({ level, diff --git a/src/components/inbox/InboxMessaging.vue b/src/components/inbox/InboxMessaging.vue index b92f4713..ac434050 100644 --- a/src/components/inbox/InboxMessaging.vue +++ b/src/components/inbox/InboxMessaging.vue @@ -83,7 +83,11 @@ import { Platform as MessagingPlatform, Messaging as MessagingRuntime, SeekDirection as MessagingSeekDirection, - Theme as MessagingTheme + Theme as MessagingTheme, + EventMessageActionsView, + EventMessageReactionsView, + EventMessageReactionsReact, + EventMessageHistorySeek } from "@prose-im/prose-core-views/types/messaging"; // PROJECT: STYLES @@ -1129,7 +1133,6 @@ $c: ".c-inbox-messaging"; justify-content: center; position: absolute; inset: 0; - z-index: 2; } #{$c}__popover { diff --git a/src/components/popups/sidebar/EditProfileEncryptionDeviceOther.vue b/src/components/popups/sidebar/EditProfileEncryptionDeviceOther.vue index eee58870..f588fa8b 100644 --- a/src/components/popups/sidebar/EditProfileEncryptionDeviceOther.vue +++ b/src/components/popups/sidebar/EditProfileEncryptionDeviceOther.vue @@ -115,7 +115,7 @@ export default { methods: { // --> EVENT LISTENERS <-- - onDataTableControlClick(type: DataTableControlType): void { + onDataTableControlClick(): void { // TODO: handle action for type } }