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-12-25 15:33:40 -05:00
|
|
|
(@noteable.class.name == 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
|
2014-01-18 13:11:42 -05:00
|
|
|
link_to "#{note.diff_file_name}:L#{note.diff_new_line}", diffs_project_merge_request_path(note.project, note.noteable, anchor: note.line_code)
|
2012-12-02 14:53:50 -05:00
|
|
|
end
|
2012-09-15 05:54:46 -04:00
|
|
|
end
|
2012-10-29 22:27:36 -04:00
|
|
|
|
2013-06-26 10:32:34 -04:00
|
|
|
def note_timestamp(note)
|
|
|
|
# Shows the created at time and the updated at time if different
|
2013-12-30 07:49:22 -05:00
|
|
|
ts = "#{time_ago_with_tooltip(note.created_at, 'bottom', 'note_created_ago')}"
|
2013-12-13 16:31:23 -05:00
|
|
|
if note.updated_at != note.created_at
|
|
|
|
ts << capture_haml do
|
|
|
|
haml_tag :small do
|
2013-12-30 07:49:22 -05:00
|
|
|
haml_concat " (Edited #{time_ago_with_tooltip(note.updated_at, 'bottom', 'note_edited_ago')})"
|
2013-12-13 16:31:23 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2013-06-26 10:32:34 -04:00
|
|
|
ts.html_safe
|
|
|
|
end
|
2013-12-25 15:33:40 -05:00
|
|
|
|
|
|
|
def noteable_json(noteable)
|
|
|
|
{
|
|
|
|
id: noteable.id,
|
|
|
|
class: noteable.class.name,
|
|
|
|
resources: noteable.class.table_name,
|
|
|
|
project_id: noteable.project.id,
|
|
|
|
}.to_json
|
|
|
|
end
|
2012-09-14 10:52:24 -04:00
|
|
|
end
|