Fix preview card search

This commit is contained in:
rubic0n 2021-02-28 15:33:38 -06:00
parent 10ec03f28b
commit 8a329b67a5
1 changed files with 8 additions and 7 deletions

View File

@ -57,12 +57,13 @@ class PreviewCard < ApplicationRecord
end
class << self
def search_for(term, offset = 0)
pattern = '%' + sanitize_sql_like(term.strip) + '%'
SEARCH_FIELDS = %i[title description url].freeze
PreviewCard.where(
"lower(title) LIKE lower('#{pattern}') OR lower(description) LIKE lower('#{pattern}') OR lower(url) LIKE lower('#{pattern}')"
).order('updated_at DESC').limit(25).offset(offset)
def search_for(term, offset = 0)
pattern = "%#{term.strip}%"
conditions = SEARCH_FIELDS.map { |f| arel_table[f].matches(pattern) }.reduce(:or)
PreviewCard.where(conditions).order(updated_at: :desc).limit(25).offset(offset)
end
private