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: 15826d7f758337068682991844f212e34828b09f4fe9e6ad2e4e8a134b197ecb
4
- data.tar.gz: 54c484be1abf1c860de9f5a73b3f039d588a568fd9d45e72c96d370609003571
3
+ metadata.gz: d78d6754e8cd67e2b293e26fa01585fefdefb68fd030a3ad00a420119ecdcdff
4
+ data.tar.gz: 62cf672c47ff40c4bb45d58880643955450d7db7069ebd4df92cffce4283bba8
5
5
  SHA512:
6
- metadata.gz: 96b9f2c3933b26fd11784fc7310e444cc3acee80ac459764f9b4b642f142ddae0eb37a308a54fb9cc924a591c08fd297b740a25f65fc24c86fdc0f6637139c39
7
- data.tar.gz: 6297e77049497b5c341e7260d22b9fe36e6dd7e0d8d94c37c8037df36eddf45c2c9c5ef3f9c80bd2ac1421f54ad50e1fba6bcbb17c9491dc5c0d5a26224d3bc5
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
- clazz.before_action :save_and_load_filters
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 opciones(campo, opciones)
54
+ def configure(campo, config)
55
55
  # TODO: mergear
56
- @filtros[campo] = opciones
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, opciones|
164
- if opciones[:oculto] ||
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
- map = @clase_modelo.send(sin_sufijo(campo)).values.map do |key|
253
- [I18n.t("#{@clase_modelo.to_s.underscore}.#{campo}.#{key}", default: key.humanize),
254
- key.value]
255
- end
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)
@@ -2,6 +2,6 @@
2
2
 
3
3
  # :nocov:
4
4
  module PgRails
5
- VERSION = '7.6.36'
5
+ VERSION = '7.6.37'
6
6
  end
7
7
  # :nocov:
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.36
4
+ version: 7.6.37
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso