Disable clicking on the currently active channel
channel.id does not change, which causes some wonky behaviour when the channel gets trimmed
This commit is contained in:
parent
a26fcb45b4
commit
3f3a22aa1e
@ -103,11 +103,16 @@ window.vueMounted = () => {
|
|||||||
// sidebar specifically. Needs to be done better when window management gets
|
// sidebar specifically. Needs to be done better when window management gets
|
||||||
// refactored.
|
// refactored.
|
||||||
const inSidebar = self.parents("#sidebar, #footer").length > 0;
|
const inSidebar = self.parents("#sidebar, #footer").length > 0;
|
||||||
let channel;
|
const channel = inSidebar ? findChannel(Number(self.attr("data-id"))) : null;
|
||||||
|
|
||||||
if (vueApp.activeChannel) {
|
if (vueApp.activeChannel) {
|
||||||
const {channel: lastChannel} = vueApp.activeChannel;
|
const {channel: lastChannel} = vueApp.activeChannel;
|
||||||
|
|
||||||
|
// If user clicks on the currently active channel, do nothing
|
||||||
|
if (channel && lastChannel === channel.channel) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (lastChannel.messages.length > 0) {
|
if (lastChannel.messages.length > 0) {
|
||||||
lastChannel.firstUnread = lastChannel.messages[lastChannel.messages.length - 1].id;
|
lastChannel.firstUnread = lastChannel.messages[lastChannel.messages.length - 1].id;
|
||||||
}
|
}
|
||||||
@ -119,8 +124,6 @@ window.vueMounted = () => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (inSidebar) {
|
if (inSidebar) {
|
||||||
channel = findChannel(Number(self.attr("data-id")));
|
|
||||||
|
|
||||||
vueApp.activeChannel = channel;
|
vueApp.activeChannel = channel;
|
||||||
|
|
||||||
if (channel) {
|
if (channel) {
|
||||||
|
Loading…
Reference in New Issue
Block a user