]> git.openstreetmap.org Git - rails.git/blob - app/views/notes/show.html.erb
Merge remote-tracking branch 'upstream/pull/5394'
[rails.git] / app / views / notes / show.html.erb
1 <% set_title(t(".title", :id => @note.id)) %>
2
3 <%= render "sidebar_header", :title => t(".#{@note.status}_title", :note_name => @note.id) %>
4
5 <div>
6   <h4><%= t(".description") %></h4>
7   <div class="overflow-hidden ms-2">
8     <%= h(@note_comments.first.body.to_html) %>
9   </div>
10
11   <div class="details" data-coordinates="<%= @note.lat %>,<%= @note.lon %>" data-status="<%= @note.status %>">
12     <p class="mb-2"><%= note_event("opened", @note.created_at, @note.author) %></p>
13     <% if @note.status == "closed" %>
14       <p class="mb-2"><%= note_event(@note.status, @note.closed_at, @note.all_comments.last.author) %></p>
15     <% end %>
16     <p>
17       <%= t "browse.location" %>
18       <%= link_to t(".coordinates_html",
19                     :latitude => tag.span(number_with_delimiter(@note.lat), :class => "latitude"),
20                     :longitude => tag.span(number_with_delimiter(@note.lon), :class => "longitude")),
21                   root_path(:anchor => "map=18/#{@note.lat}/#{@note.lon}") %>
22     </p>
23   </div>
24
25   <% if @note_comments.find { |comment| comment.author.nil? } -%>
26     <p class='alert alert-warning'><%= t ".anonymous_warning" %></p>
27   <% end -%>
28
29   <div class="row">
30     <div class="col">
31       <h4><%= t(".discussion") %></h4>
32     </div>
33
34     <% if current_user %>
35       <div class="col-auto">
36         <% if @note.subscribers.exists?(current_user.id) %>
37           <%= tag.button t(".unsubscribe"),
38                          :type => "button",
39                          :class => "btn btn-sm btn-primary",
40                          :name => "unsubscribe",
41                          :data => { :method => "DELETE",
42                                     :url => api_note_subscription_path(@note) } %>
43         <% else %>
44           <%= tag.button t(".subscribe"),
45                          :type => "button",
46                          :class => "btn btn-sm btn-primary",
47                          :name => "subscribe",
48                          :data => { :method => "POST",
49                                     :url => api_note_subscription_path(@note) } %>
50         <% end %>
51       </div>
52     <% end %>
53   </div>
54
55   <% if @note_comments.length > 1 %>
56     <div class='note-comments'>
57       <ul class="list-unstyled">
58         <% @note_comments.drop(1).each do |comment| %>
59           <li id="c<%= comment.id %>">
60             <small class='text-body-secondary'><%= note_event(comment.event, comment.created_at, comment.author) %></small>
61             <div class="mx-2">
62               <%= comment.body.to_html %>
63             </div>
64           </li>
65         <% end %>
66       </ul>
67     </div>
68   <% end %>
69
70   <% if @note.status == "open" %>
71     <% if current_user -%>
72       <form class="mb-3" action="#">
73         <div class="mb-3">
74           <textarea class="form-control" name="text" cols="40" rows="5" maxlength="2000"></textarea>
75         </div>
76         <div id="comment-error" class="alert alert-danger p-2 mb-3" hidden>
77         </div>
78         <div class="d-flex flex-wrap gap-1">
79           <% if current_user.moderator? -%>
80             <%= button_tag t(".hide"), :name => "hide", :class => "btn btn-light",
81                                        :data => { :method => "DELETE",
82                                                   :url => api_note_url(@note, "json") } %>
83           <% end -%>
84           <%= button_tag t(".resolve"), :name => "close", :class => "btn btn-primary",
85                                         :data => { :method => "POST",
86                                                    :url => close_api_note_url(@note, "json"),
87                                                    :default_action_text => t(".resolve"),
88                                                    :comment_action_text => t(".comment_and_resolve") } %>
89           <%= button_tag t(".comment"), :name => "comment", :class => "btn btn-primary", :disabled => true,
90                                         :data => { :method => "POST",
91                                                    :url => comment_api_note_url(@note, "json") } %>
92         </div>
93       </form>
94     <% else -%>
95       <p>
96         <%= link_to t(".log_in_to_comment"), login_path(:referer => request.fullpath) %>
97       </p>
98     <% end -%>
99   <% else %>
100     <form class="mb-3" action="#">
101       <input type="hidden" name="text" value="" autocomplete="off">
102       <div id="comment-error" class="alert alert-danger p-2 mb-3" hidden>
103       </div>
104       <div class="d-flex flex-wrap gap-1">
105         <% if @note.status != "hidden" and current_user and current_user.moderator? -%>
106           <%= button_tag t(".hide"), :name => "hide", :class => "btn btn-light",
107                                      :data => { :method => "DELETE",
108                                                 :url => api_note_url(@note, "json") } %>
109         <% end -%>
110         <% if current_user -%>
111           <%= button_tag t(".reactivate"), :name => "reopen", :class => "btn btn-primary",
112                                            :data => { :method => "POST",
113                                                       :url => reopen_api_note_url(@note, "json") } %>
114         <% end -%>
115       </div>
116     </form>
117   <% end %>
118
119   <% if current_user && current_user != @note.author %>
120     <p>
121       <small class="text-body-secondary">
122         <%= t ".report_link_html", :link => report_link(t(".report"), @note) %>
123         <% if @note.status == "open" %>
124           <%= t ".other_problems_resolve", :link => report_link(t(".report"), @note) %>
125         <% elsif @note.status == "closed" %>
126           <%= t ".other_problems_resolved" %>
127         <% end %>
128       </small>
129     </p>
130   <% end %>
131
132   <% if @note.freshly_closed? %>
133     <small class="text-body-secondary">
134       <%= t ".disappear_date_html", :disappear_in => friendly_date(@note.freshly_closed_until) %>
135     </small>
136   <% end %>
137 </div>