##// END OF EJS Templates
Wrong CSS classes in subtasks tree (#23391)....
Jean-Philippe Lang -
r15357:1fad99ebe388
parent child
Show More
@@ -1,479 +1,479
1 1 # encoding: utf-8
2 2 #
3 3 # Redmine - project management software
4 4 # Copyright (C) 2006-2016 Jean-Philippe Lang
5 5 #
6 6 # This program is free software; you can redistribute it and/or
7 7 # modify it under the terms of the GNU General Public License
8 8 # as published by the Free Software Foundation; either version 2
9 9 # of the License, or (at your option) any later version.
10 10 #
11 11 # This program is distributed in the hope that it will be useful,
12 12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 14 # GNU General Public License for more details.
15 15 #
16 16 # You should have received a copy of the GNU General Public License
17 17 # along with this program; if not, write to the Free Software
18 18 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 19
20 20 module IssuesHelper
21 21 include ApplicationHelper
22 22 include Redmine::Export::PDF::IssuesPdfHelper
23 23
24 24 def issue_list(issues, &block)
25 25 ancestors = []
26 26 issues.each do |issue|
27 27 while (ancestors.any? && !issue.is_descendant_of?(ancestors.last))
28 28 ancestors.pop
29 29 end
30 30 yield issue, ancestors.size
31 31 ancestors << issue unless issue.leaf?
32 32 end
33 33 end
34 34
35 35 def grouped_issue_list(issues, query, issue_count_by_group, &block)
36 36 ancestors = []
37 37 grouped_query_results(issues, query, issue_count_by_group) do |issue, group_name, group_count, group_totals|
38 38 while (ancestors.any? && !issue.is_descendant_of?(ancestors.last))
39 39 ancestors.pop
40 40 end
41 41 yield issue, ancestors.size, group_name, group_count, group_totals
42 42 ancestors << issue unless issue.leaf?
43 43 end
44 44 end
45 45
46 46 # Renders a HTML/CSS tooltip
47 47 #
48 48 # To use, a trigger div is needed. This is a div with the class of "tooltip"
49 49 # that contains this method wrapped in a span with the class of "tip"
50 50 #
51 51 # <div class="tooltip"><%= link_to_issue(issue) %>
52 52 # <span class="tip"><%= render_issue_tooltip(issue) %></span>
53 53 # </div>
54 54 #
55 55 def render_issue_tooltip(issue)
56 56 @cached_label_status ||= l(:field_status)
57 57 @cached_label_start_date ||= l(:field_start_date)
58 58 @cached_label_due_date ||= l(:field_due_date)
59 59 @cached_label_assigned_to ||= l(:field_assigned_to)
60 60 @cached_label_priority ||= l(:field_priority)
61 61 @cached_label_project ||= l(:field_project)
62 62
63 63 link_to_issue(issue) + "<br /><br />".html_safe +
64 64 "<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />".html_safe +
65 65 "<strong>#{@cached_label_status}</strong>: #{h(issue.status.name)}<br />".html_safe +
66 66 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />".html_safe +
67 67 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />".html_safe +
68 68 "<strong>#{@cached_label_assigned_to}</strong>: #{h(issue.assigned_to)}<br />".html_safe +
69 69 "<strong>#{@cached_label_priority}</strong>: #{h(issue.priority.name)}".html_safe
70 70 end
71 71
72 72 def issue_heading(issue)
73 73 h("#{issue.tracker} ##{issue.id}")
74 74 end
75 75
76 76 def render_issue_subject_with_tree(issue)
77 77 s = ''
78 78 ancestors = issue.root? ? [] : issue.ancestors.visible.to_a
79 79 ancestors.each do |ancestor|
80 80 s << '<div>' + content_tag('p', link_to_issue(ancestor, :project => (issue.project_id != ancestor.project_id)))
81 81 end
82 82 s << '<div>'
83 83 subject = h(issue.subject)
84 84 if issue.is_private?
85 85 subject = content_tag('span', l(:field_is_private), :class => 'private') + ' ' + subject
86 86 end
87 87 s << content_tag('h3', subject)
88 88 s << '</div>' * (ancestors.size + 1)
89 89 s.html_safe
90 90 end
91 91
92 92 def render_descendants_tree(issue)
93 93 s = '<form><table class="list issues">'
94 94 issue_list(issue.descendants.visible.preload(:status, :priority, :tracker, :assigned_to).sort_by(&:lft)) do |child, level|
95 css = "issue issue-#{child.id} hascontextmenu #{issue.css_classes}"
95 css = "issue issue-#{child.id} hascontextmenu #{child.css_classes}"
96 96 css << " idnt idnt-#{level}" if level > 0
97 97 s << content_tag('tr',
98 98 content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
99 99 content_tag('td', link_to_issue(child, :project => (issue.project_id != child.project_id)), :class => 'subject', :style => 'width: 50%') +
100 100 content_tag('td', h(child.status), :class => 'status') +
101 101 content_tag('td', link_to_user(child.assigned_to), :class => 'assigned_to') +
102 102 content_tag('td', child.disabled_core_fields.include?('done_ratio') ? '' : progress_bar(child.done_ratio), :class=> 'done_ratio'),
103 103 :class => css)
104 104 end
105 105 s << '</table></form>'
106 106 s.html_safe
107 107 end
108 108
109 109 def issue_estimated_hours_details(issue)
110 110 if issue.total_estimated_hours.present?
111 111 if issue.total_estimated_hours == issue.estimated_hours
112 112 l_hours_short(issue.estimated_hours)
113 113 else
114 114 s = issue.estimated_hours.present? ? l_hours_short(issue.estimated_hours) : ""
115 115 s << " (#{l(:label_total)}: #{l_hours_short(issue.total_estimated_hours)})"
116 116 s.html_safe
117 117 end
118 118 end
119 119 end
120 120
121 121 def issue_spent_hours_details(issue)
122 122 if issue.total_spent_hours > 0
123 123 path = project_time_entries_path(issue.project, :issue_id => "~#{issue.id}")
124 124
125 125 if issue.total_spent_hours == issue.spent_hours
126 126 link_to(l_hours_short(issue.spent_hours), path)
127 127 else
128 128 s = issue.spent_hours > 0 ? l_hours_short(issue.spent_hours) : ""
129 129 s << " (#{l(:label_total)}: #{link_to l_hours_short(issue.total_spent_hours), path})"
130 130 s.html_safe
131 131 end
132 132 end
133 133 end
134 134
135 135 # Returns an array of error messages for bulk edited issues
136 136 def bulk_edit_error_messages(issues)
137 137 messages = {}
138 138 issues.each do |issue|
139 139 issue.errors.full_messages.each do |message|
140 140 messages[message] ||= []
141 141 messages[message] << issue
142 142 end
143 143 end
144 144 messages.map { |message, issues|
145 145 "#{message}: " + issues.map {|i| "##{i.id}"}.join(', ')
146 146 }
147 147 end
148 148
149 149 # Returns a link for adding a new subtask to the given issue
150 150 def link_to_new_subtask(issue)
151 151 attrs = {
152 152 :parent_issue_id => issue
153 153 }
154 154 attrs[:tracker_id] = issue.tracker unless issue.tracker.disabled_core_fields.include?('parent_issue_id')
155 155 link_to(l(:button_add), new_project_issue_path(issue.project, :issue => attrs))
156 156 end
157 157
158 158 def trackers_options_for_select(issue)
159 159 trackers = issue.allowed_target_trackers
160 160 if issue.new_record? && issue.parent_issue_id.present?
161 161 trackers = trackers.reject do |tracker|
162 162 issue.tracker_id != tracker.id && tracker.disabled_core_fields.include?('parent_issue_id')
163 163 end
164 164 end
165 165 trackers.collect {|t| [t.name, t.id]}
166 166 end
167 167
168 168 class IssueFieldsRows
169 169 include ActionView::Helpers::TagHelper
170 170
171 171 def initialize
172 172 @left = []
173 173 @right = []
174 174 end
175 175
176 176 def left(*args)
177 177 args.any? ? @left << cells(*args) : @left
178 178 end
179 179
180 180 def right(*args)
181 181 args.any? ? @right << cells(*args) : @right
182 182 end
183 183
184 184 def size
185 185 @left.size > @right.size ? @left.size : @right.size
186 186 end
187 187
188 188 def to_html
189 189 content =
190 190 content_tag('div', @left.reduce(&:+), :class => 'splitcontentleft') +
191 191 content_tag('div', @right.reduce(&:+), :class => 'splitcontentleft')
192 192
193 193 content_tag('div', content, :class => 'splitcontent')
194 194 end
195 195
196 196 def cells(label, text, options={})
197 197 options[:class] = [options[:class] || "", 'attribute'].join(' ')
198 198 content_tag 'div',
199 199 content_tag('div', label + ":", :class => 'label') + content_tag('div', text, :class => 'value'),
200 200 options
201 201 end
202 202 end
203 203
204 204 def issue_fields_rows
205 205 r = IssueFieldsRows.new
206 206 yield r
207 207 r.to_html
208 208 end
209 209
210 210 def render_custom_fields_rows(issue)
211 211 values = issue.visible_custom_field_values
212 212 return if values.empty?
213 213 half = (values.size / 2.0).ceil
214 214 issue_fields_rows do |rows|
215 215 values.each_with_index do |value, i|
216 216 css = "cf_#{value.custom_field.id}"
217 217 m = (i < half ? :left : :right)
218 218 rows.send m, custom_field_name_tag(value.custom_field), show_value(value), :class => css
219 219 end
220 220 end
221 221 end
222 222
223 223 # Returns the path for updating the issue form
224 224 # with project as the current project
225 225 def update_issue_form_path(project, issue)
226 226 options = {:format => 'js'}
227 227 if issue.new_record?
228 228 if project
229 229 new_project_issue_path(project, options)
230 230 else
231 231 new_issue_path(options)
232 232 end
233 233 else
234 234 edit_issue_path(issue, options)
235 235 end
236 236 end
237 237
238 238 # Returns the number of descendants for an array of issues
239 239 def issues_descendant_count(issues)
240 240 ids = issues.reject(&:leaf?).map {|issue| issue.descendants.ids}.flatten.uniq
241 241 ids -= issues.map(&:id)
242 242 ids.size
243 243 end
244 244
245 245 def issues_destroy_confirmation_message(issues)
246 246 issues = [issues] unless issues.is_a?(Array)
247 247 message = l(:text_issues_destroy_confirmation)
248 248
249 249 descendant_count = issues_descendant_count(issues)
250 250 if descendant_count > 0
251 251 message << "\n" + l(:text_issues_destroy_descendants_confirmation, :count => descendant_count)
252 252 end
253 253 message
254 254 end
255 255
256 256 # Returns an array of users that are proposed as watchers
257 257 # on the new issue form
258 258 def users_for_new_issue_watchers(issue)
259 259 users = issue.watcher_users
260 260 if issue.project.users.count <= 20
261 261 users = (users + issue.project.users.sort).uniq
262 262 end
263 263 users
264 264 end
265 265
266 266 def email_issue_attributes(issue, user)
267 267 items = []
268 268 %w(author status priority assigned_to category fixed_version).each do |attribute|
269 269 unless issue.disabled_core_fields.include?(attribute+"_id")
270 270 items << "#{l("field_#{attribute}")}: #{issue.send attribute}"
271 271 end
272 272 end
273 273 issue.visible_custom_field_values(user).each do |value|
274 274 items << "#{value.custom_field.name}: #{show_value(value, false)}"
275 275 end
276 276 items
277 277 end
278 278
279 279 def render_email_issue_attributes(issue, user, html=false)
280 280 items = email_issue_attributes(issue, user)
281 281 if html
282 282 content_tag('ul', items.map{|s| content_tag('li', s)}.join("\n").html_safe)
283 283 else
284 284 items.map{|s| "* #{s}"}.join("\n")
285 285 end
286 286 end
287 287
288 288 # Returns the textual representation of a journal details
289 289 # as an array of strings
290 290 def details_to_strings(details, no_html=false, options={})
291 291 options[:only_path] = (options[:only_path] == false ? false : true)
292 292 strings = []
293 293 values_by_field = {}
294 294 details.each do |detail|
295 295 if detail.property == 'cf'
296 296 field = detail.custom_field
297 297 if field && field.multiple?
298 298 values_by_field[field] ||= {:added => [], :deleted => []}
299 299 if detail.old_value
300 300 values_by_field[field][:deleted] << detail.old_value
301 301 end
302 302 if detail.value
303 303 values_by_field[field][:added] << detail.value
304 304 end
305 305 next
306 306 end
307 307 end
308 308 strings << show_detail(detail, no_html, options)
309 309 end
310 310 if values_by_field.present?
311 311 multiple_values_detail = Struct.new(:property, :prop_key, :custom_field, :old_value, :value)
312 312 values_by_field.each do |field, changes|
313 313 if changes[:added].any?
314 314 detail = multiple_values_detail.new('cf', field.id.to_s, field)
315 315 detail.value = changes[:added]
316 316 strings << show_detail(detail, no_html, options)
317 317 end
318 318 if changes[:deleted].any?
319 319 detail = multiple_values_detail.new('cf', field.id.to_s, field)
320 320 detail.old_value = changes[:deleted]
321 321 strings << show_detail(detail, no_html, options)
322 322 end
323 323 end
324 324 end
325 325 strings
326 326 end
327 327
328 328 # Returns the textual representation of a single journal detail
329 329 def show_detail(detail, no_html=false, options={})
330 330 multiple = false
331 331 show_diff = false
332 332
333 333 case detail.property
334 334 when 'attr'
335 335 field = detail.prop_key.to_s.gsub(/\_id$/, "")
336 336 label = l(("field_" + field).to_sym)
337 337 case detail.prop_key
338 338 when 'due_date', 'start_date'
339 339 value = format_date(detail.value.to_date) if detail.value
340 340 old_value = format_date(detail.old_value.to_date) if detail.old_value
341 341
342 342 when 'project_id', 'status_id', 'tracker_id', 'assigned_to_id',
343 343 'priority_id', 'category_id', 'fixed_version_id'
344 344 value = find_name_by_reflection(field, detail.value)
345 345 old_value = find_name_by_reflection(field, detail.old_value)
346 346
347 347 when 'estimated_hours'
348 348 value = l_hours_short(detail.value.to_f) unless detail.value.blank?
349 349 old_value = l_hours_short(detail.old_value.to_f) unless detail.old_value.blank?
350 350
351 351 when 'parent_id'
352 352 label = l(:field_parent_issue)
353 353 value = "##{detail.value}" unless detail.value.blank?
354 354 old_value = "##{detail.old_value}" unless detail.old_value.blank?
355 355
356 356 when 'is_private'
357 357 value = l(detail.value == "0" ? :general_text_No : :general_text_Yes) unless detail.value.blank?
358 358 old_value = l(detail.old_value == "0" ? :general_text_No : :general_text_Yes) unless detail.old_value.blank?
359 359
360 360 when 'description'
361 361 show_diff = true
362 362 end
363 363 when 'cf'
364 364 custom_field = detail.custom_field
365 365 if custom_field
366 366 label = custom_field.name
367 367 if custom_field.format.class.change_as_diff
368 368 show_diff = true
369 369 else
370 370 multiple = custom_field.multiple?
371 371 value = format_value(detail.value, custom_field) if detail.value
372 372 old_value = format_value(detail.old_value, custom_field) if detail.old_value
373 373 end
374 374 end
375 375 when 'attachment'
376 376 label = l(:label_attachment)
377 377 when 'relation'
378 378 if detail.value && !detail.old_value
379 379 rel_issue = Issue.visible.find_by_id(detail.value)
380 380 value = rel_issue.nil? ? "#{l(:label_issue)} ##{detail.value}" :
381 381 (no_html ? rel_issue : link_to_issue(rel_issue, :only_path => options[:only_path]))
382 382 elsif detail.old_value && !detail.value
383 383 rel_issue = Issue.visible.find_by_id(detail.old_value)
384 384 old_value = rel_issue.nil? ? "#{l(:label_issue)} ##{detail.old_value}" :
385 385 (no_html ? rel_issue : link_to_issue(rel_issue, :only_path => options[:only_path]))
386 386 end
387 387 relation_type = IssueRelation::TYPES[detail.prop_key]
388 388 label = l(relation_type[:name]) if relation_type
389 389 end
390 390 call_hook(:helper_issues_show_detail_after_setting,
391 391 {:detail => detail, :label => label, :value => value, :old_value => old_value })
392 392
393 393 label ||= detail.prop_key
394 394 value ||= detail.value
395 395 old_value ||= detail.old_value
396 396
397 397 unless no_html
398 398 label = content_tag('strong', label)
399 399 old_value = content_tag("i", h(old_value)) if detail.old_value
400 400 if detail.old_value && detail.value.blank? && detail.property != 'relation'
401 401 old_value = content_tag("del", old_value)
402 402 end
403 403 if detail.property == 'attachment' && value.present? &&
404 404 atta = detail.journal.journalized.attachments.detect {|a| a.id == detail.prop_key.to_i}
405 405 # Link to the attachment if it has not been removed
406 406 value = link_to_attachment(atta, :download => true, :only_path => options[:only_path])
407 407 if options[:only_path] != false && (atta.is_text? || atta.is_image?)
408 408 value += ' '
409 409 value += link_to(l(:button_view),
410 410 { :controller => 'attachments', :action => 'show',
411 411 :id => atta, :filename => atta.filename },
412 412 :class => 'icon-only icon-magnifier',
413 413 :title => l(:button_view))
414 414 end
415 415 else
416 416 value = content_tag("i", h(value)) if value
417 417 end
418 418 end
419 419
420 420 if show_diff
421 421 s = l(:text_journal_changed_no_detail, :label => label)
422 422 unless no_html
423 423 diff_link = link_to 'diff',
424 424 diff_journal_url(detail.journal_id, :detail_id => detail.id, :only_path => options[:only_path]),
425 425 :title => l(:label_view_diff)
426 426 s << " (#{ diff_link })"
427 427 end
428 428 s.html_safe
429 429 elsif detail.value.present?
430 430 case detail.property
431 431 when 'attr', 'cf'
432 432 if detail.old_value.present?
433 433 l(:text_journal_changed, :label => label, :old => old_value, :new => value).html_safe
434 434 elsif multiple
435 435 l(:text_journal_added, :label => label, :value => value).html_safe
436 436 else
437 437 l(:text_journal_set_to, :label => label, :value => value).html_safe
438 438 end
439 439 when 'attachment', 'relation'
440 440 l(:text_journal_added, :label => label, :value => value).html_safe
441 441 end
442 442 else
443 443 l(:text_journal_deleted, :label => label, :old => old_value).html_safe
444 444 end
445 445 end
446 446
447 447 # Find the name of an associated record stored in the field attribute
448 448 def find_name_by_reflection(field, id)
449 449 unless id.present?
450 450 return nil
451 451 end
452 452 @detail_value_name_by_reflection ||= Hash.new do |hash, key|
453 453 association = Issue.reflect_on_association(key.first.to_sym)
454 454 name = nil
455 455 if association
456 456 record = association.klass.find_by_id(key.last)
457 457 if record
458 458 name = record.name.force_encoding('UTF-8')
459 459 end
460 460 end
461 461 hash[key] = name
462 462 end
463 463 @detail_value_name_by_reflection[[field, id]]
464 464 end
465 465
466 466 # Renders issue children recursively
467 467 def render_api_issue_children(issue, api)
468 468 return if issue.leaf?
469 469 api.array :children do
470 470 issue.children.each do |child|
471 471 api.issue(:id => child.id) do
472 472 api.tracker(:id => child.tracker_id, :name => child.tracker.name) unless child.tracker.nil?
473 473 api.subject child.subject
474 474 render_api_issue_children(child, api)
475 475 end
476 476 end
477 477 end
478 478 end
479 479 end
General Comments 0
You need to be logged in to leave comments. Login now