diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-17 12:41:54 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-17 12:41:54 +0000 |
commit | 8f7da03419071e132bbda1c1983707de15350597 (patch) | |
tree | 8f339fcea37ff124ee31b61882f2d5cbe7d9ca97 /lib | |
parent | 27f76d20ce702c607b3e527efb8d11bc2451de78 (diff) | |
download | redmine-8f7da03419071e132bbda1c1983707de15350597.tar.gz redmine-8f7da03419071e132bbda1c1983707de15350597.zip |
Gantt code cleanup.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4521 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'lib')
-rw-r--r-- | lib/redmine/helpers/gantt.rb | 48 |
1 files changed, 26 insertions, 22 deletions
diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index d84202b5e..ea0140c4d 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -587,22 +587,9 @@ module Redmine if issue.is_a?(Issue) && issue.due_before case options[:format] when :html - output = '' - css = "task " + (issue.leaf? ? 'leaf' : 'parent') - coords = coordinates(issue.start_date, issue.due_before, issue.done_ratio, options[:zoom]) - if coords[:bar_start] && coords[:bar_end] - output << html_task(options[:top], coords, css) - - output << "<div class='tooltip' style='position: absolute;top:#{ options[:top] }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_end] - coords[:bar_start] }px;height:12px;'>" - output << '<span class="tip">' - output << view.render_issue_tooltip(issue) - output << "</span></div>" - end - - output << "<div style='top:#{ options[:top] }px;left:#{ (coords[:bar_end] || 0) + 5 }px;' class='#{css} label issue-name'>" - output << "#{ issue.status.name } #{ issue.done_ratio }%" - output << "</div>" + css = "task " + (issue.leaf? ? 'leaf' : 'parent') + output = html_task(options[:top], coords, :css => css, :label => "#{ issue.status.name } #{ issue.done_ratio }%", :issue => issue) @lines << output output @@ -1017,14 +1004,31 @@ module Redmine end end - def html_task(top, coords, css) - output = "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_end] - coords[:bar_start] - 2}px;' class='#{css} task_todo'> </div>" - - if coords[:bar_late_end] - output << "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_late_end] - coords[:bar_start] - 2}px;' class='#{css} task_late'> </div>" + def html_task(top, coords, options={}) + output = '' + # Renders the task bar, with progress and late + if coords[:bar_start] && coords[:bar_end] + output << "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_end] - coords[:bar_start] - 2}px;' class='#{options[:css]} task_todo'> </div>" + + if coords[:bar_late_end] + output << "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_late_end] - coords[:bar_start] - 2}px;' class='#{options[:css]} task_late'> </div>" + end + if coords[:bar_progress_end] + output << "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_progress_end] - coords[:bar_start] - 2}px;' class='#{options[:css]} task_done'> </div>" + end + end + # Renders the label on the right + if options[:label] + output << "<div style='top:#{ top }px;left:#{ (coords[:bar_end] || 0) + 5 }px;' class='#{options[:css]} label'>" + output << options[:label] + output << "</div>" end - if coords[:bar_progress_end] - output << "<div style='top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_progress_end] - coords[:bar_start] - 2}px;' class='#{css} task_done'> </div>" + # Renders the tooltip + if options[:issue] && coords[:bar_start] && coords[:bar_end] + output << "<div class='tooltip' style='position: absolute;top:#{ top }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_end] - coords[:bar_start] }px;height:12px;'>" + output << '<span class="tip">' + output << view.render_issue_tooltip(options[:issue]) + output << "</span></div>" end output |