Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_md_preview.html.haml « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac6a822420882ec9ea57b1ca078dbc213205942 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
- referenced_users = local_assigns.fetch(:referenced_users, nil)
- supports_quick_actions = local_assigns.fetch(:supports_quick_actions, false)

- if @merge_request&.discussion_locked?
  .issuable-note-warning
    = sprite_icon('lock', css_class: 'icon')
    %span
      = _('The discussion in this merge request is locked.')
      = _('Only project members can comment.')

.md-area.position-relative
  .md-header.gl-px-3.gl-rounded-top-base.gl-border-b.gl-border-gray-100
    .gl-display-flex.gl-align-items-center.gl-flex-wrap.gl-justify-content-space-between
      .md-header-toolbar.gl-display-flex.gl-py-3.gl-flex-wrap.gl-row-gap-3
        = render Pajamas::ButtonComponent.new(category: :tertiary, size: :small, button_options: { class: 'js-md-preview-button', value: 'preview' }) do
          = _('Preview')
        = render 'shared/blob/markdown_buttons', supports_quick_actions: supports_quick_actions
        .full-screen
          = render Pajamas::ButtonComponent.new(icon: 'maximize', category: :tertiary, size: :small, button_options: { 'tabindex': -1, 'aria-label': _("Go full screen"), class: 'has-tooltip js-zen-enter', data: { container: 'body' } })

  .md-write-holder
    = yield
  .md.md-preview-holder.gl-px-5.js-md-preview.hide{ data: { url: url } }
  .referenced-commands.hide

  - if referenced_users
    .referenced-users.hide
      %span
        = sprite_icon('warning-solid')
        You are about to add
        %strong
          %span.js-referenced-users-count 0
          people
        to the discussion. Proceed with caution.