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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94ce6725dc3bda0f243cac15789f9b1e8bae483a2c7a27a03b90be4c574605cb
|
4
|
+
data.tar.gz: 1ddac002f2e007ab5a86bb66a3eb387a576fa3cedb7c177e9acd61e1d19136bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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:,
|
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:,
|
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"]
|
data/pg_rails/lib/version.rb
CHANGED