Files
fizzy/app/models/card/searchable.rb
T
Jorge Manrubia e59b7fcd18 Format
2025-06-24 10:45:11 +02:00

34 lines
937 B
Ruby

module Card::Searchable
extend ActiveSupport::Concern
included do
include ::Searchable
searchable_by :title, :description, using: :cards_search_index
scope :mentioning, ->(query, by_similarity: false) do
method = by_similarity ? :search_similar : :search
cards = Card.public_send(method, query).select(:id).to_sql
comments = Comment.public_send(method, query).select(:id).to_sql
left_joins(:comments).where("cards.id in (#{cards}) or comments.id in (#{comments})").distinct
end
end
private
# TODO: Temporary until we stabilize the search API
def title_and_description
[ title, description.to_plain_text ].join(" ")
end
def search_embedding_content
<<~CONTENT
Title: #{title}
Description: #{description.to_plain_text}
Created by: #{creator.name}}
Assigned to: #{assignees.map(&:name).join(", ")}}
CONTENT
end
end