mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 12:53:42 +08:00
FIX: corrects a regression hiding avatar in user selector (#20107)
Due to the way templates work, the incorrect variable (user instead of item) was not causing any error, and just failing silently to display the avatar. This commit is also providing a basic spec for completion of users and groups.
This commit is contained in:
parent
5c699e4384
commit
df50df041a
|
@ -4,7 +4,7 @@
|
|||
{{#if item.isUser}}
|
||||
<li>
|
||||
<a href title="{{item.name}}" class="{{item.cssClasses}}">
|
||||
{{avatar user imageSize="tiny"}}
|
||||
{{avatar item imageSize="tiny"}}
|
||||
<span class='username'>{{format-username item.username}}</span>
|
||||
{{#if item.name}}
|
||||
<span class='name'>{{item.name}}</span>
|
||||
|
|
38
spec/system/user_selector_spec.rb
Normal file
38
spec/system/user_selector_spec.rb
Normal file
|
@ -0,0 +1,38 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
describe "User selector", type: :system, js: true do
|
||||
fab!(:topic) { Fabricate(:topic) }
|
||||
fab!(:post) { Fabricate(:post, topic: topic) }
|
||||
fab!(:current_user) { Fabricate(:admin) }
|
||||
|
||||
before do
|
||||
current_user.activate
|
||||
sign_in(current_user)
|
||||
end
|
||||
|
||||
context "when autocompleting a username" do
|
||||
it "correctly shows the user" do
|
||||
visit("/t/-/#{topic.id}")
|
||||
find(".btn-primary.create").click
|
||||
find(".d-editor-input").fill_in(with: "Hello @dis")
|
||||
|
||||
within(".autocomplete.ac-user") do |el|
|
||||
expect(el).to have_selector(".selected .avatar[title=discobot]")
|
||||
expect(el.find(".selected .username")).to have_content("discobot")
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
context "when autocompleting a group" do
|
||||
it "correctly shows the user" do
|
||||
visit("/t/-/#{topic.id}")
|
||||
find(".btn-primary.create").click
|
||||
find(".d-editor-input").fill_in(with: "Hello @adm")
|
||||
|
||||
within(".autocomplete.ac-user") do |el|
|
||||
expect(el).to have_selector(".selected .d-icon-users")
|
||||
expect(el.find(".selected .username")).to have_content("admins")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in New Issue
Block a user