2012-09-14 10:52:24 -04:00
|
|
|
module NotesHelper
|
2015-02-03 00:34:16 -05:00
|
|
|
# Helps to distinguish e.g. commit notes in mr notes list
|
2012-10-10 06:06:30 -04:00
|
|
|
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
|
|
|
|
|
2015-03-02 18:05:23 -05:00
|
|
|
def note_target_fields(note)
|
|
|
|
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
|
|
|
|
hidden_field_tag(:target_id, note.noteable.id)
|
2012-10-10 06:06:30 -04:00
|
|
|
end
|
|
|
|
|
2015-04-29 20:34:43 -04:00
|
|
|
def note_editable?(note)
|
|
|
|
note.editable? && can?(current_user, :admin_note, note)
|
|
|
|
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?
|
2015-01-24 13:02:58 -05:00
|
|
|
link_to(
|
|
|
|
"#{note.diff_file_name}:L#{note.diff_new_line}",
|
|
|
|
namespace_project_commit_path(@project.namespace, @project,
|
|
|
|
note.noteable, anchor: note.line_code)
|
|
|
|
)
|
2012-10-29 10:50:30 -04:00
|
|
|
end
|
2012-12-02 14:53:50 -05:00
|
|
|
end
|
2012-10-10 06:14:48 -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
|
2015-06-17 14:04:14 -04:00
|
|
|
ts = time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note_created_ago')
|
2013-12-13 16:31:23 -05:00
|
|
|
if note.updated_at != note.created_at
|
|
|
|
ts << capture_haml do
|
2015-01-18 22:39:29 -05:00
|
|
|
haml_tag :span do
|
|
|
|
haml_concat '·'
|
2015-01-28 03:32:48 -05:00
|
|
|
haml_concat icon('edit', title: 'edited')
|
2015-06-17 14:04:14 -04:00
|
|
|
haml_concat time_ago_with_tooltip(note.updated_at, placement: 'bottom', html_class: '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
|
2014-06-06 16:15:54 -04:00
|
|
|
|
2015-06-05 18:24:05 -04:00
|
|
|
def link_to_new_diff_note(line_code, line_type = nil)
|
2014-06-06 16:15:54 -04:00
|
|
|
discussion_id = Note.build_discussion_id(
|
|
|
|
@comments_target[:noteable_type],
|
|
|
|
@comments_target[:noteable_id] || @comments_target[:commit_id],
|
|
|
|
line_code
|
|
|
|
)
|
|
|
|
|
|
|
|
data = {
|
|
|
|
noteable_type: @comments_target[:noteable_type],
|
|
|
|
noteable_id: @comments_target[:noteable_id],
|
|
|
|
commit_id: @comments_target[:commit_id],
|
|
|
|
line_code: line_code,
|
2015-06-05 18:24:05 -04:00
|
|
|
discussion_id: discussion_id,
|
|
|
|
line_type: line_type
|
2014-06-06 16:15:54 -04:00
|
|
|
}
|
|
|
|
|
2014-12-22 13:36:15 -05:00
|
|
|
button_tag(class: 'btn add-diff-note js-add-diff-note-button',
|
|
|
|
data: data,
|
|
|
|
title: 'Add a comment to this line') do
|
2015-01-28 03:32:48 -05:00
|
|
|
icon('comment-o')
|
2014-12-22 13:36:15 -05:00
|
|
|
end
|
2014-06-06 16:15:54 -04:00
|
|
|
end
|
2014-06-24 06:34:46 -04:00
|
|
|
|
2015-06-05 18:24:05 -04:00
|
|
|
def link_to_reply_diff(note, line_type = nil)
|
2014-06-24 06:35:50 -04:00
|
|
|
return unless current_user
|
|
|
|
|
2014-06-24 06:34:46 -04:00
|
|
|
data = {
|
|
|
|
noteable_type: note.noteable_type,
|
|
|
|
noteable_id: note.noteable_id,
|
|
|
|
commit_id: note.commit_id,
|
|
|
|
line_code: note.line_code,
|
2015-06-05 18:24:05 -04:00
|
|
|
discussion_id: note.discussion_id,
|
|
|
|
line_type: line_type
|
2014-06-24 06:34:46 -04:00
|
|
|
}
|
|
|
|
|
2014-09-19 09:26:20 -04:00
|
|
|
button_tag class: 'btn reply-btn js-discussion-reply-button',
|
|
|
|
data: data, title: 'Add a reply' do
|
2015-01-28 03:32:48 -05:00
|
|
|
link_text = icon('comment')
|
2014-09-19 08:09:50 -04:00
|
|
|
link_text << ' Reply'
|
|
|
|
end
|
2014-06-24 06:34:46 -04:00
|
|
|
end
|
2012-09-14 10:52:24 -04:00
|
|
|
end
|