pg_rails 7.6.10 → 7.6.11

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: 893c71adcb5816e5cbd09b2860163a03d84c56a4980388578f22ce31dd75e2c6
4
- data.tar.gz: 8debfcd4a503776a404c284add03df833a2e95efea61ba51e67068203bd72492
3
+ metadata.gz: 94ce6725dc3bda0f243cac15789f9b1e8bae483a2c7a27a03b90be4c574605cb
4
+ data.tar.gz: 1ddac002f2e007ab5a86bb66a3eb387a576fa3cedb7c177e9acd61e1d19136bd
5
5
  SHA512:
6
- metadata.gz: ee18015d09a9ab2940295018f8cb5e8feb2bebb015e90b18984971f6194360cb205b614d5649155df68cbc619f173f3dcb46c9df6aa4f3f3166a00841cb244ef
7
- data.tar.gz: 77223fb87d0035b0165b4c0edf47830dfc5493a07ec567bc6628a8c3d3407dc2d16030b03d5502d310f8fbf0d2602293b1b63c82d0912166186449798db3beed
6
+ metadata.gz: 57f79bbcb61c6b7ece9205bf9518c4c955796d209672882fdd337c54af8741cd07b7d1cca667537bd3271adddcedd94bb8acf1e9da25f13b2d5cb5c99b06ea3c
7
+ data.tar.gz: c8fba7e89d87b571085f923130bf5a081aaac7c345c910b47024317a06d9d84be18d887a6e526bd769fac1b4513cf1cb7fb9b23b61cafa3a847c53dde70bf6b4
@@ -16,10 +16,9 @@ module PgAssociable
16
16
  query = params[:query]
17
17
  timeout_id = params[:timeout_id]
18
18
  @collection = search_in_scope(query)
19
- @count = @collection.count
20
19
  render turbo_stream:
21
20
  turbo_stream.update("#{resultados_prefix}-#{params[:id]}",
22
- partial:, locals: { collection: @collection, query:, timeout_id:, count: @count })
21
+ partial:, locals: { collection: @collection, query:, timeout_id:, clase_modelo: })
23
22
  end
24
23
 
25
24
  def search_in_scope(query)
@@ -1,7 +1,8 @@
1
- / # locals: (collection:, query:, timeout_id:, count:, field_name: nil)
1
+ / # locals: (collection:, query:, timeout_id:, field_name: nil, clase_modelo: nil)
2
2
  .resultados.inline tabindex="-1"
3
3
  div data-controller="clear-timeout" data-timeout-id="#{timeout_id}"
4
4
  ul.list-group.list-group-flush
5
+ - count = collection.count
5
6
  - if count.positive?
6
7
  .text-center.fst-italic.text-secondary.pt-1 style="font-size:0.7em"
7
8
  | #{count} resultados para "#{query}"
@@ -14,7 +15,7 @@
14
15
  li [class="list-group-item text-center text-warning-emphasis py-2" style="font-size: 0.85em"]
15
16
  | No hay resultados para "#{query}"
16
17
 
17
- - if policy(clase_modelo).new_from_associable?
18
+ - if clase_modelo.present? && policy(clase_modelo).new_from_associable?
18
19
  / TODO: unificar código repetido en asociable_controller.js
19
20
  a [key="new" href="javascript:void(0)" class="list-group-item mt-3 text-center"
20
21
  data-action="asociable#crearItem"]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PgRails
4
- VERSION = '7.6.10'
4
+ VERSION = '7.6.11'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pg_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.6.10
4
+ version: 7.6.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso