meilisearch-rails 0.14.2 → 0.14.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dab897ac0b83c33721dc40eab5be2d2cc5013c14380a1d47df590f44339433fc
4
- data.tar.gz: d99e1fd1970915a665a328233df77bf526f0510478fa2087b502a6224e8a2635
3
+ metadata.gz: babcf0719c23af9294b52e76c7549cacf9baeb578221c18cf2be53db5bbeaaa1
4
+ data.tar.gz: 33aee866b13502a67657a5803d395fbcebe737456e2f45e812b1312074b5b7df
5
5
  SHA512:
6
- metadata.gz: 67e71e231498dd94223096fd3bb02a7f79a8861a4a013f3a628ee3141db3436e323df1cd671caeb20937fe39533c558bd540c4eceae6f6b69713a3af8ceb1a93
7
- data.tar.gz: 23ac15e8d4d42a1af5d9f2c38e84b9e7c810979af2ca8264eb818b80aaaf84d2ad973512857f2c40c0708dee82a6d67ddc2097e542cc71c4e64f7bc1cb72edbe
6
+ metadata.gz: 230fc45c263f5aa10ff137eba952673eed221a33bae3ae1c5cb7cfe35adbdc50d9399feaeaf20c7766fd78bf0c29ed440de08880de8f5c2e9d7889bcf6d107c5
7
+ data.tar.gz: 18bbbc7a7fd9cb64bf1f2429234c10c56b1c3c88a044909a3b01f1e4ceb276449f61cc6ceb52148131c44b8d5dfbeeb09438953dff15ff9857b3d9e7864e2ccd
data/README.md CHANGED
@@ -241,22 +241,7 @@ multi_search_results = MeiliSearch::Rails.multi_search(
241
241
  )
242
242
  ```
243
243
 
244
- You can iterate through the results with `.each` or `.each_result`:
245
-
246
- ```erb
247
- <% multi_search_results.each do |record| %>
248
- <p><%= record.title %></p>
249
- <p><%= record.author %></p>
250
- <% end %>
251
-
252
- <p>Harry Potter and the Philosopher's Stone</p>
253
- <p>J. K. Rowling</p>
254
- <p>Harry Potter and the Chamber of Secrets</p>
255
- <p>J. K. Rowling</p>
256
- <p>Attack on Titan</p>
257
- <p>Iseyama</p>
258
- ```
259
-
244
+ Use `#each_result` to loop through pairs of your provided keys and the results:
260
245
  ```erb
261
246
  <% multi_search_results.each_result do |klass, results| %>
262
247
  <p><%= klass.name.pluralize %></p>
@@ -280,6 +265,59 @@ You can iterate through the results with `.each` or `.each_result`:
280
265
  </ul>
281
266
  ```
282
267
 
