effective_datatables 4.31.0 → 4.31.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44820c2466c8503adb80773c5bc282203a8c1a7be41d931bea08413b2c980644
4
- data.tar.gz: e450c9c54b19fe4c5aa1619f8ee19a893796c1ffb6b88e66be3016feecb2a01f
3
+ metadata.gz: 890644cd1a399947c8b3deb2d12880367b1b225dd6ff41400bf50fa6aaa01b75
4
+ data.tar.gz: dcb2353768e455e880798aac5929413166fe1a756872c0e984bab73706bf064b
5
5
  SHA512:
6
- metadata.gz: 79964cf5b2036ca752a16a2529bdc79f37189990c3296a285ae05792a5218a58af426d9f0165503303caacdbcda98c8b309b50c152debf7ac0ec203c5b20375c
7
- data.tar.gz: 7783cf0f17017eeba8c143138a1d535ed06bfa85c7cb41c73dbf76523d74243f18842b8bb6042c45afbdd1d9aa6d9334bded97d7e2e2e06b4aa1ff4161c0bc12
6
+ metadata.gz: 625aad5dfc3f4e5615e7d6294c17548bb9ae40698311a180635566c290bed3d8ef7a86f13fe2bc526fb77f71a515f1376daaed39cb4ad7804ba3e0f0ea7d38e8
7
+ data.tar.gz: 751a5b50f64124797862d8b194fac5662f939dcd3b2aacf4e707d781ae10477754aa08774494eb8a426ec3944ccd789cdbc30b248a911b7c4eedbfaff4ca2c54
@@ -77,20 +77,23 @@ module Effective
77
77
  )
78
78
 
79
79
  if csv && (opts[:format] || opts[:partial]) && !formatted.frozen?
80
+ html_content = formatted.include?('<') && formatted.include?('>')
81
+
82
+ formatted.gsub!("&nbsp;", ' ')
80
83
  formatted.gsub!("<br>\n", ' ')
81
84
  formatted.gsub!("<br> ", ' ')
82
85
  formatted.gsub!("<br>", ' ')
83
86
  formatted.gsub!("<br/>", ' ')
84
87
  formatted.gsub!("<br />", ' ')
85
- formatted.gsub!("\n\n", ' ')
86
- formatted.gsub!("\n", ' ') unless formatted.include?('<')
87
-
88
- if formatted.include?('<')
89
- formatted.gsub!("\n", '')
90
- formatted.gsub!("<div class='col-resource_item'>", ' ')
88
+ formatted.gsub!("\n", ' ')
91
89
 
90
+ if html_content
91
+ formatted.gsub!(/<span[^>]*\bclass=["']?badge\b[^>]*>.*?<\/span>/, '') # strip badges
92
+ formatted.gsub!('</div>', "</div>\n") if formatted.include?('col-resource_item')
92
93
  formatted = view.strip_tags(formatted).strip
93
94
  end
95
+
96
+ formatted.gsub!(' ', ' ')
94
97
  end
95
98
 
96
99
  row[index] = formatted
@@ -130,7 +133,7 @@ module Effective
130
133
  when :duration
131
134
  view.number_to_duration(value)
132
135
  when :effective_addresses
133
- csv ? value.to_html.gsub('<br>', "\n") : value.to_html
136
+ csv ? value.to_html.gsub('<br>', '').gsub("&nbsp;", ' ') : value.to_html
134
137
  when :effective_obfuscation
135
138
  value.to_s
136
139
  when :effective_roles
@@ -139,7 +142,7 @@ module Effective
139
142
  csv ? value : view.mail_to(value)
140
143
  when :integer
141
144
  value.to_s
142
- when :percent
145
+ when :percent, :percentage
143
146
  case value
144
147
  when Integer ; view.number_to_percentage(value / 1000.0, precision: 3).gsub('.000%', '%')
145
148
  when Numeric ; view.number_to_percentage(value, precision: 3).gsub('.000%', '%')
@@ -1,3 +1,3 @@
1
1
  module EffectiveDatatables
2
- VERSION = '4.31.0'.freeze
2
+ VERSION = '4.31.1'.freeze
3
3
  end
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.31.0
4
+ version: 4.31.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: 2025-01-17 00:00:00.000000000 Z
11
+ date: 2025-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails