42 lines
2.7 KiB
Text
42 lines
2.7 KiB
Text
.search.search-form{ data: { track_label: "navbar_search", track_action: "activate_form_input", track_value: "" } }
|
|
= form_tag search_path, method: :get, class: 'form-inline form-control' do |_f|
|
|
.search-input-container
|
|
.search-input-wrap
|
|
.dropdown{ data: { url: search_autocomplete_path } }
|
|
= search_field_tag 'search', nil, placeholder: _('Search GitLab'),
|
|
class: 'search-input dropdown-menu-toggle no-outline js-search-dashboard-options',
|
|
spellcheck: false,
|
|
autocomplete: 'off',
|
|
data: { issues_path: issues_dashboard_path,
|
|
mr_path: merge_requests_dashboard_path,
|
|
qa_selector: 'search_term_field' },
|
|
aria: { label: _('Search GitLab') }
|
|
%button.hidden.js-dropdown-search-toggle{ type: 'button', data: { toggle: 'dropdown' } }
|
|
.dropdown-menu.dropdown-select{ data: { testid: 'dashboard-search-options' } }
|
|
= dropdown_content do
|
|
%ul
|
|
%li.dropdown-menu-empty-item
|
|
%a
|
|
= _('Loading...')
|
|
= dropdown_loading
|
|
= sprite_icon('search', css_class: 'search-icon')
|
|
= sprite_icon('close', css_class: 'clear-icon js-clear-input')
|
|
|
|
= hidden_field_tag :group_id, search_context.for_group? ? search_context.group.id : '', class: 'js-search-group-options', data: search_context.group_metadata
|
|
= hidden_field_tag :project_id, search_context.for_project? ? search_context.project.id : '', id: 'search_project_id', class: 'js-search-project-options', data: search_context.project_metadata
|
|
|
|
- if search_context.for_project? || search_context.for_group?
|
|
= hidden_field_tag :scope, search_context.scope
|
|
= hidden_field_tag :search_code, search_context.code_search?
|
|
|
|
- ref = search_context.ref if can?(current_user, :download_code, search_context.project)
|
|
= hidden_field_tag :snippets, search_context.for_snippets?
|
|
= hidden_field_tag :repository_ref, ref
|
|
= hidden_field_tag :nav_source, 'navbar'
|
|
|
|
-# workaround for non-JS feature specs, see spec/support/helpers/search_helpers.rb
|
|
- if ENV['RAILS_ENV'] == 'test'
|
|
%noscript= button_tag 'Search'
|
|
.search-autocomplete-opts.hide{ :'data-autocomplete-path' => search_autocomplete_path,
|
|
:'data-autocomplete-project-id' => search_context.project.try(:id),
|
|
:'data-autocomplete-project-ref' => ref }
|