summaryrefslogtreecommitdiff
path: root/app/views/ci/variables/_environment_scope.html.haml
blob: 15e61d85881201d2155c9649765e8168d56dd989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
- form_field = local_assigns.fetch(:form_field, nil)
- variable = local_assigns.fetch(:variable, nil)

- if @project
  - environment_scope = variable&.environment_scope || '*'
  - environment_scope_label = environment_scope == '*' ? s_('CiVariable|All environments') : environment_scope

  %input{ type: "hidden", name: "#{form_field}[variables_attributes][][environment_scope]", value: environment_scope }
  = dropdown_tag(environment_scope_label,
                 options: { wrapper_class: 'ci-variable-body-item js-variable-environment-dropdown-wrapper',
                            toggle_class: 'js-variable-environment-toggle wide',
                            filter: true,
                            dropdown_class: "dropdown-menu-selectable",
                            placeholder: s_('CiVariable|Search environments'),
                            footer_content: true,
                            data: { selected: environment_scope } }) do
    %ul.dropdown-footer-list
      %li
        %button{ class: "dropdown-create-new-item-button js-dropdown-create-new-item", title: s_('CiVariable|New environment') }
          = s_('CiVariable|Create wildcard')
          %code