effective_datatables 4.14.2 → 4.15.1
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 +4 -4
- data/app/helpers/effective_datatables_private_helper.rb +16 -1
- data/app/models/effective/datatable_value_tool.rb +3 -1
- data/app/models/effective/effective_datatable/csv.rb +11 -1
- data/app/models/effective/effective_datatable/dsl/datatable.rb +2 -2
- data/lib/effective_datatables/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97162d77c01d7bc35d4d9bbda9b7f61d815628c7ded32c1c9c8a0a16e630c42f
|
4
|
+
data.tar.gz: 2bd27055dd9822c798373d0f073dc049ce471401cef071d50320a02f03d5c491
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b7a59f37ce683bfb17e6b75715dee88a9125d26380988d7e9db9fd2c7f818e00235ee7418680d3dad90dabcf3c4e991bfb81ca32b7a4b80556573bf722a7e49f
|
7
|
+
data.tar.gz: 11d06c3f01185c4d92248bb40a32e78376eca5ae6bbbbabd5997a9a4a0a52f4d6ce1fb70bca5b6c50aa4ad60fb747b7060b3aaaf39bae0fbb5d51420cfbe9cef
|
@@ -59,10 +59,25 @@ module EffectiveDatatablesPrivateHelper
|
|
59
59
|
when :reorder
|
60
60
|
content_tag(:span, t('effective_datatables.reorder'), style: 'display: none;')
|
61
61
|
else
|
62
|
-
|
62
|
+
label = opts[:label].presence || datatable_human_attribute_name(datatable, name, opts)
|
63
|
+
content_tag(:span, label)
|
63
64
|
end
|
64
65
|
end
|
65
66
|
|
67
|
+
def datatable_human_attribute_name(datatable, name, opts)
|
68
|
+
return (name.to_s.split('.').last || '').titleize unless datatable.active_record_collection?
|
69
|
+
|
70
|
+
case opts[:as]
|
71
|
+
when :belongs_to
|
72
|
+
opts[:resource].human_name
|
73
|
+
when :has_many
|
74
|
+
opts[:resource].human_plural_name
|
75
|
+
else
|
76
|
+
datatable.collection_class.human_attribute_name(name)
|
77
|
+
end
|
78
|
+
|
79
|
+
end
|
80
|
+
|
66
81
|
def datatable_search_tag(datatable, name, opts)
|
67
82
|
return datatable_new_resource_button(datatable, name, opts) if name == :_actions
|
68
83
|
|
@@ -95,7 +95,9 @@ module Effective
|
|
95
95
|
value = obj_to_value(row[index], column, row)
|
96
96
|
next if value.nil? || value == ''
|
97
97
|
|
98
|
-
|
98
|
+
obj_equals = obj.respond_to?(column[:name]) && obj.send(column[:name]).to_s.downcase == term_downcased
|
99
|
+
|
100
|
+
obj_equals || case column[:as]
|
99
101
|
when :boolean
|
100
102
|
if fuzzy
|
101
103
|
term ? (obj == true) : (obj != true)
|
@@ -15,7 +15,17 @@ module Effective
|
|
15
15
|
end
|
16
16
|
|
17
17
|
def csv_header
|
18
|
-
columns.map
|
18
|
+
columns.map do |name, opts|
|
19
|
+
opts[:label].presence || csv_human_attribute_name(name)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def csv_human_attribute_name(name)
|
24
|
+
if active_record_collection?
|
25
|
+
collection_class.human_attribute_name(name)
|
26
|
+
else
|
27
|
+
(name.to_s.split('.').last || '')
|
28
|
+
end
|
19
29
|
end
|
20
30
|
|
21
31
|
def csv_file
|
@@ -51,7 +51,7 @@ module Effective
|
|
51
51
|
csv: csv,
|
52
52
|
format: (format if block_given?),
|
53
53
|
index: nil,
|
54
|
-
label:
|
54
|
+
label: label,
|
55
55
|
name: name,
|
56
56
|
partial: partial,
|
57
57
|
partial_as: partial_as,
|
@@ -80,7 +80,7 @@ module Effective
|
|
80
80
|
csv: csv,
|
81
81
|
format: nil,
|
82
82
|
index: nil,
|
83
|
-
label:
|
83
|
+
label: label,
|
84
84
|
name: name,
|
85
85
|
partial: partial,
|
86
86
|
partial_as: partial_as,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_datatables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.15.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|