2020-11-24 15:15:51 +05:30
- access = note_human_max_access(note)
- if note.noteable_author?(@noteable)
%span{ class: 'note-role user-access-role has-tooltip d-none d-md-inline-block', title: _("This user is the author of this %{noteable}.") % { noteable: @noteable.human_class_name } }= _("Author")
- if access
2021-01-03 14:25:43 +05:30
%span{ class: 'note-role user-access-role has-tooltip', title: _("This user has the %{access} role in the %{name} project.") % { access: access.downcase, name: note.project_name } }= access
2020-11-24 15:15:51 +05:30
- elsif note.contributor?
%span{ class: 'note-role user-access-role has-tooltip', title: _("This user has previously committed to the %{name} project.") % { name: note.project_name } }= _("Contributor")
2017-08-17 22:00:37 +05:30
2018-05-09 12:01:36 +05:30
- if can?(current_user, :award_emoji, note)
2017-08-17 22:00:37 +05:30
- if note.emoji_awardable?
2017-09-10 17:25:29 +05:30
.note-actions-item
2023-01-13 00:05:48 +05:30
= render Pajamas::ButtonComponent.new(category: :tertiary,
button_options: { title: _('Add reaction'), class: 'btn-icon note-action-button note-emoji-button js-add-award js-note-emoji has-tooltip', data: { position: 'right', container: 'body' }, 'aria-label': _('Add reaction') }) do
2022-07-23 23:45:48 +05:30
= sprite_icon('slight-smile', css_class: 'award-control-icon-neutral gl-button-icon gl-icon')
= sprite_icon('smiley', css_class: 'award-control-icon-positive gl-button-icon gl-icon gl-left-3!')
= sprite_icon('smile', css_class: 'award-control-icon-super-positive gl-button-icon gl-icon gl-left-3! ')
2017-08-17 22:00:37 +05:30
- if note_editable
2021-03-11 19:13:27 +05:30
.note-actions-item.gl-ml-0
2023-01-13 00:05:48 +05:30
= render Pajamas::ButtonComponent.new(category: :tertiary,
icon: 'pencil',
button_options: { class: 'note-action-button js-note-edit has-tooltip', data: { container: 'body', qa_selector: 'edit_comment_button' }, title: _('Edit comment'), 'aria-label': _('Edit comment') })
2017-09-10 17:25:29 +05:30
= render 'projects/notes/more_actions_dropdown', note: note, note_editable: note_editable