FIX: Tweak the unread channel shortcut key behaviour (#29874)
This commit is contained in:
parent
acc87202b9
commit
f1bf63f89c
|
@ -131,7 +131,6 @@ export default class ChatChannelsManager extends Service {
|
||||||
.sort((a, b) => a?.slug?.localeCompare?.(b?.slug));
|
.sort((a, b) => a?.slug?.localeCompare?.(b?.slug));
|
||||||
}
|
}
|
||||||
|
|
||||||
@cached
|
|
||||||
get publicMessageChannelsWithActivity() {
|
get publicMessageChannelsWithActivity() {
|
||||||
return this.publicMessageChannels.filter((channel) => channel.hasUnread);
|
return this.publicMessageChannels.filter((channel) => channel.hasUnread);
|
||||||
}
|
}
|
||||||
|
@ -150,7 +149,6 @@ export default class ChatChannelsManager extends Service {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@cached
|
|
||||||
get directMessageChannelsWithActivity() {
|
get directMessageChannelsWithActivity() {
|
||||||
return this.directMessageChannels.filter((channel) => channel.hasUnread);
|
return this.directMessageChannels.filter((channel) => channel.hasUnread);
|
||||||
}
|
}
|
||||||
|
|
|
@ -313,9 +313,21 @@ export default class Chat extends Service {
|
||||||
|
|
||||||
// Insert the active channel after unread channel we found (or at the start of the list)
|
// Insert the active channel after unread channel we found (or at the start of the list)
|
||||||
if (activeChannel.isDirectMessageChannel) {
|
if (activeChannel.isDirectMessageChannel) {
|
||||||
directChannels.splice(checkChannelIndex + 1, 0, activeChannel);
|
const unreadChannelIndex =
|
||||||
|
checkChannelIndex < 0
|
||||||
|
? 0
|
||||||
|
: directChannels.findIndex(
|
||||||
|
(c) => c.id === allChannels[checkChannelIndex].id
|
||||||
|
);
|
||||||
|
directChannels.splice(unreadChannelIndex + 1, 0, activeChannel);
|
||||||
} else {
|
} else {
|
||||||
publicChannels.splice(checkChannelIndex + 1, 0, activeChannel);
|
const unreadChannelIndex =
|
||||||
|
checkChannelIndex < 0
|
||||||
|
? -1
|
||||||
|
: publicChannels.findIndex(
|
||||||
|
(c) => c.id === allChannels[checkChannelIndex].id
|
||||||
|
);
|
||||||
|
publicChannels.splice(unreadChannelIndex + 1, 0, activeChannel);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -52,6 +52,7 @@ RSpec.describe "Shortcuts | sidebar", type: :system do
|
||||||
fab!(:channel_1) { Fabricate(:chat_channel, name: "Channel 1") }
|
fab!(:channel_1) { Fabricate(:chat_channel, name: "Channel 1") }
|
||||||
fab!(:channel_2) { Fabricate(:chat_channel, name: "Channel 2") }
|
fab!(:channel_2) { Fabricate(:chat_channel, name: "Channel 2") }
|
||||||
fab!(:channel_3) { Fabricate(:chat_channel, name: "Channel 3") }
|
fab!(:channel_3) { Fabricate(:chat_channel, name: "Channel 3") }
|
||||||
|
fab!(:channel_4) { Fabricate(:chat_channel, name: "Channel 4") }
|
||||||
fab!(:dm_channel_1) { Fabricate(:direct_message_channel, users: [current_user]) }
|
fab!(:dm_channel_1) { Fabricate(:direct_message_channel, users: [current_user]) }
|
||||||
fab!(:other_user) { Fabricate(:user) }
|
fab!(:other_user) { Fabricate(:user) }
|
||||||
fab!(:dm_channel_2) { Fabricate(:direct_message_channel, users: [current_user, other_user]) }
|
fab!(:dm_channel_2) { Fabricate(:direct_message_channel, users: [current_user, other_user]) }
|
||||||
|
@ -60,6 +61,7 @@ RSpec.describe "Shortcuts | sidebar", type: :system do
|
||||||
channel_1.add(current_user)
|
channel_1.add(current_user)
|
||||||
channel_2.add(current_user)
|
channel_2.add(current_user)
|
||||||
channel_3.add(current_user)
|
channel_3.add(current_user)
|
||||||
|
channel_4.add(current_user)
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when on homepage" do
|
context "when on homepage" do
|
||||||
|
@ -140,19 +142,61 @@ RSpec.describe "Shortcuts | sidebar", type: :system do
|
||||||
end
|
end
|
||||||
|
|
||||||
it "remembers where the current channel is, even if that channel is unread" do
|
it "remembers where the current channel is, even if that channel is unread" do
|
||||||
|
chat.visit_channel(channel_3)
|
||||||
|
expect(sidebar_page).to have_active_channel(channel_3)
|
||||||
|
|
||||||
|
Fabricate(:chat_message, chat_channel: channel_2, message: "hello!", use_service: true)
|
||||||
|
expect(sidebar_page).to have_unread_channel(channel_2)
|
||||||
|
|
||||||
|
Fabricate(:chat_message, chat_channel: channel_4, message: "yes, hello!", use_service: true)
|
||||||
|
expect(sidebar_page).to have_unread_channel(channel_4)
|
||||||
|
|
||||||
|
find("body").send_keys(%i[alt shift arrow_down])
|
||||||
|
|
||||||
|
expect(sidebar_page).to have_active_channel(channel_4)
|
||||||
|
expect(sidebar_page).to have_no_unread_channel(channel_4)
|
||||||
|
|
||||||
|
Fabricate(
|
||||||
|
:chat_message,
|
||||||
|
chat_channel: channel_3,
|
||||||
|
message: "hello, here, too!",
|
||||||
|
use_service: true,
|
||||||
|
)
|
||||||
|
expect(sidebar_page).to have_unread_channel(channel_3)
|
||||||
|
|
||||||
|
find("body").send_keys(%i[alt shift arrow_up])
|
||||||
|
|
||||||
|
expect(sidebar_page).to have_active_channel(channel_3)
|
||||||
|
expect(sidebar_page).to have_no_unread_channel(channel_3)
|
||||||
|
|
||||||
|
Fabricate(
|
||||||
|
:chat_message,
|
||||||
|
chat_channel: channel_4,
|
||||||
|
message: "okay, byebye!",
|
||||||
|
use_service: true,
|
||||||
|
)
|
||||||
|
expect(sidebar_page).to have_unread_channel(channel_4)
|
||||||
|
|
||||||
|
find("body").send_keys(%i[alt shift arrow_up])
|
||||||
|
|
||||||
|
expect(sidebar_page).to have_active_channel(channel_2)
|
||||||
|
expect(sidebar_page).to have_no_unread_channel(channel_2)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "handles the shortcut being pressed quickly" do
|
||||||
chat.visit_channel(channel_2)
|
chat.visit_channel(channel_2)
|
||||||
expect(sidebar_page).to have_active_channel(channel_2)
|
expect(sidebar_page).to have_active_channel(channel_2)
|
||||||
|
|
||||||
Fabricate(:chat_message, chat_channel: channel_1, message: "hello!", use_service: true)
|
Fabricate(:chat_message, chat_channel: channel_1, message: "hello!", use_service: true)
|
||||||
expect(sidebar_page).to have_unread_channel(channel_1)
|
expect(sidebar_page).to have_unread_channel(channel_1)
|
||||||
|
|
||||||
Fabricate(:chat_message, chat_channel: channel_3, message: "hello!", use_service: true)
|
Fabricate(:chat_message, chat_channel: channel_4, message: "howdy!", use_service: true)
|
||||||
expect(sidebar_page).to have_unread_channel(channel_3)
|
expect(sidebar_page).to have_unread_channel(channel_4)
|
||||||
|
|
||||||
|
find("body").send_keys(%i[alt shift arrow_up])
|
||||||
find("body").send_keys(%i[alt shift arrow_down])
|
find("body").send_keys(%i[alt shift arrow_down])
|
||||||
|
|
||||||
expect(sidebar_page).to have_active_channel(channel_3)
|
expect(sidebar_page).to have_active_channel(channel_4)
|
||||||
expect(sidebar_page).to have_no_unread_channel(channel_3)
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue