OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/helpers/rb_common_helper.rb

75 lines
2.1 KiB

module RbCommonHelper
unloadable
def assignee_id_or_empty(story)
story.new_record? ? "" : story.assigned_to_id
end
def assignee_name_or_empty(story)
story.nil? || story.assigned_to.nil? ? "" : "#{story.assigned_to.firstname} #{story.assigned_to.lastname}"
end
def blocked_ids(blocked)
blocked.map{|b| b.id }.join(',')
end
def build_inline_style(task)
task.nil? || task.assigned_to.nil? ? '' : "style='background-color:#{task.assigned_to.backlogs_preference(:task_color)}'"
end
def description_or_empty(story)
story.new_record? ? "" : textilizable(story, :description)
end
def mark_if_closed(story)
!story.new_record? && story.status.is_closed? ? "closed" : ""
end
def story_points_or_empty(story)
story.story_points.nil? ? "" : story.story_points
end
def record_id_or_empty(story)
story.new_record? ? "" : story.id
end
def issue_link_or_empty(story)
story.new_record? ? "" : link_to(story.id, {:controller => "issues", :action => "show", :id => story}, {:target => "_blank", :class => "prevent_edit"})
end
def status_id_or_default(story)
story.new_record? ? IssueStatus.find(:first, :order => "position ASC").id : story.status.id
end
def status_label_or_default(story)
story.new_record? ? IssueStatus.find(:first, :order => "position ASC").name : story.status.name
end
def story_html_id_or_empty(story)
story.new_record? ? "" : "story_#{story.id}"
end
def textile_description_or_empty(story)
story.new_record? ? "" : h(story.description).gsub(/&lt;(\/?pre)&gt;/, '<\1>')
end
def tracker_id_or_empty(story)
story.new_record? ? "" : story.tracker_id
end
def tracker_name_or_empty(story)
story.new_record? ? "" : story.tracker.name
end
def updated_on_with_milliseconds(story)
date_string_with_milliseconds(story.updated_on, 0.001) unless story.nil?
end
def date_string_with_milliseconds(d, add=0)
d.strftime("%B %d, %Y %H:%M:%S") + '.' + (d.to_f % 1 + add).to_s.split('.')[1]
end
def remaining_hours(item)
item.remaining_hours.nil? || item.remaining_hours==0 ? "" : item.remaining_hours
end
end