BigW Consortium Gitlab

_note.html.haml 4.42 KB
Newer Older
1 2 3
- return unless note.author
- return if note.cross_reference_not_visible_for?(current_user)

4
- note_editable = note_editable?(note)
5
%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} }
6 7
  .timeline-entry-inner
    .timeline-icon
8
      %a{href: user_path(note.author)}
9
        = image_tag avatar_icon(note.author), alt: '', class: 'avatar s40'
10 11
    .timeline-content
      .note-header
12 13
        = link_to_member(note.project, note.author, avatar: false)
        .inline.note-headline-light
14 15
          = note.author.to_reference
          - unless note.system
16
            commented
17 18
          - if note.system
            %span{class: 'system-note-message'}
19
              = note.redacted_note_html
20 21
          %a{ href: "##{dom_id(note)}" }
            = time_ago_with_tooltip(note.created_at, placement: 'bottom', html_class: 'note-created-ago')
22 23 24 25 26 27
        - unless note.system?
          .note-actions
            - access = note_max_access_for_user(note)
            - if access
              %span.note-role.hidden-xs= access

Phil Hughes committed
28
            - if note.resolvable?
29
              - can_resolve = can?(current_user, :resolve_note, note)
30 31
              %resolve-btn{ "project-path" => "#{project_path(note.project)}",
                  "discussion-id" => "#{note.discussion_id}",
32 33
                  ":note-id" => note.id,
                  ":resolved" => note.resolved?,
34
                  ":can-resolve" => can_resolve,
35
                  "resolved-by" => "#{note.resolved_by.try(:name)}",
36
                  "v-show" => "#{can_resolve || note.resolved?}",
37
                  "inline-template" => true,
38
                  "ref" => "note_#{note.id}" }
39

40 41 42
                .note-action-button
                  = icon("spin spinner", "v-show" => "loading")
                  %button.line-resolve-btn{ type: "button",
43
                      class: ("is-disabled" unless can_resolve),
44 45 46 47 48
                      ":class" => "{ 'is-active': isResolved }",
                      ":aria-label" => "buttonText",
                      "@click" => "resolve",
                      ":title" => "buttonText",
                      "v-show" => "!loading",
49
                      ":ref" => "'button'" }
50

51
                    = render "shared/icons/icon_status_success.svg"
52 53 54 55 56

            - if current_user
              - if note.emoji_awardable?
                = link_to '#', title: 'Award Emoji', class: 'note-action-button note-emoji-button js-add-award js-note-emoji', data: { position: 'right' } do
                  = icon('spinner spin')
57
                  = icon('smile-o', class: 'link-highlight')
58 59 60

              - if note_editable
                = link_to '#', title: 'Edit comment', class: 'note-action-button js-note-edit' do
61
                  = icon('pencil', class: 'link-highlight')
62
                = 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
63
                  = icon('trash-o', class: 'danger-highlight')
64
      .note-body{class: note_editable ? 'js-task-list-container' : ''}
65
        .note-text.md
66
          = preserve do
67
            = note.redacted_note_html
68
        = edited_time_ago_with_tooltip(note, placement: 'bottom', html_class: 'note_edited_ago', include_author: true)
69
        - if note_editable
70
          = render 'projects/notes/edit_form', note: note
71 72
        .note-awards
          = render 'award_emoji/awards_block', awardable: note, inline: false
73 74 75
        - if note.system
          .system-note-commit-list-toggler
            Toggle commit list
76 77 78
      - if note.attachment.url
        .note-attachment
          - if note.attachment.image?
79 80
            = link_to note.attachment.url, target: '_blank' do
              = image_tag note.attachment.url, class: 'note-image-attach'
81
          .attachment
82 83
            = link_to note.attachment.url, target: '_blank' do
              = icon('paperclip')
84
              = note.attachment_identifier
85
              = link_to delete_attachment_namespace_project_note_path(note.project.namespace, note.project, note),
86 87
                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')