2012-09-14 10:52:24 -04:00
|
|
|
module NotesHelper
|
2012-10-10 06:06:30 -04:00
|
|
|
# Helps to distinguish e.g. commit notes in mr notes list
|
|
|
|
def note_for_main_target?(note)
|
2013-03-19 08:50:26 -04:00
|
|
|
(@target_type.camelize == note.noteable_type && !note.for_diff_line?)
|
2012-12-02 14:43:39 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def note_target_fields
|
|
|
|
hidden_field_tag(:target_type, @target_type) +
|
|
|
|
hidden_field_tag(:target_id, @target_id)
|
2012-10-10 06:06:30 -04:00
|
|
|
end
|
|
|
|
|
2012-10-10 06:14:48 -04:00
|
|
|
def link_to_commit_diff_line_note(note)
|
2012-10-29 10:50:30 -04:00
|
|
|
if note.for_commit_diff_line?
|
|
|
|
link_to "#{note.diff_file_name}:L#{note.diff_new_line}", project_commit_path(@project, note.noteable, anchor: note.line_code)
|
|
|
|
end
|
2012-12-02 14:53:50 -05:00
|
|
|
end
|
2012-10-10 06:14:48 -04:00
|
|
|
|
2012-12-02 14:53:50 -05:00
|
|
|
def link_to_merge_request_diff_line_note(note)
|
2013-01-15 04:12:17 -05:00
|
|
|
if note.for_merge_request_diff_line? and note.diff
|
2012-12-02 14:53:50 -05:00
|
|
|
link_to "#{note.diff_file_name}:L#{note.diff_new_line}", diffs_project_merge_request_path(note.project, note.noteable_id, anchor: note.line_code)
|
|
|
|
end
|
2012-09-15 05:54:46 -04:00
|
|
|
end
|
2012-10-29 22:27:36 -04:00
|
|
|
|
|
|
|
def loading_more_notes?
|
|
|
|
params[:loading_more].present?
|
|
|
|
end
|
|
|
|
|
|
|
|
def loading_new_notes?
|
|
|
|
params[:loading_new].present?
|
|
|
|
end
|
2013-06-26 10:32:34 -04:00
|
|
|
|
|
|
|
def note_timestamp(note)
|
|
|
|
# Shows the created at time and the updated at time if different
|
|
|
|
ts = "#{time_ago_in_words(note.created_at)} ago"
|
|
|
|
ts << content_tag(:small, " (Edited #{time_ago_in_words(note.updated_at)} ago)") if note.updated_at != note.created_at
|
|
|
|
ts.html_safe
|
|
|
|
end
|
2012-09-14 10:52:24 -04:00
|
|
|
end
|