From: Anton Khorev Date: Sat, 22 Mar 2025 23:02:50 +0000 (+0300) Subject: Put changeset comments in
elements X-Git-Tag: live~20^2~1 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/619a8422999acdf0d1acad09a3feb281726868f2 Put changeset comments in
elements --- diff --git a/app/views/changesets/show.html.erb b/app/views/changesets/show.html.erb index 3d9041cab..eb144d332 100644 --- a/app/views/changesets/show.html.erb +++ b/app/views/changesets/show.html.erb @@ -36,35 +36,31 @@ <% end %> - <% if @comments.length > 0 %> -
    - <% @comments.each do |comment| %> - <% next unless comment.visible || current_user&.moderator? %> -
  • - - <%= comment_by_options = { :time_ago => friendly_date_ago(comment.created_at), - :user => link_to(comment.author.display_name, comment.author) } - comment.visible ? t(".comment_by_html", **comment_by_options) : t(".hidden_comment_by_html", **comment_by_options) %> - <% if current_user&.moderator? %> - — - <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"), - :class => "btn btn-sm small btn-link link-secondary p-0 align-baseline", - :data => { :method => comment.visible ? "DELETE" : "POST", - :url => api_changeset_comment_visibility_path(comment) } %> - <% end %> - - - - - - - -
    - <%= comment.body.to_html %> -
    -
  • - <% end %> -
+ <% @comments.each do |comment| %> + <% next unless comment.visible || current_user&.moderator? %> +
+ + <%= comment_by_options = { :time_ago => friendly_date_ago(comment.created_at), + :user => link_to(comment.author.display_name, comment.author) } + comment.visible ? t(".comment_by_html", **comment_by_options) : t(".hidden_comment_by_html", **comment_by_options) %> + <% if current_user&.moderator? %> + — + <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"), + :class => "btn btn-sm small btn-link link-secondary p-0 align-baseline", + :data => { :method => comment.visible ? "DELETE" : "POST", + :url => api_changeset_comment_visibility_path(comment) } %> + <% end %> + + + + + + + +
+ <%= comment.body.to_html %> +
+
<% end %> <% unless current_user %> diff --git a/test/controllers/changesets_controller_test.rb b/test/controllers/changesets_controller_test.rb index 452084951..0f9c4b8ce 100644 --- a/test/controllers/changesets_controller_test.rb +++ b/test/controllers/changesets_controller_test.rb @@ -279,7 +279,7 @@ class ChangesetsControllerTest < ActionDispatch::IntegrationTest sidebar_browse_check :changeset_path, changeset.id, "changesets/show" assert_dom "h2", :text => "Changeset: #{changeset.id}" assert_dom "p", :text => "tested-changeset-comment" - assert_dom "li#c#{changeset_comment.id}" do + assert_dom "article#c#{changeset_comment.id}" do assert_dom "> small", :text => /^Comment from #{commenting_user.display_name}/ assert_dom "a[href='#{user_path(commenting_user)}']" end