summaryrefslogtreecommitdiff
path: root/app/views/ci/variables/_index.html.haml
blob: 26051261715b1c831bdcd9bd454c36294ffc0acb (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
35
36
37
38
- save_endpoint = local_assigns.fetch(:save_endpoint, nil)

- if ci_variable_protected_by_default?
  %p.settings-message.text-center
    - link_start = '<a href="%{url}">'.html_safe % { url: help_page_path('ci/variables/README', anchor: 'protected-variables') }
    = s_('Environment variables are configured by your administrator to be %{link_start}protected%{link_end} by default').html_safe % { link_start: link_start, link_end: '</a>'.html_safe }

- if Feature.enabled?(:new_variables_ui, @project || @group, default_enabled: true)
  - is_group = !@group.nil?

  #js-ci-project-variables{ data: { endpoint: save_endpoint, project_id: @project&.id || '', group: is_group.to_s, maskable_regex: ci_variable_maskable_regex, protected_by_default: ci_variable_protected_by_default?.to_s} }

- else
  .row
    .col-lg-12.js-ci-variable-list-section{ data: { save_endpoint: save_endpoint, maskable_regex: ci_variable_maskable_regex } }
      .hide.alert.alert-danger.js-ci-variable-error-box

      %ul.ci-variable-list
        = render 'ci/variables/variable_header'
        - @variables.each.each do |variable|
          = render 'ci/variables/variable_row', form_field: 'variables', variable: variable
        = render 'ci/variables/variable_row', form_field: 'variables'
      .prepend-top-20
        %button.btn.btn-success.js-ci-variables-save-button{ type: 'button' }
          %span.hide.js-ci-variables-save-loading-icon
            .spinner.spinner-light.mr-1
          = _('Save variables')
        %button.btn.btn-info.btn-inverted.prepend-left-10.js-secret-value-reveal-button{ type: 'button', data: { secret_reveal_status: "#{@variables.size == 0}" } }
          - if @variables.size == 0
            = n_('Hide value', 'Hide values', @variables.size)
          - else
            = n_('Reveal value', 'Reveal values', @variables.size)

- if !@group && @project.group
  .settings-header.border-top.prepend-top-20
    = render 'ci/group_variables/header'
  .settings-content.pr-0
    = render 'ci/group_variables/index'