47 lines
2.6 KiB
Text
47 lines
2.6 KiB
Text
- if controller.controller_path =~ /^groups/ && @group.persisted?
|
|
- label = 'This group'
|
|
- if controller.controller_path =~ /^projects/ && @project.persisted?
|
|
- label = 'This project'
|
|
- if @group && @group.persisted? && @group.path
|
|
- group_data_attrs = { group_path: j(@group.path), name: @group.name, issues_path: issues_group_path(j(@group.path)), mr_path: merge_requests_group_path(j(@group.path)) }
|
|
- if @project && @project.persisted?
|
|
- project_data_attrs = { project_path: j(@project.path), name: j(@project.name), issues_path: project_issues_path(@project), mr_path: project_merge_requests_path(@project) }
|
|
.search.search-form{ class: "#{'has-location-badge' if label.present?}" }
|
|
= form_tag search_path, method: :get, class: 'navbar-form' do |f|
|
|
.search-input-container
|
|
- if label.present?
|
|
.location-badge= label
|
|
.search-input-wrap
|
|
.dropdown{ data: { url: search_autocomplete_path } }
|
|
= search_field_tag 'search', nil, placeholder: 'Search', class: 'search-input dropdown-menu-toggle no-outline js-search-dashboard-options', spellcheck: false, tabindex: '1', autocomplete: 'off', data: { toggle: 'dropdown', issues_path: issues_dashboard_url, mr_path: merge_requests_dashboard_url }, aria: { label: 'Search' }
|
|
.dropdown-menu.dropdown-select
|
|
= dropdown_content do
|
|
%ul
|
|
%li
|
|
%a.is-focused.dropdown-menu-empty-link
|
|
Loading...
|
|
= dropdown_loading
|
|
%i.search-icon
|
|
%i.clear-icon.js-clear-input
|
|
|
|
= hidden_field_tag :group_id, @group.try(:id), class: 'js-search-group-options', data: group_data_attrs
|
|
|
|
= hidden_field_tag :project_id, @project && @project.persisted? ? @project.id : '', id: 'search_project_id', class: 'js-search-project-options', data: project_data_attrs
|
|
|
|
- if @project && @project.persisted?
|
|
- if current_controller?(:issues)
|
|
= hidden_field_tag :scope, 'issues'
|
|
- elsif current_controller?(:merge_requests)
|
|
= hidden_field_tag :scope, 'merge_requests'
|
|
- elsif current_controller?(:wikis)
|
|
= hidden_field_tag :scope, 'wiki_blobs'
|
|
- elsif current_controller?(:commits)
|
|
= hidden_field_tag :scope, 'commits'
|
|
- else
|
|
= hidden_field_tag :search_code, true
|
|
|
|
- if @snippet || @snippets
|
|
= hidden_field_tag :snippets, true
|
|
= hidden_field_tag :repository_ref, @ref
|
|
= button_tag 'Go' if ENV['RAILS_ENV'] == 'test'
|
|
.search-autocomplete-opts.hide{ :'data-autocomplete-path' => search_autocomplete_path, :'data-autocomplete-project-id' => @project.try(:id), :'data-autocomplete-project-ref' => @ref }
|