Sha256: 94d82b08116fb38c2c3af479f0910eb836584d5388633ef01dd73c356a180c93
Contents?: true
Size: 805 Bytes
Versions: 62
Compression:
Stored size: 805 Bytes
Contents
module Workarea module Search class StorefrontSearch class SpellingCorrection include Middleware def call(response) if correction = find_spell_correction(response) response.reset!(params.merge(q: correction), by: self) response.message = I18n.t( 'workarea.storefront.searches.showing_suggested_results', suggestion: correction, original: params[:q].to_s.strip ) end yield end def find_spell_correction(response) return nil if response.has_filters? || any_results?(response) response.query.query_suggestions.first end def any_results?(response) response.total > 0 end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems