Merge remote-tracking branch 'upstream/pull/5791'

This commit is contained in:
Tom Hughes 2025-03-11 18:30:44 +00:00
commit f871f3d861
4 changed files with 67 additions and 28 deletions

View file

@ -25,18 +25,20 @@ module IssuesHelper
end end
end end
def reportable_dates(reportable) def reportable_heading(reportable)
heading_params = { :title => link_to(reportable_title(reportable), reportable_url(reportable)) }
heading_params[:datetime_created] = reportable_heading_time(reportable.created_at)
heading_params[:datetime_updated] = reportable_heading_time(reportable.updated_at) unless reportable.is_a? User
case reportable case reportable
when DiaryEntry, DiaryComment, Note when DiaryComment
created_at_time = tag.time l(reportable.created_at.to_datetime, :format => :friendly), t "issues.helper.reportable_heading.diary_comment_html", **heading_params
:datetime => reportable.created_at.xmlschema when DiaryEntry
updated_at_time = tag.time l(reportable.updated_at.to_datetime, :format => :friendly), t "issues.helper.reportable_heading.diary_entry_html", **heading_params
:datetime => reportable.updated_at.xmlschema when Note
t "issues.helper.reportable_dates.created_on_updated_on_html", :datetime_created => created_at_time, :datetime_updated => updated_at_time t "issues.helper.reportable_heading.note_html", **heading_params
when User when User
created_at_time = tag.time l(reportable.created_at.to_datetime, :format => :friendly), t "issues.helper.reportable_heading.user_html", **heading_params
:datetime => reportable.created_at.xmlschema
t "issues.helper.reportable_dates.created_on_html", :datetime_created => created_at_time
end end
end end
@ -48,4 +50,10 @@ module IssuesHelper
tag.span(count, :class => "badge count-number") tag.span(count, :class => "badge count-number")
end end
end end
private
def reportable_heading_time(datetime)
tag.time l(datetime.to_datetime, :format => :friendly), :datetime => datetime.xmlschema
end
end end

View file

@ -1,10 +1,6 @@
<% content_for :heading do %> <% content_for :heading do %>
<h1><%= @title %></h1> <h1><%= @title %></h1>
<p> <p><%= reportable_heading @issue.reportable %></p>
<%= @issue.reportable.model_name.human %> :
<%= link_to reportable_title(@issue.reportable), reportable_url(@issue.reportable) %> :
<%= reportable_dates(@issue.reportable) %>
</p>
<p class="text-body-secondary"> <p class="text-body-secondary">
<small> <small>
<%= @issue.assigned_role %> <%= @issue.assigned_role %>

View file

@ -1607,9 +1607,11 @@ en:
reportable_title: reportable_title:
diary_comment: "%{entry_title}, comment #%{comment_id}" diary_comment: "%{entry_title}, comment #%{comment_id}"
note: "Note #%{note_id}" note: "Note #%{note_id}"
reportable_dates: reportable_heading:
created_on_html: "created on %{datetime_created}" diary_comment_html: "Diary Comment %{title} created on %{datetime_created}, updated on %{datetime_updated}"
created_on_updated_on_html: "created on %{datetime_created}, updated on %{datetime_updated}" diary_entry_html: "Diary Entry %{title} created on %{datetime_created}, updated on %{datetime_updated}"
note_html: "%{title} created on %{datetime_created}, updated on %{datetime_updated}"
user_html: "User %{title} created on %{datetime_created}"
reporters: reporters:
index: index:
title: "Issue #%{issue_id} Reporters" title: "Issue #%{issue_id} Reporters"

View file

@ -3,22 +3,55 @@ require "test_helper"
class IssuesHelperTest < ActionView::TestCase class IssuesHelperTest < ActionView::TestCase
attr_accessor :current_user attr_accessor :current_user
def test_reportable_dates_note def test_reportable_heading_diary_comment
note = create(:note, :created_at => "2020-03-14", :updated_at => "2021-05-16") create(:language, :code => "en")
diary_entry = create(:diary_entry, :title => "A Discussion")
diary_comment = create(:diary_comment, :diary_entry => diary_entry, :created_at => "2020-03-15", :updated_at => "2021-05-17")
dates = reportable_dates note heading = reportable_heading diary_comment
dom_dates = Rails::Dom::Testing.html_document_fragment.parse "<p>#{dates}</p>" dom_heading = Rails::Dom::Testing.html_document_fragment.parse "<p>#{heading}</p>"
assert_dom dom_dates, ":root", "created on 14 March 2020 at 00:00, updated on 16 May 2021 at 00:00" assert_dom dom_heading, ":root", "Diary Comment A Discussion, comment ##{diary_comment.id} created on 15 March 2020 at 00:00, updated on 17 May 2021 at 00:00"
assert_dom dom_heading, "a", 1 do
assert_dom "> @href", diary_entry_url(diary_entry.user, diary_entry, :anchor => "comment#{diary_comment.id}")
end
end end
def test_reportable_dates_user def test_reportable_heading_diary_entry
user = create(:user, :created_at => "2020-07-18") create(:language, :code => "en")
diary_entry = create(:diary_entry, :title => "Important Subject", :created_at => "2020-03-24", :updated_at => "2021-05-26")
dates = reportable_dates user heading = reportable_heading diary_entry
dom_dates = Rails::Dom::Testing.html_document_fragment.parse "<p>#{dates}</p>" dom_heading = Rails::Dom::Testing.html_document_fragment.parse "<p>#{heading}</p>"
assert_dom dom_dates, ":root", "created on 18 July 2020 at 00:00" assert_dom dom_heading, ":root", "Diary Entry Important Subject created on 24 March 2020 at 00:00, updated on 26 May 2021 at 00:00"
assert_dom dom_heading, "a", 1 do
assert_dom "> @href", diary_entry_url(diary_entry.user, diary_entry)
end
end
def test_reportable_heading_note
note = create(:note, :created_at => "2020-03-14", :updated_at => "2021-05-16")
heading = reportable_heading note
dom_heading = Rails::Dom::Testing.html_document_fragment.parse "<p>#{heading}</p>"
assert_dom dom_heading, ":root", "Note ##{note.id} created on 14 March 2020 at 00:00, updated on 16 May 2021 at 00:00"
assert_dom dom_heading, "a", 1 do
assert_dom "> @href", note_url(note)
end
end
def test_reportable_heading_user
user = create(:user, :display_name => "Someone", :created_at => "2020-07-18")
heading = reportable_heading user
dom_heading = Rails::Dom::Testing.html_document_fragment.parse "<p>#{heading}</p>"
assert_dom dom_heading, ":root", "User Someone created on 18 July 2020 at 00:00"
assert_dom dom_heading, "a", 1 do
assert_dom "> @href", user_url(user)
end
end end
def test_issues_count def test_issues_count