2012-09-14 10:52:24 -04:00
|
|
|
module NotesHelper
|
2015-03-02 18:05:23 -05:00
|
|
|
def note_target_fields(note)
|
2016-03-25 03:39:22 -04:00
|
|
|
if note.noteable
|
|
|
|
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
|
|
|
|
hidden_field_tag(:target_id, note.noteable.id)
|
|
|
|
end
|
2012-10-10 06:06:30 -04:00
|
|
|
end
|
|
|
|
|
2015-04-29 20:34:43 -04:00
|
|
|
def note_editable?(note)
|
2016-07-20 00:52:31 -04:00
|
|
|
Ability.can_edit_note?(current_user, note)
|
2015-04-29 20:34:43 -04:00
|
|
|
end
|
|
|
|
|
2016-09-15 10:57:06 -04:00
|
|
|
def note_supports_slash_commands?(note)
|
|
|
|
Notes::SlashCommandsService.supported?(note, current_user)
|
|
|
|
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
|
|
|
|
2016-07-07 18:05:34 -04:00
|
|
|
def diff_view_data
|
2016-07-07 18:09:19 -04:00
|
|
|
return {} unless @comments_target
|
2016-07-06 00:59:18 -04:00
|
|
|
|
2016-07-07 18:05:34 -04:00
|
|
|
@comments_target.slice(:noteable_id, :noteable_type, :commit_id)
|
2016-07-06 00:59:18 -04:00
|
|
|
end
|
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
def diff_view_line_data(line_code, position, line_type)
|
|
|
|
return if @diff_notes_disabled
|
2016-07-07 18:05:34 -04:00
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
use_legacy_diff_note = @use_legacy_diff_notes
|
2016-06-20 13:23:46 -04:00
|
|
|
# If the controller doesn't force the use of legacy diff notes, we
|
|
|
|
# determine this on a line-by-line basis by seeing if there already exist
|
|
|
|
# active legacy diff notes at this line, in which case newly created notes
|
|
|
|
# will use the legacy technology as well.
|
|
|
|
# We do this because the discussion_id values of legacy and "new" diff
|
|
|
|
# notes, which are used to group notes on the merge request discussion tab,
|
|
|
|
# are incompatible.
|
|
|
|
# If we didn't, diff notes that would show for the same line on the changes
|
|
|
|
# tab, would show in different discussions on the discussion tab.
|
2016-07-07 18:09:19 -04:00
|
|
|
use_legacy_diff_note ||= begin
|
2016-07-20 18:18:18 -04:00
|
|
|
discussion = @grouped_diff_discussions[line_code]
|
|
|
|
discussion && discussion.legacy_diff_discussion?
|
2016-07-07 18:09:19 -04:00
|
|
|
end
|
2016-07-07 18:05:34 -04:00
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
data = {
|
2016-07-06 00:59:18 -04:00
|
|
|
line_code: line_code,
|
|
|
|
line_type: line_type,
|
|
|
|
}
|
|
|
|
|
2016-07-07 18:09:19 -04:00
|
|
|
if use_legacy_diff_note
|
2016-08-17 13:14:44 -04:00
|
|
|
discussion_id = LegacyDiffNote.discussion_id(
|
2016-06-20 13:23:46 -04:00
|
|
|
@comments_target[:noteable_type],
|
|
|
|
@comments_target[:noteable_id] || @comments_target[:commit_id],
|
|
|
|
line_code
|
2016-07-06 00:59:18 -04:00
|
|
|
)
|
2016-07-07 18:09:19 -04:00
|
|
|
|
|
|
|
data.merge!(
|
|
|
|
note_type: LegacyDiffNote.name,
|
2016-08-17 13:14:44 -04:00
|
|
|
discussion_id: discussion_id
|
2016-07-07 18:09:19 -04:00
|
|
|
)
|
2016-06-20 13:23:46 -04:00
|
|
|
else
|
2016-08-17 13:14:44 -04:00
|
|
|
discussion_id = DiffNote.discussion_id(
|
2016-07-07 18:09:19 -04:00
|
|
|
@comments_target[:noteable_type],
|
|
|
|
@comments_target[:noteable_id] || @comments_target[:commit_id],
|
|
|
|
position
|
|
|
|
)
|
|
|
|
|
|
|
|
data.merge!(
|
|
|
|
position: position.to_json,
|
|
|
|
note_type: DiffNote.name,
|
2016-08-17 13:14:44 -04:00
|
|
|
discussion_id: discussion_id
|
2016-07-07 18:09:19 -04:00
|
|
|
)
|
2016-07-06 00:59:18 -04:00
|
|
|
end
|
2016-07-07 18:09:19 -04:00
|
|
|
|
|
|
|
data
|
2014-06-06 16:15:54 -04:00
|
|
|
end
|
2014-06-24 06:34:46 -04:00
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
def link_to_reply_discussion(discussion, line_type = nil)
|
2014-06-24 06:35:50 -04:00
|
|
|
return unless current_user
|
|
|
|
|
2016-08-04 04:52:17 -04:00
|
|
|
data = discussion.reply_attributes.merge(line_type: line_type)
|
2016-05-10 18:41:46 -04:00
|
|
|
|
2016-07-14 09:28:58 -04:00
|
|
|
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
|
|
|
|
data: data, title: 'Add a reply'
|
2014-06-24 06:34:46 -04:00
|
|
|
end
|
2016-06-28 18:14:11 -04:00
|
|
|
|
2016-07-20 00:52:31 -04:00
|
|
|
def preload_max_access_for_authors(notes, project)
|
|
|
|
user_ids = notes.map(&:author_id)
|
|
|
|
project.team.max_member_access_for_user_ids(user_ids)
|
|
|
|
end
|
2016-06-28 18:14:11 -04:00
|
|
|
|
2016-08-01 10:55:51 -04:00
|
|
|
def preload_noteable_for_regular_notes(notes)
|
|
|
|
ActiveRecord::Associations::Preloader.new.preload(notes.select { |note| !note.for_commit? }, :noteable)
|
|
|
|
end
|
|
|
|
|
2016-07-20 00:52:31 -04:00
|
|
|
def note_max_access_for_user(note)
|
|
|
|
note.project.team.human_max_access(note.author_id)
|
2016-06-28 18:14:11 -04:00
|
|
|
end
|
2016-06-20 12:57:10 -04:00
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
def discussion_diff_path(discussion)
|
|
|
|
return unless discussion.diff_discussion?
|
2016-06-20 12:57:10 -04:00
|
|
|
|
2016-07-20 18:18:18 -04:00
|
|
|
if discussion.for_merge_request? && discussion.active?
|
|
|
|
diffs_namespace_project_merge_request_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: discussion.line_code)
|
|
|
|
elsif discussion.for_commit?
|
|
|
|
namespace_project_commit_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: discussion.line_code)
|
2016-06-20 12:57:10 -04:00
|
|
|
end
|
|
|
|
end
|
2012-09-14 10:52:24 -04:00
|
|
|
end
|