Skip to content

Commit

Permalink
Replace submitted note table color with created/resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKhorev committed Oct 17, 2024
1 parent c08514b commit 4f4212a
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 9 deletions.
8 changes: 7 additions & 1 deletion app/assets/stylesheets/common.scss
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,13 @@ time[title] {
.table-success {
--bs-table-bg: rgb(var(--bs-success-rgb), .25);
}
.table-primary, .table-secondary, .table-success {
.table-warning {
--bs-table-bg: rgb(var(--bs-warning-rgb), .25);
}
.table-danger {
--bs-table-bg: rgb(var(--bs-danger-rgb), .25);
}
.table-primary, .table-secondary, .table-success, .table-warning, .table-danger {
--bs-table-color: initial;
border-color: inherit;
}
Expand Down
22 changes: 16 additions & 6 deletions app/views/notes/index.html.erb
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
<% content_for :heading do %>
<h1><%= t ".heading", :user => @user.display_name %></h1>
<p><%= t ".subheading_html",
:user => link_to(@user.display_name, @user),
:submitted => tag.span(t(".subheading_submitted"), :class => "px-2 py-1 bg-primary bg-opacity-25"),
:commented => tag.span(t(".subheading_commented"), :class => "px-2 py-1 bg-body") %></p>
<p class="lh-lg"><%= t ".subheading_html",
:user => link_to(@user.display_name, @user),
:submitted => tag.span(t(".subheading_submitted"), :class => "px-2 py-1 bg-danger bg-opacity-25"),
:submitted_and_resolved => tag.span(t(".subheading_submitted_and_resolved"), :class => "px-2 py-1 bg-warning bg-opacity-25"),
:resolved => tag.span(t(".subheading_resolved"), :class => "px-2 py-1 bg-success bg-opacity-25"),
:commented => tag.span(t(".subheading_commented"), :class => "px-2 py-1 bg-body") %></p>
<% end %>

<% if @notes.empty? %>
Expand All @@ -24,7 +26,15 @@
</tr>
</thead>
<% @notes.each do |note| -%>
<tr<% if note.author == @user %> class="table-primary"<% end %>>
<% opened_by_user = note.comments.any? { |comment| comment.author == @user && comment.event == "opened" } %>
<% closed_by_user = note.comments.any? { |comment| comment.author == @user && comment.event == "closed" } %>
<%= tag.tr :class => if opened_by_user && closed_by_user
"table-warning"
elsif opened_by_user
"table-danger"
elsif closed_by_user
"table-success"
end do %>
<td>
<% if note.closed? %>
<%= image_tag("closed_note_marker.svg", :alt => "closed", :width => 25, :height => 40) %>
Expand All @@ -37,7 +47,7 @@
<td><%= note.comments.first.body.to_html %></td>
<td><%= friendly_date_ago(note.created_at) %></td>
<td><%= friendly_date_ago(note.updated_at) %></td>
</tr>
<% end %>
<% end -%>
</table>

Expand Down
6 changes: 4 additions & 2 deletions config/locales/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2957,8 +2957,10 @@ en:
index:
title: "Notes submitted or commented on by %{user}"
heading: "%{user}'s Notes"
subheading_html: "Notes %{submitted} or %{commented} by %{user}"
subheading_submitted: "submitted"
subheading_html: "Notes %{submitted}, %{submitted_and_resolved}, %{resolved} or %{commented} by %{user}"
subheading_submitted: "created"
subheading_submitted_and_resolved: "created and resolved"
subheading_resolved: "resolved"
subheading_commented: "commented on"
no_notes: No notes
id: "Id"
Expand Down

0 comments on commit 4f4212a

Please sign in to comment.