debian-mirror-gitlab/app/helpers/notes_helper.rb

123 lines
3.1 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
module NotesHelper
2015-04-26 12:48:37 +05:30
def note_target_fields(note)
2016-06-02 11:05:42 +05:30
if note.noteable
hidden_field_tag(:target_type, note.noteable.class.name.underscore) +
hidden_field_tag(:target_id, note.noteable.id)
end
2014-09-02 18:07:02 +05:30
end
2015-09-11 14:41:01 +05:30
def note_editable?(note)
2016-09-13 17:45:13 +05:30
Ability.can_edit_note?(current_user, note)
2015-09-11 14:41:01 +05:30
end
2016-09-29 09:46:39 +05:30
def note_supports_slash_commands?(note)
Notes::SlashCommandsService.supported?(note, current_user)
end
2014-09-02 18:07:02 +05:30
def noteable_json(noteable)
{
id: noteable.id,
class: noteable.class.name,
resources: noteable.class.table_name,
project_id: noteable.project.id,
}.to_json
end
2016-08-24 12:49:21 +05:30
def diff_view_data
2017-08-17 22:00:37 +05:30
return {} unless @new_diff_note_attrs
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
@new_diff_note_attrs.slice(:noteable_id, :noteable_type, :commit_id)
2016-08-24 12:49:21 +05:30
end
def diff_view_line_data(line_code, position, line_type)
return if @diff_notes_disabled
2014-09-02 18:07:02 +05:30
data = {
2016-08-24 12:49:21 +05:30
line_code: line_code,
line_type: line_type,
2014-09-02 18:07:02 +05:30
}
2017-08-17 22:00:37 +05:30
if @use_legacy_diff_notes
data[:note_type] = LegacyDiffNote.name
2016-08-24 12:49:21 +05:30
else
2017-08-17 22:00:37 +05:30
data[:note_type] = DiffNote.name
data[:position] = position.to_json
2015-04-26 12:48:37 +05:30
end
2016-08-24 12:49:21 +05:30
data
2014-09-02 18:07:02 +05:30
end
2016-09-13 17:45:13 +05:30
def link_to_reply_discussion(discussion, line_type = nil)
2014-09-02 18:07:02 +05:30
return unless current_user
2017-08-17 22:00:37 +05:30
data = { discussion_id: discussion.id, line_type: line_type }
2014-09-02 18:07:02 +05:30
2016-09-13 17:45:13 +05:30
button_tag 'Reply...', class: 'btn btn-text-field js-discussion-reply-button',
data: data, title: 'Add a reply'
end
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
def note_max_access_for_user(note)
note.project.team.human_max_access(note.author_id)
2016-09-13 17:45:13 +05:30
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
def discussion_path(discussion)
if discussion.for_merge_request?
return unless discussion.diff_discussion?
version_params = discussion.merge_request_version_params
return unless version_params
path_params = version_params.merge(anchor: discussion.line_code)
diffs_namespace_project_merge_request_path(discussion.project.namespace, discussion.project, discussion.noteable, path_params)
elsif discussion.for_commit?
anchor = discussion.line_code if discussion.diff_discussion?
namespace_project_commit_path(discussion.project.namespace, discussion.project, discussion.noteable, anchor: anchor)
end
2016-08-24 12:49:21 +05:30
end
2017-08-17 22:00:37 +05:30
def notes_url
if @snippet.is_a?(PersonalSnippet)
snippet_notes_path(@snippet)
else
namespace_project_noteable_notes_path(
namespace_id: @project.namespace,
project_id: @project,
target_id: @noteable.id,
target_type: @noteable.class.name.underscore
)
end
2016-08-24 12:49:21 +05:30
end
2017-08-17 22:00:37 +05:30
def note_url(note)
if note.noteable.is_a?(PersonalSnippet)
snippet_note_path(note.noteable, note)
else
namespace_project_note_path(@project.namespace, @project, note)
end
end
2016-08-24 12:49:21 +05:30
2017-08-17 22:00:37 +05:30
def form_resources
if @snippet.is_a?(PersonalSnippet)
[@note]
else
[@project.namespace.becomes(Namespace), @project, @note]
end
end
def new_form_url
return nil unless @snippet.is_a?(PersonalSnippet)
snippet_notes_path(@snippet)
end
def can_create_note?
if @snippet.is_a?(PersonalSnippet)
can?(current_user, :comment_personal_snippet, @snippet)
else
can?(current_user, :create_note, @project)
2016-08-24 12:49:21 +05:30
end
2014-09-02 18:07:02 +05:30
end
end