2021-02-22 17:27:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SearchServicePresenter < Gitlab::View::Presenter::Delegated
|
|
|
|
include RendersCommits
|
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
presents ::SearchService, as: :search_service
|
2021-02-22 17:27:13 +05:30
|
|
|
|
|
|
|
SCOPE_PRELOAD_METHOD = {
|
|
|
|
projects: :with_web_entity_associations,
|
|
|
|
issues: :with_web_entity_associations,
|
|
|
|
merge_requests: :with_web_entity_associations,
|
2021-04-29 21:17:54 +05:30
|
|
|
epics: :with_web_entity_associations,
|
|
|
|
notes: :with_web_entity_associations,
|
|
|
|
milestones: :with_web_entity_associations,
|
|
|
|
commits: :with_web_entity_associations,
|
|
|
|
blobs: :with_web_entity_associations
|
2021-02-22 17:27:13 +05:30
|
|
|
}.freeze
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
SORT_ENABLED_SCOPES = %w(issues merge_requests epics).freeze
|
2021-02-22 17:27:13 +05:30
|
|
|
|
2021-11-18 22:05:49 +05:30
|
|
|
delegator_override :search_objects
|
2021-02-22 17:27:13 +05:30
|
|
|
def search_objects
|
|
|
|
@search_objects ||= begin
|
|
|
|
objects = search_service.search_objects(SCOPE_PRELOAD_METHOD[scope.to_sym])
|
|
|
|
|
|
|
|
case scope
|
|
|
|
when 'users'
|
2022-05-07 20:08:51 +05:30
|
|
|
objects.eager_load(:status) if objects.respond_to?(:eager_load) # rubocop:disable CodeReuse/ActiveRecord
|
2021-02-22 17:27:13 +05:30
|
|
|
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
|