summaryrefslogtreecommitdiff
path: root/app/views/search/_results.html.haml
blob: 168f4ca10bc6367d639e97554cab6e6eb92144d2 (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
- search_bar_classes = 'search-sidebar gl-display-flex gl-flex-direction-column gl-mr-4'
= render_if_exists 'shared/promotions/promote_advanced_search'
= render partial: 'search/results_status', locals: { search_service: @search_service } unless @search_objects.to_a.empty?

.results.gl-md-display-flex.gl-mt-3
  - if %w[issues merge_requests].include?(@scope)
    #js-search-sidebar{ class: search_bar_classes }
  .gl-w-full.gl-flex-grow-1.gl-overflow-x-hidden
    - if @timeout
      = render partial: "search/results/timeout"
    - elsif @search_objects.to_a.empty?
      = render partial: "search/results/empty"
    - else
      - if @scope == 'commits'
        %ul.content-list.commit-list
          = render partial: "search/results/commit", collection: @search_objects
      - else
        .search-results
          - if @scope == 'projects'
            .term
              = render 'shared/projects/list', projects: @search_objects, pipeline_status: false
          - else
            = render_if_exists partial: "search/results/#{@scope.singularize}", collection: @search_objects

      - if @scope != 'projects'
        = paginate_collection(@search_objects)