mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 07:18:06 +08:00
7dafd275ac
- FIX: improves reactions and thread indicator touch event on mobile These "buttons" are located inside a scroll list which makes them very specific. The general idea is to ensure these events are passive and are not bubbling to the parent. - DEV: moves state on top level message node - FIX: ensures popover arrow has the correct border - FIX: makes a message expanded by default - FIX applies the same ios scroll fix on thread and channel - UI: better active/hover state for thread indicator - UI: attempts to follow more closely our BEM naming scheme - FIX: reduces bottom padding on message with thread indicator and user info hidden - UI: add padding for first message in thread - FIX: prevents actions backdrop to open thread - UI: makes thread indicator resizable
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe "Chat message - thread", type: :system do
|
|
fab!(:current_user) { Fabricate(:user) }
|
|
fab!(:other_user) { Fabricate(:user) }
|
|
fab!(:channel_1) { Fabricate(:chat_channel) }
|
|
fab!(:thread_1) do
|
|
chat_thread_chain_bootstrap(channel: channel_1, users: [current_user, other_user])
|
|
end
|
|
|
|
let(:cdp) { PageObjects::CDP.new }
|
|
let(:chat) { PageObjects::Pages::Chat.new }
|
|
let(:thread_page) { PageObjects::Pages::ChatThread.new }
|
|
let(:message_1) { thread_1.chat_messages.first }
|
|
|
|
before do
|
|
chat_system_bootstrap
|
|
channel_1.update!(threading_enabled: true)
|
|
channel_1.add(current_user)
|
|
channel_1.add(other_user)
|
|
SiteSetting.enable_experimental_chat_threaded_discussions = true
|
|
sign_in(current_user)
|
|
end
|
|
|
|
context "when hovering a message" do
|
|
it "adds an active class" do
|
|
first_message = thread_1.chat_messages.first
|
|
chat.visit_thread(thread_1)
|
|
|
|
thread_page.hover_message(first_message)
|
|
|
|
expect(page).to have_css(
|
|
".chat-thread[data-id='#{thread_1.id}'] [data-id='#{first_message.id}'].chat-message-container.-active",
|
|
)
|
|
end
|
|
end
|
|
|
|
context "when copying link to a message" do
|
|
before { cdp.allow_clipboard }
|
|
|
|
it "copies the link to the thread" do
|
|
chat.visit_thread(thread_1)
|
|
|
|
thread_page.copy_link(message_1)
|
|
|
|
expect(cdp.read_clipboard).to include("/chat/c/-/#{channel_1.id}/t/#{thread_1.id}")
|
|
end
|
|
end
|
|
end
|