active_scaffold 4.0.3 → 4.0.4.2

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: ce387b6ca519e9e9d6dc988524ffff98d3bdeaf6e142311381834421b2bcda20
4
- data.tar.gz: 5634748e0efd3adac51276052ca840c582e1693593e03e1e3db364043c686f79
3
+ metadata.gz: 2e44db1771ebfc1694b53b616d22d0246bbae5b1346b04a67b0cf4caf95e7ea9
4
+ data.tar.gz: a6e861d18892297f0f6dfa2e330539a25b7547565290b60521cce82b5500ea02
5
5
  SHA512:
6
- metadata.gz: 99c906010233a6cc88ad91b9921c6b4ecfb64a123a191f74253a73cc5571b744e7b1fa3f8f0cd41ac2d5ce4c46f4438d2eafbfd01d5b2df23689589a70439f6f
7
- data.tar.gz: cd7afd2d8123f8a33c36b5e36575c3f1642f358d2b67ff29d071f8e2ed26a5c0a508c80934a92e920c653e79d20b94b754428113cfaa988a642fad6def9a20f7
6
+ metadata.gz: '033404898fecbf94f080b3fe2b2cdd4d6ba17d1d2f5d8f90dfbab1802e77ccbc94d5ed324b841231d2eed3d67e1566b8d0db7097148ceb34c0f894c672d4139e'
7
+ data.tar.gz: 87ce1767d5d384df6f539d83be6c294d20a65b77e88474046f04d4e5c4276e666ad96e1cd374d8508d866f8ebbc9fa6a0aa8eed93e843046cd6f76c347d8db3c
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,6 @@
1
+ = 4.0.4.2
2
+ - Support show key in helpers for search date/datetime, to change default condition to render it hidden
3
+
1
4
  = 4.0.3
2
5
  - Fix for jQuery 3
3
6
  - Fix position popup for collection action links
@@ -304,12 +304,6 @@
304
304
  return true;
305
305
  });
306
306
 
307
- jQuery(document).on('change', 'select.as_update_date_operator', function(event) {
308
- ActiveScaffold[jQuery(this).val() == 'REPLACE' ? 'show' : 'hide'](jQuery(this).next());
309
- ActiveScaffold[jQuery(this).val() == 'REPLACE' ? 'hide' : 'show'](jQuery(this).next().next());
310
- return true;
311
- });
312
-
313
307
  jQuery(document).on('click', '.active-scaffold .sub-form a.destroy', function(event) {
314
308
  event.preventDefault();
315
309
  ActiveScaffold.delete_subform_record($(this).data('delete-id'));
@@ -323,9 +323,10 @@ module ActiveScaffold
323
323
  safe_join([' - ', send(helper, column, options, current_search, 'to', ui_options: ui_options)])
324
324
  end
325
325
  ]
326
+ show = current_search.key?(:show) ? current_search[:show] : ActiveScaffold::Finder::NUMERIC_COMPARATORS.include?(current_search['opt'])
326
327
  content_tag('span', safe_join(numeric_controls),
327
328
  id: "#{options[:id]}_numeric", class: 'search-date-numeric',
328
- style: ActiveScaffold::Finder::NUMERIC_COMPARATORS.include?(current_search['opt']) ? nil : 'display: none')
329
+ style: ('display: none' unless show))
329
330
  end
330
331
 
331
332
  def active_scaffold_search_datetime_trend_tag(column, options, current_search)
@@ -335,9 +336,10 @@ module ActiveScaffold
335
336
  options_for_select(active_scaffold_search_datetime_trend_units(column), current_search['unit']),
336
337
  class: 'text-input')
337
338
  ]
339
+ show = current_search.key?(:show) ? current_search[:show] : current_search['opt'] == 'PAST' || current_search['opt'] == 'FUTURE'
338
340
  content_tag('span', safe_join(trend_controls, ' '),
339
341
  id: "#{options[:id]}_trend", class: 'search-date-trend',
340
- style: ('display: none' unless current_search['opt'] == 'PAST' || current_search['opt'] == 'FUTURE'))
342
+ style: ('display: none' unless show))
341
343
  end
342
344
 
343
345
  def active_scaffold_search_datetime_trend_units(column)
@@ -351,9 +353,10 @@ module ActiveScaffold
351
353
  range_controls = select_tag("#{options[:name]}[range]",
352
354
  options_for_select(values, current_search['range']),
353
355
  class: 'text-input', id: nil)
356
+ show = current_search.key?(:show) ? current_search[:show] : current_search['opt'] == 'RANGE'
354
357
  content_tag('span', range_controls,
355
358
  id: "#{options[:id]}_range", class: 'search-date-range',
356
- style: ('display: none' unless current_search['opt'] == 'RANGE'))
359
+ style: ('display: none' unless show))
357
360
  end
358
361
 
359
362
  def column_datetime?(column)
@@ -2,8 +2,8 @@ module ActiveScaffold
2
2
  module Version
3
3
  MAJOR = 4
4
4
  MINOR = 0
5
- PATCH = 3
6
- FIX = nil
5
+ PATCH = 4
6
+ FIX = 2
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, FIX].compact.join('.')
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_scaffold
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.3
4
+ version: 4.0.4.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Many, see README
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-03-28 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