fix search by terms

This commit is contained in:
João Victor Geonizeli
2022-02-28 14:06:45 -03:00
parent c115da9a35
commit 5a449246b1
2 changed files with 40 additions and 7 deletions

View File

@@ -13,14 +13,23 @@ class PostsQueryResolverService
def call def call
scope = Post.all scope = Post.all
if filter[:scope] == 'follows' && current_user scope = scope.by_user_follows(current_user) if filter[:scope] == 'follows' && current_user
scope = scope.by_user_follows(current_user) scope = filter_by_terms(scope) if filter[:terms]
end
if filter[:terms]
scope = scope.by_terms(filter[:terms])
end
scope scope
end end
private
def filter_by_terms(scope)
result = scope.by_terms(filter[:terms])
posts_with_quotes = result.where.not(quoted_post_id: nil)
posts_without_quotes = result.where(quoted_post_id: nil)
quotes_ids = posts_with_quotes.pluck(:quoted_post_id)
quoted_posts = Post.where(id: quotes_ids).by_terms(filter[:terms])
posts_without_quotes.or(quoted_posts).order(created_at: :desc)
end
end end

View File

@@ -33,5 +33,29 @@ RSpec.describe PostsQueryResolverService, type: :service do
).to eq([post1, post2]) ).to eq([post1, post2])
end end
end end
context 'when filtering by terms' do
it 'returns only posts with terms' do
followed_user = create(:user)
create(:user_follow, follower_id: current_user.id, followed_id: followed_user.id)
post1 = create(:post, user_id: followed_user.id, content: 'um')
post2 = create(:post, user_id: followed_user.id, content: 'dois')
post3 = create(:post, content: 'tres', quoted_post_id: post2.id)
post4 = create(:post, content: 'dois', quoted_post_id: post2.id)
expect(
described_class.call({ terms: 'um' }, current_user)
).to eq([post1])
expect(
described_class.call({ terms: 'dois' }, current_user)
).to eq([post2])
expect(
described_class.call({ terms: 'tres' }, current_user)
).to eq([])
end
end
end end
end end