gitlab-org--gitlab-foss/app/views/projects/notes/_note.html.haml

54 lines
2.9 KiB
Text
Raw Normal View History

2016-05-10 18:41:46 -04:00
- return unless note.author
- return if note.cross_reference_not_visible_for?(current_user)
- note_editable = note_editable?(note)
2016-05-10 18:41:46 -04:00
%li.timeline-entry{ id: dom_id(note), class: ["note", "note-row-#{note.id}", ('system-note' if note.system)], data: {author_id: note.author.id, editable: note_editable} }
.timeline-entry-inner
.timeline-icon
%a{href: user_path(note.author)}
= image_tag avatar_icon(note.author), alt: '', class: 'avatar s40'
.timeline-content
.note-header
= link_to_member(note.project, note.author, avatar: false)
.inline.note-headline-light
2016-05-10 18:41:46 -04:00
= note.author.to_reference
- unless note.system
commented
%a{ href: "##{dom_id(note)}" }
= time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note-created-ago')
.note-actions
- access = note_max_access_for_user(note)
2016-06-17 05:01:57 -04:00
- if access and not note.system
%span.note-role.hidden-xs= access
2016-06-17 05:01:57 -04:00
- if current_user and not note.system
2016-05-30 12:33:43 -04:00
= link_to '#', title: 'Award Emoji', class: 'note-action-button note-emoji-button js-add-award js-note-emoji', data: { position: 'right' } do
2016-05-26 05:15:20 -04:00
= icon('spinner spin')
= icon('smile-o')
- if note_editable
= link_to '#', title: 'Edit comment', class: 'note-action-button js-note-edit' do
2016-03-31 14:37:27 -04:00
= icon('pencil')
= link_to namespace_project_note_path(note.project.namespace, note.project, note), title: 'Remove comment', method: :delete, data: { confirm: 'Are you sure you want to remove this comment?' }, remote: true, class: 'note-action-button hidden-xs js-note-delete danger' do
2015-05-14 06:18:19 -04:00
= icon('trash-o')
.note-body{class: note_editable ? 'js-task-list-container' : ''}
.note-text.md
2015-07-21 07:59:14 -04:00
= preserve do
= note.note_html
2016-05-30 12:33:43 -04:00
= edited_time_ago_with_tooltip(note, placement: 'bottom', html_class: 'note_edited_ago', include_author: true)
- if note_editable
= render 'projects/notes/edit_form', note: note
2016-05-27 11:29:27 -04:00
.note-awards
= render 'award_emoji/awards_block', awardable: note, inline: false
2013-06-26 10:32:34 -04:00
- if note.attachment.url
.note-attachment
- if note.attachment.image?
2015-02-20 09:19:50 -05:00
= link_to note.attachment.url, target: '_blank' do
= image_tag note.attachment.url, class: 'note-image-attach'
.attachment
2015-04-29 16:11:48 -04:00
= link_to note.attachment.url, target: '_blank' do
= icon('paperclip')
= note.attachment_identifier
2015-05-12 06:16:34 -04:00
= link_to delete_attachment_namespace_project_note_path(note.project.namespace, note.project, note),
2015-04-29 16:11:48 -04:00
title: 'Delete this attachment', method: :delete, remote: true, data: { confirm: 'Are you sure you want to remove the attachment?' }, class: 'danger js-note-attachment-delete' do
= icon('trash-o', class: 'cred')