pg_rails 7.6.36 → 7.6.37
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: d78d6754e8cd67e2b293e26fa01585fefdefb68fd030a3ad00a420119ecdcdff
|
4
|
+
data.tar.gz: 62cf672c47ff40c4bb45d58880643955450d7db7069ebd4df92cffce4283bba8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7443db791d97a49a3755d4922c855202522c4a1a980b4c66f44fa45733131827f5c88cc059a88ad2f21495d21e3f226d9fe39ad8af2d420bf2a28ee05f177924
|
7
|
+
data.tar.gz: 870d9f4006606617247fecd04e93a832ecd13da8d844e0f1086cc4dfdd9da735fd6508167a4e8e29f658ebb5763867a0e68c662d86a889c019f0d1f20d246851
|
@@ -5,7 +5,8 @@ module PgEngine
|
|
5
5
|
def self.included(clazz)
|
6
6
|
clazz.include RansackMemory::Concern
|
7
7
|
clazz.prepend_before_action :authenticate_user!
|
8
|
-
|
8
|
+
# dsfil: dont save filters
|
9
|
+
clazz.before_action :save_and_load_filters, unless: -> { params[:dsfil] == '1' }
|
9
10
|
end
|
10
11
|
end
|
11
12
|
end
|
@@ -51,11 +51,15 @@ module PgEngine
|
|
51
51
|
@campos.each { |campo| @filtros[campo] = {} }
|
52
52
|
end
|
53
53
|
|
54
|
-
def
|
54
|
+
def configure(campo, config)
|
55
55
|
# TODO: mergear
|
56
|
-
@filtros[campo] =
|
56
|
+
@filtros[campo] = config
|
57
57
|
end
|
58
58
|
|
59
|
+
# TODO: deprecar
|
60
|
+
alias opciones configure
|
61
|
+
deprecate :opciones, deprecator: PgEngine.deprecator
|
62
|
+
|
59
63
|
# querys customizadas por campo
|
60
64
|
def query(campo, &block)
|
61
65
|
@filtros[campo] = {} if @filtros[campo].nil?
|
@@ -160,8 +164,8 @@ module PgEngine
|
|
160
164
|
raise PgEngine::Error, 'se debe setear el form' if @form.blank?
|
161
165
|
|
162
166
|
res = ''
|
163
|
-
@filtros.each do |campo,
|
164
|
-
if
|
167
|
+
@filtros.each do |campo, config|
|
168
|
+
if config[:oculto] ||
|
165
169
|
(options[:except].present? && options[:except].include?(campo.to_sym)) ||
|
166
170
|
(options[:only].present? && options[:only].exclude?(campo.to_sym))
|
167
171
|
next
|
@@ -249,10 +253,21 @@ module PgEngine
|
|
249
253
|
end
|
250
254
|
|
251
255
|
def filtro_select(campo, placeholder = '')
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
+
config = @filtros[campo]
|
257
|
+
|
258
|
+
map = if config[:options].present?
|
259
|
+
if config[:options].first.is_a? Enumerize::Value
|
260
|
+
config[:options].map { |v| [v.text, v.value] }
|
261
|
+
else
|
262
|
+
config[:options]
|
263
|
+
end
|
264
|
+
else
|
265
|
+
@clase_modelo.send(sin_sufijo(campo)).values.map do |key|
|
266
|
+
[I18n.t("#{@clase_modelo.to_s.underscore}.#{sin_sufijo(campo)}.#{key}", default: key.text),
|
267
|
+
key.value]
|
268
|
+
end
|
269
|
+
end
|
270
|
+
|
256
271
|
content_tag :div, class: 'col-auto' do
|
257
272
|
content_tag :div, class: "filter #{active_class(campo)}" do
|
258
273
|
suf = extraer_sufijo(campo)
|
data/pg_rails/lib/version.rb
CHANGED