<%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
<div class="browse-section">
- <p class="fst-italic">
+ <p class="fs-6 overflow-x-auto">
<%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
</p>
<p class="details"><%= changeset_details(@changeset) %></p>
<% if current_user %>
<div class="col-auto">
<% if @changeset.subscribers.exists?(current_user.id) %>
- <button class="btn btn-sm btn-primary" name="unsubscribe" data-method="POST" data-url="<%= api_changeset_unsubscribe_url(@changeset) %>"><%= t("javascripts.changesets.show.unsubscribe") %></button>
+ <%= tag.button t(".unsubscribe"),
+ :class => "btn btn-sm btn-primary",
+ :name => "unsubscribe",
+ :data => { :method => "POST",
+ :url => api_changeset_unsubscribe_url(@changeset) } %>
<% else %>
- <button class="btn btn-sm btn-primary" name="subscribe" data-method="POST" data-url="<%= api_changeset_subscribe_url(@changeset) %>"><%= t("javascripts.changesets.show.subscribe") %></button>
+ <%= tag.button t(".subscribe"),
+ :class => "btn btn-sm btn-primary",
+ :name => "subscribe",
+ :data => { :method => "POST",
+ :url => api_changeset_subscribe_url(@changeset) } %>
<% end %>
</div>
<% end %>
<% next unless comment.visible || current_user&.moderator? %>
<li id="c<%= comment.id %>">
<small class='text-body-secondary'>
- <%= t comment.visible ? ".comment_by_html" : ".hidden_comment_by_html",
- :time_ago => friendly_date_ago(comment.created_at),
- :user => link_to(comment.author.display_name, comment.author) %>
+ <%= 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("javascripts.changesets.show.#{comment.visible ? 'hide' : 'unhide'}_comment"),
+ <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"),
:class => "btn btn-sm small btn-link link-secondary p-0 align-baseline",
:data => { :method => "POST",
:url => comment.visible ? changeset_comment_hide_url(comment) : changeset_comment_unhide_url(comment) } %>
<div id="comment-error" class="alert alert-danger p-2 mb-3" hidden>
</div>
<div>
- <button name="comment" data-method="POST" data-url="<%= changeset_comment_url(@changeset) %>" disabled class="btn btn-sm btn-primary"><%= t("javascripts.changesets.show.comment") %></button>
+ <%= tag.button t(".comment"),
+ :class => "btn btn-primary",
+ :name => "comment",
+ :disabled => true,
+ :data => { :method => "POST",
+ :url => changeset_comment_url(@changeset) } %>
</div>
</form>
<% else %>
<% end %>
<% unless @ways.empty? %>
- <%= render :partial => "paging_nav", :locals => { :type => "way", :pages => @way_pages } %>
- <ul class="list-unstyled">
- <% @ways.each do |way| %>
- <%= element_list_item "way", way do
- t "printable_name.current_and_old_links_html",
- :current_link => link_to(printable_element_name(way), way_path(way.way_id)),
- :old_link => link_to(printable_element_version(way), old_way_path(way.way_id, way.version))
- end %>
- <% end %>
- </ul>
+ <%= render :partial => "elements", :locals => { :type => "way", :elements => @ways, :pages => @way_pages } %>
<% end %>
<% unless @relations.empty? %>
- <%= render :partial => "paging_nav", :locals => { :type => "relation", :pages => @relation_pages } %>
- <ul class="list-unstyled">
- <% @relations.each do |relation| %>
- <%= element_list_item "relation", relation do
- t "printable_name.current_and_old_links_html",
- :current_link => link_to(printable_element_name(relation), relation_path(relation.relation_id)),
- :old_link => link_to(printable_element_version(relation), old_relation_path(relation.relation_id, relation.version))
- end %>
- <% end %>
- </ul>
+ <%= render :partial => "elements", :locals => { :type => "relation", :elements => @relations, :pages => @relation_pages } %>
<% end %>
<% unless @nodes.empty? %>
- <%= render :partial => "paging_nav", :locals => { :type => "node", :pages => @node_pages } %>
- <ul class="list-unstyled">
- <% @nodes.each do |node| %>
- <%= element_list_item "node", node do
- t "printable_name.current_and_old_links_html",
- :current_link => link_to(printable_element_name(node), node_path(node.node_id), { :rel => link_follow(node) }),
- :old_link => link_to(printable_element_version(node), old_node_path(node.node_id, node.version), { :rel => link_follow(node) })
- end %>
- <% end %>
- </ul>
+ <%= render :partial => "elements", :locals => { :type => "node", :elements => @nodes, :pages => @node_pages } %>
<% end %>
</div>