Skip to content

Commit

Permalink
shorten long line of IssuesHelper
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.redmine.org/redmine/trunk@20523 e93f8b46-1217-0410-a6f0-8f06a7374b81
  • Loading branch information
Toshi MARUYAMA committed Nov 30, 2020
1 parent 5f1bce0 commit 40c771b
Showing 1 changed file with 48 additions and 7 deletions.
55 changes: 48 additions & 7 deletions app/helpers/issues_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,55 @@ def issue_history_tabs
if @journals.present?
journals_without_notes = @journals.select{|value| value.notes.blank?}
journals_with_notes = @journals.reject{|value| value.notes.blank?}

tabs << {:name => 'history', :label => :label_history, :onclick => 'showIssueHistory("history", this.href)', :partial => 'issues/tabs/history', :locals => {:issue => @issue, :journals => @journals}}
tabs << {:name => 'notes', :label => :label_issue_history_notes, :onclick => 'showIssueHistory("notes", this.href)'} if journals_with_notes.any?
tabs << {:name => 'properties', :label => :label_issue_history_properties, :onclick => 'showIssueHistory("properties", this.href)'} if journals_without_notes.any?
tabs <<
{
:name => 'history',
:label => :label_history,
:onclick => 'showIssueHistory("history", this.href)',
:partial => 'issues/tabs/history',
:locals => {:issue => @issue, :journals => @journals}
}
if journals_with_notes.any?
tabs <<
{
:name => 'notes',
:label => :label_issue_history_notes,
:onclick => 'showIssueHistory("notes", this.href)'
}
end
if journals_without_notes.any?
tabs <<
{
:name => 'properties',
:label => :label_issue_history_properties,
:onclick => 'showIssueHistory("properties", this.href)'
}
end
end
if User.current.allowed_to?(:view_time_entries, @project) && @issue.spent_hours > 0
tabs <<
{
:name => 'time_entries',
:label => :label_time_entry_plural,
:remote => true,
:onclick =>
"getRemoteTab('time_entries', " \
"'#{tab_issue_path(@issue, :name => 'time_entries')}', " \
"'#{issue_path(@issue, :tab => 'time_entries')}')"
}
end
if @has_changesets
tabs <<
{
:name => 'changesets',
:label => :label_associated_revisions,
:remote => true,
:onclick =>
"getRemoteTab('changesets', " \
"'#{tab_issue_path(@issue, :name => 'changesets')}', " \
"'#{issue_path(@issue, :tab => 'changesets')}')"
}
end
tabs << {:name => 'time_entries', :label => :label_time_entry_plural, :remote => true, :onclick => "getRemoteTab('time_entries', '#{tab_issue_path(@issue, :name => 'time_entries')}', '#{issue_path(@issue, :tab => 'time_entries')}')"} if User.current.allowed_to?(:view_time_entries, @project) && @issue.spent_hours > 0
tabs << {:name => 'changesets', :label => :label_associated_revisions, :remote => true, :onclick => "getRemoteTab('changesets', '#{tab_issue_path(@issue, :name => 'changesets')}', '#{issue_path(@issue, :tab => 'changesets')}')"} if @has_changesets
tabs
end

Expand All @@ -648,5 +690,4 @@ def issue_history_default_tab
user_default_tab
end
end

end

0 comments on commit 40c771b

Please sign in to comment.