44 lines
1 KiB
Ruby
44 lines
1 KiB
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class SearchServicePresenter < Gitlab::View::Presenter::Delegated
|
||
|
include RendersCommits
|
||
|
|
||
|
presents :search_service
|
||
|
|
||
|
SCOPE_PRELOAD_METHOD = {
|
||
|
projects: :with_web_entity_associations,
|
||
|
issues: :with_web_entity_associations,
|
||
|
merge_requests: :with_web_entity_associations,
|
||
|
epics: :with_web_entity_associations
|
||
|
}.freeze
|
||
|
|
||
|
SORT_ENABLED_SCOPES = %w(issues merge_requests).freeze
|
||
|
|
||
|
def search_objects
|
||
|
@search_objects ||= begin
|
||
|
objects = search_service.search_objects(SCOPE_PRELOAD_METHOD[scope.to_sym])
|
||
|
|
||
|
case scope
|
||
|
when 'users'
|
||
|
objects.eager_load(:status) # rubocop:disable CodeReuse/ActiveRecord
|
||
|
when 'commits'
|
||
|
prepare_commits_for_rendering(objects)
|
||
|
else
|
||
|
objects
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def show_sort_dropdown?
|
||
|
SORT_ENABLED_SCOPES.include?(scope)
|
||
|
end
|
||
|
|
||
|
def show_results_status?
|
||
|
!without_count? || show_snippets? || show_sort_dropdown?
|
||
|
end
|
||
|
|
||
|
def without_count?
|
||
|
search_objects.is_a?(Kaminari::PaginatableWithoutCount)
|
||
|
end
|
||
|
end
|