268
+ Records are loaded when the keys are models, or when `:class_name` option is passed:
269
+
270
+ ```ruby
271
+ multi_search_results = MeiliSearch::Rails.multi_search(
272
+ 'books' => { q: 'Harry', class_name: 'Book' },
273
+ 'mangas' => { q: 'Attack', class_name: 'Manga' }
274
+ )
275
+ ```
276
+
277
+ Otherwise, hashes are returned.
278
+
279
+ The index to search is inferred from the model if the key is a model, if the key is a string the key is assumed to be the index unless the `:index_uid` option is passed:
280
+
281
+ ```ruby
282
+ multi_search_results = MeiliSearch::Rails.multi_search(
283
+ 'western' => { q: 'Harry', class_name: 'Book', index_uid: 'books_production' },
284
+ 'japanese' => { q: 'Attack', class_name: 'Manga', index_uid: 'mangas_production' }
285
+ )
286
+ ```
287
+
288
+ ### Multi search the same index <!-- omit in toc -->
289
+
290
+ You can search the same index multiple times by specifying `:index_uid`:
291
+
292
+ ```ruby
293
+ query = 'hero'
294
+ multi_search_results = MeiliSearch::Rails.multi_search(
295
+ 'Isekai Manga' => { q: query, class_name: 'Manga', filters: 'genre:isekai', index_uid: 'mangas_production' }
296
+ 'Shounen Manga' => { q: query, class_name: 'Manga', filters: 'genre:shounen', index_uid: 'mangas_production' }
297
+ 'Steampunk Manga' => { q: query, class_name: 'Manga', filters: 'genre:steampunk', index_uid: 'mangas_production' }
298
+ )
299
+ ```
300
+
301
+ ### Deprecated #each <!-- omit in toc -->
302
+
303
+ **DEPRECATED:** You used to be able to iterate through a flattened collection with `.each`:
304
+
305
+ ```erb
306
+ <% multi_search_results.each do |record| %>
307
+ <p><%= record.title %></p>
308
+ <p><%= record.author %></p>
309
+ <% end %>
310
+
311
+ <p>Harry Potter and the Philosopher's Stone</p>
312
+ <p>J. K. Rowling</p>
313
+ <p>Harry Potter and the Chamber of Secrets</p>
314
+ <p>J. K. Rowling</p>
315
+ <p>Attack on Titan</p>
316
+ <p>Iseyama</p>
317
+ ```
318
+
319
+ But this has been deprecated in favor of **federated search**.
320
+
283
321
  See the [official multi search documentation](https://www.meilisearch.com/docs/reference/api/multi_search).
284
322
 
285
323
  ## 🪛 Options
@@ -7,34 +7,57 @@ module MeiliSearch
7
7
  @results = {}
8
8
  @metadata = {}
9
9
 
10
- searches.zip(raw_results['results']).each do |(index_target, search_options), result|
11
- index_target = search_options[:class_name].constantize if search_options[:class_name]
10
+ searches.zip(raw_results['results']).each do |(target, search_options), result|
11
+ results_class = if search_options[:class_name]
12
+ search_options[:class_name].constantize
13
+ elsif target.instance_of?(Class)
14
+ target
15
+ end
12
16
 
13
- @results[index_target] = case index_target
14
- when String, Symbol
15
- result['hits']
16
- else
17
- load_results(index_target, result)
18
- end
17
+ @results[target] = results_class ? load_results(results_class, result) : result['hits']
19
18
 
20
- @metadata[index_target] = result.except('hits')
19
+ @metadata[target] = result.except('hits')
21
20
  end
22
21
  end
23
22
 
24
23
  include Enumerable
25
24
 
26
25
  def each_hit(&block)
27
- @results.each do |_index_target, results|
26
+ MeiliSearch::Rails.logger.warn(
27
+ <<~DEPRECATION
28
+ [meilisearch-rails] Flattening multi search results is deprecated.
29
+ If you do not want the results to be grouped, please use federated search instead.
30
+ DEPRECATION
31
+ )
32
+
33
+ @results.each_value do |results|
28
34
  results.each(&block)
29
35
  end
30
36
  end
31
- alias each each_hit
37
+
38
+ def each(&block)
39
+ MeiliSearch::Rails.logger.info(
40
+ <<~INFO
41
+ [meilisearch-rails] #each on a multi search now iterates through grouped results.
42
+ If you do not want the results to be grouped, please use federated search instead.
43
+ To quickly go back to the old deprecated behavior, use `#each_hit`.
44
+ INFO
45
+ )
46
+
47
+ @results.each(&block)
48
+ end
32
49
 
33
50
  def each_result(&block)
34
51
  @results.each(&block)
35
52
  end
36
53
 
37
54
  def to_a
55
+ MeiliSearch::Rails.logger.warn(
56
+ <<~DEPRECATION
57
+ [meilisearch-rails] Flattening multi search results is deprecated.
58
+ If you do not want the results to be grouped, please use federated search instead.
59
+ DEPRECATION
60
+ )
38
61
  @results.values.flatten(1)
39
62
  end
40
63
  alias to_ary to_a
@@ -5,6 +5,8 @@ module MeiliSearch
5
5
  class << self
6
6
  def multi_search(searches)
7
7
  search_parameters = searches.map do |(index_target, options)|
8
+ index_target = options.delete(:index_uid) || index_target
9
+
8
10
  paginate(options) if pagination_enabled?
9
11
  normalize(options, index_target)
10
12
  end
@@ -18,11 +18,14 @@ module MeiliSearch
18
18
  end
19
19
 
20
20
  def self.create(results, total_hits, options = {})
21
- offset = ((options[:page] - 1) * options[:per_page])
22
- total_hits = 0 if total_hits.nil?
23
- offset = 0 if offset.nil?
24
- limit = 0 if options[:per_page].nil?
25
- array = new results, limit: limit, offset: offset, total_count: total_hits
21
+ unless MeiliSearch::Rails.active?
22
+ total_hits = 0
23
+ options[:page] = 1
24
+ options[:per_page] = 1
25
+ end
26
+
27
+ offset = (options[:page] - 1) * options[:per_page]
28
+ array = new results, limit: options[:per_page], offset: offset, total_count: total_hits
26
29
 
27
30
  if array.empty? && !results.empty?
28
31
  # since Kaminari 0.16.0, you need to pad the results with nil values so it matches the offset param
@@ -10,6 +10,12 @@ module MeiliSearch
10
10
  module Pagination
11
11
  class WillPaginate
12
12
  def self.create(results, total_hits, options = {})
13
+ unless MeiliSearch::Rails.active?
14
+ total_hits = 0
15
+ options[:page] = 1
16
+ options[:per_page] = 1
17
+ end
18
+
13
19
  ::WillPaginate::Collection.create(options[:page], options[:per_page], total_hits) do |pager|
14
20
  pager.replace results
15
21
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  module MeiliSearch
4
4
  module Rails
5
- VERSION = '0.14.2'
5
+ VERSION = '0.14.3'
6
6
 
7
7
  def self.qualified_version
8
8
  "Meilisearch Rails (v#{VERSION})"
@@ -415,7 +415,7 @@ module MeiliSearch
415
415
  raise ArgumentError, "Invalid `enqueue` option: #{options[:enqueue]}"
416
416
  end
417
417
  meilisearch_options[:enqueue] = proc do |record, remove|
418
- proc.call(record, remove) unless ms_without_auto_index_scope
418
+ proc.call(record, remove) if ::MeiliSearch::Rails.active? && !ms_without_auto_index_scope
419
419
  end
420
420
  end
421
421
  unless options[:auto_index] == false
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meilisearch-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.2
4
+ version: 0.14.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Meili
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-01-15 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: meilisearch