tabulatr2 0.9.46 → 0.9.47

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: f41f421f2b5c05c35dc912a034b114706e2281d52441f78441c9c3fadb09557f
4
- data.tar.gz: bb97bea3acf941cff212cc230cad2befcef4bcc6be21654c22e9a0307fe16905
3
+ metadata.gz: 5dcccfb8018a85997ce1e6645fbc01a16a4db014fc25eee4a364b561a846fce2
4
+ data.tar.gz: 0ed7c9e6ddf4dde151edc68ff914c2a30f3cfe6720df3fb928b36310f9d3776e
5
5
  SHA512:
6
- metadata.gz: 1bce2f2d71ce8dbf4f49efffc567ad2d828dddde65a9e4fa1507636cfcbfa358c96dd5ad32321b840c8272ba1e5207d17c48929ab48576eead97bb4e316ed014
7
- data.tar.gz: a47a5311d2b87de12ac9fbb112cc26c18c2ef6e60a6404e82e5d2b558d7359580935f3f54a8aa06c2d4d5cf401dc97bbe4ca09495856a89333b1429e56128fa8
6
+ metadata.gz: 68ecf2a9df11419a27f87c57947985f90fb8782d11c89b6430544df8d73d02cd375a5f86d558847f141edbb63207c70dd067ef9bba92ecaaf8e3ec954feca222
7
+ data.tar.gz: cf1627feddae12607afcff88995223837d07907705649303ce2a72f0cd1e0186e408647594f44ba720a7131e444ed83d032b33cc05de4fc7d2ac7a94a0e6b683
@@ -34,6 +34,7 @@ module Tabulatr::Data::DSL
34
34
  opts = {
35
35
  sort_sql: sql_options[:sort_sql],
36
36
  filter: true,
37
+ default_filter: nil,
37
38
  sortable: true,
38
39
  filter_sql: sql_options[:filter_sql]}.merge(opts)
39
40
  table_column = Tabulatr::Renderer::Column.from(
@@ -42,8 +42,13 @@ module Tabulatr::Data::Filtering
42
42
  end
43
43
 
44
44
  def apply_filters(filter_params)
45
- return unless filter_params
46
- filter_params.permit!.to_hash.with_indifferent_access.each do |param|
45
+ default_filters = table_columns.map do |col|
46
+ next if col.col_options.default_filter.nil?
47
+ ["#{col.table_name}:#{col.name}", col.col_options.default_filter]
48
+ end.compact.to_h
49
+ return unless filter_params || default_filters.present?
50
+ filters = default_filters.merge(filter_params&.permit! || {})
51
+ filters.to_hash.with_indifferent_access.each do |param|
47
52
  name, value = param
48
53
  next unless value.present?
49
54
 
@@ -2,7 +2,9 @@ module Tabulatr
2
2
  class ParamsBuilder
3
3
  ALLOWED_PARAMS = [:header, :filter, :sortable, :data_html,
4
4
  :header_html, :filter_sql, :sort_sql, :sql, :width,
5
- :align, :wrap, :format, :filter_label, :name, :classes]
5
+ :align, :wrap, :format, :filter_label, :name, :classes,
6
+ :default_filter
7
+ ]
6
8
  DEPRECATED_PARAMS = []
7
9
 
8
10
  attr_accessor *ALLOWED_PARAMS
@@ -22,5 +22,5 @@
22
22
  #++
23
23
 
24
24
  module Tabulatr
25
- VERSION = "0.9.46"
25
+ VERSION = "0.9.47"
26
26
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabulatr2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.46
4
+ version: 0.9.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Horn
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2024-01-10 00:00:00.000000000 Z
13
+ date: 2024-03-15 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails