##// END OF EJS Templates
Document render_issue_tooltip...
Eric Davis -
r4052:55fbf6836be1
parent child
Show More
@@ -1,266 +1,275
1 1 # redMine - project management software
2 2 # Copyright (C) 2006 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 module IssuesHelper
19 19 include ApplicationHelper
20 20
21 21 def issue_list(issues, &block)
22 22 ancestors = []
23 23 issues.each do |issue|
24 24 while (ancestors.any? && !issue.is_descendant_of?(ancestors.last))
25 25 ancestors.pop
26 26 end
27 27 yield issue, ancestors.size
28 28 ancestors << issue unless issue.leaf?
29 29 end
30 30 end
31 31
32 # Renders a HTML/CSS tooltip
33 #
34 # To use, a trigger div is needed. This is a div with the class of "tooltip"
35 # that contains this method wrapped in a span with the class of "tip"
36 #
37 # <div class="tooltip"><%= link_to_issue(issue) %>
38 # <span class="tip"><%= render_issue_tooltip(issue) %></span>
39 # </div>
40 #
32 41 def render_issue_tooltip(issue)
33 42 @cached_label_status ||= l(:field_status)
34 43 @cached_label_start_date ||= l(:field_start_date)
35 44 @cached_label_due_date ||= l(:field_due_date)
36 45 @cached_label_assigned_to ||= l(:field_assigned_to)
37 46 @cached_label_priority ||= l(:field_priority)
38 47 @cached_label_project ||= l(:field_project)
39 48
40 49 link_to_issue(issue) + "<br /><br />" +
41 50 "<strong>#{@cached_label_project}</strong>: #{link_to_project(issue.project)}<br />" +
42 51 "<strong>#{@cached_label_status}</strong>: #{issue.status.name}<br />" +
43 52 "<strong>#{@cached_label_start_date}</strong>: #{format_date(issue.start_date)}<br />" +
44 53 "<strong>#{@cached_label_due_date}</strong>: #{format_date(issue.due_date)}<br />" +
45 54 "<strong>#{@cached_label_assigned_to}</strong>: #{issue.assigned_to}<br />" +
46 55 "<strong>#{@cached_label_priority}</strong>: #{issue.priority.name}"
47 56 end
48 57
49 58 def render_issue_subject_with_tree(issue)
50 59 s = ''
51 60 issue.ancestors.each do |ancestor|
52 61 s << '<div>' + content_tag('p', link_to_issue(ancestor))
53 62 end
54 63 s << '<div>' + content_tag('h3', h(issue.subject))
55 64 s << '</div>' * (issue.ancestors.size + 1)
56 65 s
57 66 end
58 67
59 68 def render_descendants_tree(issue)
60 69 s = '<form><table class="list issues">'
61 70 issue_list(issue.descendants.sort_by(&:lft)) do |child, level|
62 71 s << content_tag('tr',
63 72 content_tag('td', check_box_tag("ids[]", child.id, false, :id => nil), :class => 'checkbox') +
64 73 content_tag('td', link_to_issue(child, :truncate => 60), :class => 'subject') +
65 74 content_tag('td', h(child.status)) +
66 75 content_tag('td', link_to_user(child.assigned_to)) +
67 76 content_tag('td', progress_bar(child.done_ratio, :width => '80px')),
68 77 :class => "issue issue-#{child.id} hascontextmenu #{level > 0 ? "idnt idnt-#{level}" : nil}")
69 78 end
70 79 s << '</form></table>'
71 80 s
72 81 end
73 82
74 83 def render_custom_fields_rows(issue)
75 84 return if issue.custom_field_values.empty?
76 85 ordered_values = []
77 86 half = (issue.custom_field_values.size / 2.0).ceil
78 87 half.times do |i|
79 88 ordered_values << issue.custom_field_values[i]
80 89 ordered_values << issue.custom_field_values[i + half]
81 90 end
82 91 s = "<tr>\n"
83 92 n = 0
84 93 ordered_values.compact.each do |value|
85 94 s << "</tr>\n<tr>\n" if n > 0 && (n % 2) == 0
86 95 s << "\t<th>#{ h(value.custom_field.name) }:</th><td>#{ simple_format_without_paragraph(h(show_value(value))) }</td>\n"
87 96 n += 1
88 97 end
89 98 s << "</tr>\n"
90 99 s
91 100 end
92 101
93 102 def sidebar_queries
94 103 unless @sidebar_queries
95 104 # User can see public queries and his own queries
96 105 visible = ARCondition.new(["is_public = ? OR user_id = ?", true, (User.current.logged? ? User.current.id : 0)])
97 106 # Project specific queries and global queries
98 107 visible << (@project.nil? ? ["project_id IS NULL"] : ["project_id IS NULL OR project_id = ?", @project.id])
99 108 @sidebar_queries = Query.find(:all,
100 109 :select => 'id, name',
101 110 :order => "name ASC",
102 111 :conditions => visible.conditions)
103 112 end
104 113 @sidebar_queries
105 114 end
106 115
107 116 def show_detail(detail, no_html=false)
108 117 case detail.property
109 118 when 'attr'
110 119 field = detail.prop_key.to_s.gsub(/\_id$/, "")
111 120 label = l(("field_" + field).to_sym)
112 121 case
113 122 when ['due_date', 'start_date'].include?(detail.prop_key)
114 123 value = format_date(detail.value.to_date) if detail.value
115 124 old_value = format_date(detail.old_value.to_date) if detail.old_value
116 125
117 126 when ['project_id', 'status_id', 'tracker_id', 'assigned_to_id', 'priority_id', 'category_id', 'fixed_version_id'].include?(detail.prop_key)
118 127 value = find_name_by_reflection(field, detail.value)
119 128 old_value = find_name_by_reflection(field, detail.old_value)
120 129
121 130 when detail.prop_key == 'estimated_hours'
122 131 value = "%0.02f" % detail.value.to_f unless detail.value.blank?
123 132 old_value = "%0.02f" % detail.old_value.to_f unless detail.old_value.blank?
124 133
125 134 when detail.prop_key == 'parent_id'
126 135 label = l(:field_parent_issue)
127 136 value = "##{detail.value}" unless detail.value.blank?
128 137 old_value = "##{detail.old_value}" unless detail.old_value.blank?
129 138 end
130 139 when 'cf'
131 140 custom_field = CustomField.find_by_id(detail.prop_key)
132 141 if custom_field
133 142 label = custom_field.name
134 143 value = format_value(detail.value, custom_field.field_format) if detail.value
135 144 old_value = format_value(detail.old_value, custom_field.field_format) if detail.old_value
136 145 end
137 146 when 'attachment'
138 147 label = l(:label_attachment)
139 148 end
140 149 call_hook(:helper_issues_show_detail_after_setting, {:detail => detail, :label => label, :value => value, :old_value => old_value })
141 150
142 151 label ||= detail.prop_key
143 152 value ||= detail.value
144 153 old_value ||= detail.old_value
145 154
146 155 unless no_html
147 156 label = content_tag('strong', label)
148 157 old_value = content_tag("i", h(old_value)) if detail.old_value
149 158 old_value = content_tag("strike", old_value) if detail.old_value and (!detail.value or detail.value.empty?)
150 159 if detail.property == 'attachment' && !value.blank? && a = Attachment.find_by_id(detail.prop_key)
151 160 # Link to the attachment if it has not been removed
152 161 value = link_to_attachment(a)
153 162 else
154 163 value = content_tag("i", h(value)) if value
155 164 end
156 165 end
157 166
158 167 if !detail.value.blank?
159 168 case detail.property
160 169 when 'attr', 'cf'
161 170 if !detail.old_value.blank?
162 171 l(:text_journal_changed, :label => label, :old => old_value, :new => value)
163 172 else
164 173 l(:text_journal_set_to, :label => label, :value => value)
165 174 end
166 175 when 'attachment'
167 176 l(:text_journal_added, :label => label, :value => value)
168 177 end
169 178 else
170 179 l(:text_journal_deleted, :label => label, :old => old_value)
171 180 end
172 181 end
173 182
174 183 # Find the name of an associated record stored in the field attribute
175 184 def find_name_by_reflection(field, id)
176 185 association = Issue.reflect_on_association(field.to_sym)
177 186 if association
178 187 record = association.class_name.constantize.find_by_id(id)
179 188 return record.name if record
180 189 end
181 190 end
182 191
183 192 def issues_to_csv(issues, project = nil)
184 193 ic = Iconv.new(l(:general_csv_encoding), 'UTF-8')
185 194 decimal_separator = l(:general_csv_decimal_separator)
186 195 export = FCSV.generate(:col_sep => l(:general_csv_separator)) do |csv|
187 196 # csv header fields
188 197 headers = [ "#",
189 198 l(:field_status),
190 199 l(:field_project),
191 200 l(:field_tracker),
192 201 l(:field_priority),
193 202 l(:field_subject),
194 203 l(:field_assigned_to),
195 204 l(:field_category),
196 205 l(:field_fixed_version),
197 206 l(:field_author),
198 207 l(:field_start_date),
199 208 l(:field_due_date),
200 209 l(:field_done_ratio),
201 210 l(:field_estimated_hours),
202 211 l(:field_parent_issue),
203 212 l(:field_created_on),
204 213 l(:field_updated_on)
205 214 ]
206 215 # Export project custom fields if project is given
207 216 # otherwise export custom fields marked as "For all projects"
208 217 custom_fields = project.nil? ? IssueCustomField.for_all : project.all_issue_custom_fields
209 218 custom_fields.each {|f| headers << f.name}
210 219 # Description in the last column
211 220 headers << l(:field_description)
212 221 csv << headers.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
213 222 # csv lines
214 223 issues.each do |issue|
215 224 fields = [issue.id,
216 225 issue.status.name,
217 226 issue.project.name,
218 227 issue.tracker.name,
219 228 issue.priority.name,
220 229 issue.subject,
221 230 issue.assigned_to,
222 231 issue.category,
223 232 issue.fixed_version,
224 233 issue.author.name,
225 234 format_date(issue.start_date),
226 235 format_date(issue.due_date),
227 236 issue.done_ratio,
228 237 issue.estimated_hours.to_s.gsub('.', decimal_separator),
229 238 issue.parent_id,
230 239 format_time(issue.created_on),
231 240 format_time(issue.updated_on)
232 241 ]
233 242 custom_fields.each {|f| fields << show_value(issue.custom_value_for(f)) }
234 243 fields << issue.description
235 244 csv << fields.collect {|c| begin; ic.iconv(c.to_s); rescue; c.to_s; end }
236 245 end
237 246 end
238 247 export
239 248 end
240 249
241 250 def gantt_zoom_link(gantt, in_or_out)
242 251 img_attributes = {:style => 'height:1.4em; width:1.4em; margin-left: 3px;'} # em for accessibility
243 252
244 253 case in_or_out
245 254 when :in
246 255 if gantt.zoom < 4
247 256 link_to_remote(l(:text_zoom_in) + image_tag('zoom_in.png', img_attributes.merge(:alt => l(:text_zoom_in))),
248 257 {:url => gantt.params.merge(:zoom => (gantt.zoom+1)), :method => :get, :update => 'content'},
249 258 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom+1)))})
250 259 else
251 260 l(:text_zoom_in) +
252 261 image_tag('zoom_in_g.png', img_attributes.merge(:alt => l(:text_zoom_in)))
253 262 end
254 263
255 264 when :out
256 265 if gantt.zoom > 1
257 266 link_to_remote(l(:text_zoom_out) + image_tag('zoom_out.png', img_attributes.merge(:alt => l(:text_zoom_out))),
258 267 {:url => gantt.params.merge(:zoom => (gantt.zoom-1)), :method => :get, :update => 'content'},
259 268 {:href => url_for(gantt.params.merge(:zoom => (gantt.zoom-1)))})
260 269 else
261 270 l(:text_zoom_out) +
262 271 image_tag('zoom_out_g.png', img_attributes.merge(:alt => l(:text_zoom_out)))
263 272 end
264 273 end
265 274 end
266 275 end
General Comments 0
You need to be logged in to leave comments. Login now