]> git.openstreetmap.org Git - rails.git/blob - app/views/changesets/show.html.erb
Merge remote-tracking branch 'upstream/pull/4895'
[rails.git] / app / views / changesets / show.html.erb
1 <% set_title(t(".title", :id => @changeset.id)) %>
2
3 <%= render "sidebar_header", :title => t(".title", :id => @changeset.id) %>
4
5 <div class="browse-section">
6   <p class="fs-6 overflow-x-auto">
7     <%= linkify(@changeset.tags["comment"].to_s.presence || t("browse.no_comment")) %>
8   </p>
9   <p class="details"><%= changeset_details(@changeset) %></p>
10
11   <%= render :partial => "browse/tag_details", :object => @changeset.tags.except("comment") %>
12
13   <div class="row">
14     <div class="col">
15       <h4><%= t(".discussion") %></h4>
16     </div>
17
18     <% if current_user %>
19       <div class="col-auto">
20         <% if @changeset.subscribers.exists?(current_user.id) %>
21           <%= tag.button t(".unsubscribe"),
22                          :class => "btn btn-sm btn-primary",
23                          :name => "unsubscribe",
24                          :data => { :method => "POST",
25                                     :url => api_changeset_unsubscribe_url(@changeset) } %>
26         <% else %>
27           <%= tag.button t(".subscribe"),
28                          :class => "btn btn-sm btn-primary",
29                          :name => "subscribe",
30                          :data => { :method => "POST",
31                                     :url => api_changeset_subscribe_url(@changeset) } %>
32         <% end %>
33       </div>
34     <% end %>
35   </div>
36
37   <% if @comments.length > 0 %>
38     <ul class="list-unstyled">
39       <% @comments.each do |comment| %>
40         <% next unless comment.visible || current_user&.moderator? %>
41         <li id="c<%= comment.id %>">
42           <small class='text-body-secondary'>
43             <%= t comment.visible ? ".comment_by_html" : ".hidden_comment_by_html",
44                   :time_ago => friendly_date_ago(comment.created_at),
45                   :user => link_to(comment.author.display_name, comment.author) %>
46             <% if current_user&.moderator? %>
47               —
48               <%= tag.button t(".#{comment.visible ? 'hide' : 'unhide'}_comment"),
49                              :class => "btn btn-sm small btn-link link-secondary p-0 align-baseline",
50                              :data => { :method => "POST",
51                                         :url => comment.visible ? changeset_comment_hide_url(comment) : changeset_comment_unhide_url(comment) } %>
52             <% end %>
53           </small>
54           <div class="mx-2">
55             <%= comment.body.to_html %>
56           </div>
57         </li>
58       <% end %>
59     </ul>
60   <% end %>
61
62   <% unless current_user %>
63     <p>
64       <%= link_to(t(".join_discussion"), login_path(:referer => request.fullpath)) %>
65     </p>
66   <% end %>
67
68   <% if current_user %>
69     <% unless @changeset.open? %>
70       <form action="#" class="mb-3">
71         <div class="mb-3">
72           <textarea class="form-control" name="text" cols="40" rows="5"></textarea>
73         </div>
74         <div id="comment-error" class="alert alert-danger p-2 mb-3" hidden>
75         </div>
76         <div>
77           <%= tag.button t(".comment"),
78                          :class => "btn btn-primary",
79                          :name => "comment",
80                          :disabled => true,
81                          :data => { :method => "POST",
82                                     :url => changeset_comment_url(@changeset) } %>
83         </div>
84       </form>
85     <% else %>
86       <p>
87         <%= t(".still_open") %>
88       </p>
89     <% end %>
90   <% end %>
91
92   <% unless @ways.empty? %>
93     <%= render :partial => "paging_nav", :locals => { :type => "way", :pages => @way_pages } %>
94     <ul class="list-unstyled">
95       <% @ways.each do |way| %>
96         <%= element_list_item "way", way do
97               t "printable_name.current_and_old_links_html",
98                 :current_link => link_to(printable_element_name(way), way_path(way.way_id)),
99                 :old_link => link_to(printable_element_version(way), old_way_path(way.way_id, way.version))
100             end %>
101       <% end %>
102     </ul>
103   <% end %>
104
105   <% unless @relations.empty? %>
106     <%= render :partial => "paging_nav", :locals => { :type => "relation", :pages => @relation_pages } %>
107     <ul class="list-unstyled">
108       <% @relations.each do |relation| %>
109         <%= element_list_item "relation", relation do
110               t "printable_name.current_and_old_links_html",
111                 :current_link => link_to(printable_element_name(relation), relation_path(relation.relation_id)),
112                 :old_link => link_to(printable_element_version(relation), old_relation_path(relation.relation_id, relation.version))
113             end %>
114       <% end %>
115     </ul>
116   <% end %>
117
118   <% unless @nodes.empty? %>
119     <%= render :partial => "paging_nav", :locals => { :type => "node", :pages => @node_pages } %>
120     <ul class="list-unstyled">
121       <% @nodes.each do |node| %>
122         <%= element_list_item "node", node do
123               t "printable_name.current_and_old_links_html",
124                 :current_link => link_to(printable_element_name(node), node_path(node.node_id), { :rel => link_follow(node) }),
125                 :old_link => link_to(printable_element_version(node), old_node_path(node.node_id, node.version), { :rel => link_follow(node) })
126             end %>
127       <% end %>
128     </ul>
129   <% end %>
130 </div>
131
132 <div class='secondary-actions'>
133   <%= link_to(t(".changesetxml"), :controller => "api/changesets", :action => "show") %>
134   &middot;
135   <%= link_to(t(".osmchangexml"), :controller => "api/changesets", :action => "download") %>
136 </div>
137
138 <% if @next_by_user || @prev_by_user %>
139   <div class='secondary-actions'>
140     <% if @prev_by_user %>
141       <%= link_to @prev_by_user, :class => "icon-link" do %>
142         <%= previous_page_svg_tag :height => 11 %>
143         <%= @prev_by_user.id %>
144       <% end %>
145       &middot;
146     <% end %>
147     <%= user = (@prev_by_user || @next_by_user).user.display_name
148         link_to tag.bdi(user), :controller => "changesets", :action => "index", :display_name => user %>
149     <% if @next_by_user %>
150       &middot;
151       <%= link_to @next_by_user, :class => "icon-link" do %>
152         <%= @next_by_user.id %>
153         <%= next_page_svg_tag :height => 11 %>
154       <% end %>
155     <% end %>
156   </div>
157 <% end %>