pg_rails 7.6.36 → 7.6.38

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: 20a3fea092d9387189d95280d69b7019af848c240e1c8a7a93eab799c9e76b17
4
+ data.tar.gz: 454055be44d495543b4dfa061e279661859c323ad61b9f2a5fd5961fe968348f
5
5
  SHA512:
6
- metadata.gz: 96b9f2c3933b26fd11784fc7310e444cc3acee80ac459764f9b4b642f142ddae0eb37a308a54fb9cc924a591c08fd297b740a25f65fc24c86fdc0f6637139c39
7
- data.tar.gz: 6297e77049497b5c341e7260d22b9fe36e6dd7e0d8d94c37c8037df36eddf45c2c9c5ef3f9c80bd2ac1421f54ad50e1fba6bcbb17c9491dc5c0d5a26224d3bc5
6
+ metadata.gz: 0ae918536ff74a313ae01832b3836b3df23cf6012c1d9b77fbc9ad148b50cd1d3cfcbdd9a89db89e607ae6eeb60c2b032714e4fd26cec649b0f4ec5347b8bc7e
7
+ data.tar.gz: 6cb6ccdc9c247047d2b8a0001387efa332dcd353027d49273176e8d51e13c1f01aa206883cf20409f8cbc449a70818ce25646dd43ac208e6002904654ff99e31
@@ -174,7 +174,9 @@ export default class extends Controller {
174
174
 
175
175
  mostrarError () {
176
176
  if (this.element.querySelector('.resultados .spinner-border')) {
177
+ // TODO: rastrear causa, probablemente sea por websocket desconectado.
177
178
  Rollbar.error('Time out de asociable.js')
179
+
178
180
  // TODO: link a contacto
179
181
  this.subWrapper.innerHTML = renderToStaticMarkup(
180
182
  <div className="resultados" tabIndex={-1}>
@@ -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)
@@ -4,6 +4,7 @@
4
4
  ActiveStorage::DirectUploadsController.class_eval do
5
5
  alias_method :old_blob_args, :blob_args
6
6
 
7
+ # FIXME: testear
7
8
  def blob_args
8
9
  old_blob_args.merge(service_name: :local)
9
10
  end
@@ -2,6 +2,7 @@
2
2
 
3
3
  wb = xlsx_package.workbook
4
4
 
5
+ # FIXME: add colspaned header with model name
5
6
  title = wb.styles.add_style(
6
7
  b: true, sz: 13, bg_color: '1a172f', fg_color: 'ebebeb'
7
8
  # alignment: { horizontal: :center, vertical: :center }
@@ -110,7 +110,7 @@ module PgEngine
110
110
  end
111
111
 
112
112
  def rainbow_wrap(mensaje, type)
113
- Rainbow(mensaje).bold.send(color_for(type))
113
+ mensaje.split("\n").map { Rainbow(_1).bold.send(color_for(type)) }.join("\n")
114
114
  end
115
115
 
116
116
  def color_for(type)
@@ -1,5 +1,5 @@
1
1
  - content_for :content do
2
- - klass = modal_targeted? ? '' : (yield(:container_class) || 'container-fluid')
2
+ - klass = modal_targeted? ? '' : (yield(:container_class).presence || 'container-fluid')
3
3
  div class="pt-3 #{klass}" style=yield(:container_style)
4
4
  = content_for?(:containerized_content) ? yield(:containerized_content) : yield
5
5
 
@@ -50,3 +50,10 @@ Capybara.register_driver :selenium_chrome_headless_iphone,
50
50
  Capybara.register_driver :selenium_chrome_debugger, &chrome_driver_gen(headless: false, debugger: true)
51
51
 
52
52
  Capybara.javascript_driver = ENV.fetch('DRIVER') { 'selenium_chrome_notebook' }.to_sym
53
+
54
+ RSpec.configure do |config|
55
+ config.before(:each, type: :system) do
56
+ driven_by ENV.fetch('DRIVER', :selenium_chrome_headless_iphone).to_sym,
57
+ using: ENV.fetch('BROWSER', :headless_chrome).to_sym
58
+ end
59
+ end
@@ -2,6 +2,6 @@
2
2
 
3
3
  # :nocov:
4
4
  module PgRails
5
- VERSION = '7.6.36'
5
+ VERSION = '7.6.38'
6
6
  end
7
7
  # :nocov:
metadata CHANGED
@@ -1,14 +1,14 @@
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.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - Martín Rosso
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-04-02 00:00:00.000000000 Z
11
+ date: 2025-04-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails