pg_rails 7.6.35 → 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: b2749a5b4bfd158279a0e768b5a8e379302b2c71d0ace5e6162a2ad1eef01adc
4
- data.tar.gz: 649a2ab01df77e08404832d84b17ae66fd64e383343a165e2c83d6856dd93467
3
+ metadata.gz: d78d6754e8cd67e2b293e26fa01585fefdefb68fd030a3ad00a420119ecdcdff
4
+ data.tar.gz: 62cf672c47ff40c4bb45d58880643955450d7db7069ebd4df92cffce4283bba8
5
5
  SHA512:
6
- metadata.gz: 8b5a1340887f5c9be83055c40e2316741176aea1810fc28dfe77f3475cefebb557e07f6de6f2e081517fafc6d53a6f14106e9145101d8316b2b91421f114fdf3
7
- data.tar.gz: 4b3974156468841816dddefa932d7f132448f3e3218e9a41f2911f646361e74bd4c7ed4a2bf6cd98e57cf6dc11f7383f2f98eec9d5107ed4dfe3213f306b1270
6
+ metadata.gz: 7443db791d97a49a3755d4922c855202522c4a1a980b4c66f44fa45733131827f5c88cc059a88ad2f21495d21e3f226d9fe39ad8af2d420bf2a28ee05f177924
7
+ data.tar.gz: 870d9f4006606617247fecd04e93a832ecd13da8d844e0f1086cc4dfdd9da735fd6508167a4e8e29f658ebb5763867a0e68c662d86a889c019f0d1f20d246851
@@ -45,6 +45,9 @@ nav[aria-label=breadcrumb] a {
45
45
  .trix-content figure a:hover {
46
46
  text-decoration: underline;
47
47
  }
48
+ .trix-content .attachment--preview {
49
+ width: 100px;
50
+ }
48
51
 
49
52
  input[disabled] {
50
53
  background-color: #e9e9ed;
@@ -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)
@@ -146,7 +146,7 @@ class User < ApplicationRecord
146
146
  end
147
147
 
148
148
  def first_first_name
149
- nombre.strip.split.first.presence || to_s
149
+ (nombre || '').strip.split.first.presence || to_s
150
150
  rescue StandardError => e
151
151
  # :nocov:
152
152
  pg_warn(e)
@@ -1,6 +1,6 @@
1
1
  <figure class="attachment attachment--<%= blob.representable? ? "preview" : "file" %> attachment--<%= blob.filename.extension %>">
2
2
  <% if blob.representable? %>
3
- <%= image_tag blob.representation(resize_to_limit: local_assigns[:in_gallery] ? [ 800, 600 ] : [ 1024, 768 ]) %>
3
+ <%= image_tag blob.representation(resize_to_limit: local_assigns[:in_gallery] ? [ 400, 300 ] : [ 100, 75 ]) %>
4
4
  <% end %>
5
5
 
6
6
  <%= link_to rails_blob_path(blob) do %>
@@ -42,7 +42,7 @@ end
42
42
  back_to_index: 'Volver al listado principal',
43
43
  bulk_edit: {
44
44
  enqueue_update: "Modificación en proceso (podría demorar algunos segundos en completarse)",
45
- blank_ids: PgEngine::I18nRules.rule("No hay %{genderize(ninguna,ningún)} %{singular_model} seleccionada"),
45
+ blank_ids: PgEngine::I18nRules.rule("No hay %{genderize(ninguna,ningún)} %{singular_model} %{genderize(seleccionada,seleccionado)}"),
46
46
  bulk_not_hash: "Debés seleccionar al menos un campo",
47
47
  title: PgEngine::I18nRules.rule("Modificación masiva de %{plural_model}"),
48
48
  link: PgEngine::I18nRules.rule("Modificar masivamente"),
@@ -4,7 +4,7 @@ Rails.application.routes.draw do
4
4
  get "pg_engine/health" => "pg_engine/health#show", as: :pg_engine_health_check
5
5
 
6
6
  get '404', to: 'application#page_not_found'
7
- get '500', to: 'application#internal_error'
7
+ # get '500', to: 'application#handle_internal_error'
8
8
  get 'internal_error_but_with_status200', to: 'application#internal_error_but_with_status200'
9
9
 
10
10
  get 'contacto', to: 'public/mensaje_contactos#new'
@@ -37,8 +37,8 @@
37
37
 
38
38
  FactoryBot.define do
39
39
  factory :user, class: 'User' do
40
- nombre { '' }
41
- apellido { '' }
40
+ nombre { nil }
41
+ apellido { nil }
42
42
  email { Faker::Internet.email }
43
43
  password { "password#{rand(99_999)}" }
44
44
  confirmed_at { Faker::Date.backward }
@@ -19,4 +19,11 @@ RSpec.describe User do
19
19
  expect(results).to eq [user]
20
20
  end
21
21
  end
22
+
23
+ describe '#first_first_name' do
24
+ it do
25
+ user = create(:user, nombre: 'Juan Carlos')
26
+ expect(user.first_first_name).to eq 'Juan'
27
+ end
28
+ end
22
29
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  # :nocov:
4
4
  module PgRails
5
- VERSION = '7.6.35'
5
+ VERSION = '7.6.37'
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.35
4
+ version: 7.6.37
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-03-11 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails