Sha256: 433a7d9c1295926bc06b50a91c66921fd3fb638a03d176a73b3606b53791ba8e

Contents?: true

Size: 953 Bytes

Versions: 10

Compression:

Stored size: 953 Bytes

Contents

module Katello
  module Concerns
    module FilteredAutoCompleteSearch
      extend ActiveSupport::Concern

      PAGE_SIZE = 20

      def auto_complete_search
        begin
          options = resource_class.respond_to?(:completer_scope_options) ? resource_class.completer_scope_options : {}
          items = resource_class.where(:id => self.index_relation).complete_for(params[:search], options)
          items = items.map do |item|
            category = (['and', 'or', 'not', 'has'].include?(item.to_s.sub(/^.*\s+/, ''))) ? _('Operators') : ''
            part = item.to_s.sub(/^.*\b(and|or)\b/i) { |match| match.sub(/^.*\s+/, '') }
            completed = item.to_s.chomp(part)
            {:completed => completed, :part => part, :label => item, :category => category}
          end
        rescue ScopedSearch::QueryNotSupported => e
          items = [{:error => e.to_s}]
        end
        render :json => items
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
katello-3.0.2 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.1.0.rc1 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.1 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc7 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc5 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc4 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc3 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc2 app/controllers/katello/concerns/filtered_auto_complete_search.rb
katello-3.0.0.rc1 app/controllers/katello/concerns/filtered_auto_complete_search.rb