active_scaffold 4.0.2 → 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 +4 -4
- data/CHANGELOG.rdoc +11 -0
- data/README.md +1 -1
- data/app/assets/javascripts/jquery/active_scaffold.js +11 -14
- data/app/assets/javascripts/jquery/jquery.editinplace.js +1 -1
- data/app/assets/stylesheets/active_scaffold_jquery_ui.css.erb +1 -0
- data/lib/active_scaffold/bridges/record_select/helpers.rb +1 -1
- data/lib/active_scaffold/constraints.rb +1 -1
- data/lib/active_scaffold/helpers/form_column_helpers.rb +5 -5
- data/lib/active_scaffold/helpers/list_column_helpers.rb +2 -2
- data/lib/active_scaffold/helpers/search_column_helpers.rb +7 -4
- data/lib/active_scaffold/version.rb +2 -2
- 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: 2e44db1771ebfc1694b53b616d22d0246bbae5b1346b04a67b0cf4caf95e7ea9
|
4
|
+
data.tar.gz: a6e861d18892297f0f6dfa2e330539a25b7547565290b60521cce82b5500ea02
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '033404898fecbf94f080b3fe2b2cdd4d6ba17d1d2f5d8f90dfbab1802e77ccbc94d5ed324b841231d2eed3d67e1566b8d0db7097148ceb34c0f894c672d4139e'
|
7
|
+
data.tar.gz: 87ce1767d5d384df6f539d83be6c294d20a65b77e88474046f04d4e5c4276e666ad96e1cd374d8508d866f8ebbc9fa6a0aa8eed93e843046cd6f76c347d8db3c
|
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
= 4.0.4.2
|
2
|
+
- Support show key in helpers for search date/datetime, to change default condition to render it hidden
|
3
|
+
|
4
|
+
= 4.0.3
|
5
|
+
- Fix for jQuery 3
|
6
|
+
- Fix position popup for collection action links
|
7
|
+
- Fix recordselect in form open with position popup
|
8
|
+
- Fix class of subform on optional subform using add_new option with layout option
|
9
|
+
- Fix constraints with mulitple ids for belongs_to associations with primary_key setting
|
10
|
+
- Fix render_field when a column changes, and a column to refresh exists in a subform with the same name too
|
11
|
+
|
1
12
|
= 4.0.2
|
2
13
|
- Fix using update_columns in field search with search UI submitting a hash, such as date fields
|
3
14
|
- Support disabling update_columsns on field_search
|
data/README.md
CHANGED
@@ -70,7 +70,7 @@ Changing columns for an action (e.g. add or exclude) on a request must use activ
|
|
70
70
|
|
71
71
|
If you have a `_form_association_record` partial view overrided, use `record` local variable instead of `form_association_record`.
|
72
72
|
|
73
|
-
If you have code rendering `form_association_record` partial,
|
73
|
+
If you have code rendering `form_association_record` partial, then pass `record` local variable, or use `as: :record` if using render with collection key.
|
74
74
|
|
75
75
|
Configuration
|
76
76
|
-------------
|
@@ -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'));
|
@@ -356,7 +350,7 @@
|
|
356
350
|
}
|
357
351
|
if ($this.data('select-id')) {
|
358
352
|
select = line.find('#' + $this.data('select-id'));
|
359
|
-
if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').
|
353
|
+
if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').addBack();
|
360
354
|
}
|
361
355
|
if (hide) {
|
362
356
|
subform.hide().find("input:enabled,select:enabled,textarea:enabled").prop('disabled', true);
|
@@ -589,7 +583,7 @@
|
|
589
583
|
if (toggle.is('[type=radio]')) toggle.prop('disabled', true);
|
590
584
|
else if (toggle.data('select-id')) {
|
591
585
|
var select = line.find('#' + toggle.data('select-id'));
|
592
|
-
if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').
|
586
|
+
if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').addBack();
|
593
587
|
select.hide().prop('disabled', true);
|
594
588
|
}
|
595
589
|
} else $this.find("input:enabled,select:enabled,textarea:enabled").prop('disabled', true);
|
@@ -978,14 +972,17 @@
|
|
978
972
|
if (typeof(source) == 'string') source = '#' + source;
|
979
973
|
var source = jQuery(source);
|
980
974
|
var element, container = source.closest('.sub-form-record'), selector = '';
|
981
|
-
if (container.length
|
975
|
+
if (container.length === 0) {
|
982
976
|
container = source.closest('form > ol.form');
|
983
977
|
selector = 'li';
|
984
978
|
}
|
985
979
|
// find without entering new subforms
|
986
|
-
element = container.find(selector + ':not(.sub-form) .' + options.field_class)
|
980
|
+
element = container.find(selector + ':not(.sub-form) .' + options.field_class);
|
981
|
+
if (container.is('.sub-form-record'))
|
982
|
+
element = element.filter(function() { return $(this).closest('.sub-form-record').get(0) === container.get(0); });
|
983
|
+
else element = element.filter(function() { return $(this).closest('.sub-form-record').length === 0; });
|
987
984
|
if (element.length)
|
988
|
-
element = element.closest('dl');
|
985
|
+
element = element.first().closest('dl');
|
989
986
|
else if (options.subform_class)
|
990
987
|
element = container.find(selector + '.' + options.subform_class).first();
|
991
988
|
|
@@ -1235,7 +1232,7 @@
|
|
1235
1232
|
},
|
1236
1233
|
|
1237
1234
|
open_popup: function(content, link) {
|
1238
|
-
var element = jQuery(content).dialog({
|
1235
|
+
var element = jQuery(content).filter(function(){ return this.tagName; }).dialog({
|
1239
1236
|
modal: true,
|
1240
1237
|
close: function() { link.close(); },
|
1241
1238
|
width: ActiveScaffold.config.popup_width || '80%'
|
@@ -1245,7 +1242,7 @@
|
|
1245
1242
|
|
1246
1243
|
close_popup: function(link, callback) {
|
1247
1244
|
link.adapter.dialog('close');
|
1248
|
-
|
1245
|
+
ActiveScaffold.remove(link.adapter, callback);
|
1249
1246
|
}
|
1250
1247
|
}
|
1251
1248
|
|
@@ -1518,7 +1515,7 @@
|
|
1518
1515
|
instantiate_link: function(link) {
|
1519
1516
|
var l = new ActiveScaffold.ActionLink.Table(link, this.target, this.loading_indicator);
|
1520
1517
|
if (l.position) {
|
1521
|
-
l.url = l.url.append_params({adapter: '_list_inline_adapter'});
|
1518
|
+
l.url = l.url.append_params({adapter: l.position == 'popup' ? '_popup_adapter' : '_list_inline_adapter'});
|
1522
1519
|
l.tag.attr('href', l.url);
|
1523
1520
|
}
|
1524
1521
|
return l;
|
@@ -217,7 +217,7 @@ $.extend(InlineEditor.prototype, {
|
|
217
217
|
if ( ! this.settings.cancel)
|
218
218
|
return false;
|
219
219
|
|
220
|
-
var eventTargetAndParents = $(eventTarget).parents().
|
220
|
+
var eventTargetAndParents = $(eventTarget).parents().addBack();
|
221
221
|
var elementsMatchingCancelSelector = eventTargetAndParents.filter(this.settings.cancel);
|
222
222
|
return 0 !== elementsMatchingCancelSelector.length;
|
223
223
|
},
|
@@ -78,7 +78,7 @@ class ActiveScaffold::Bridges::RecordSelect
|
|
78
78
|
column.association.klass.find(value.to_i)
|
79
79
|
end
|
80
80
|
rescue StandardError => e
|
81
|
-
logger.error "#{e.class.name}: #{e.message} -- Sorry, we are not that smart yet. Attempted to restore search values to search fields :#{column.name} in #{controller.class}"
|
81
|
+
Rails.logger.error "#{e.class.name}: #{e.message} -- Sorry, we are not that smart yet. Attempted to restore search values to search fields :#{column.name} in #{controller.class}"
|
82
82
|
raise e
|
83
83
|
end
|
84
84
|
end
|
@@ -128,7 +128,7 @@ module ActiveScaffold
|
|
128
128
|
end
|
129
129
|
|
130
130
|
table = association.belongs_to? ? active_scaffold_config.model.table_name : association.table_name
|
131
|
-
value = association.klass.find(value).
|
131
|
+
value = Array(association.klass.find(value)).map(&association.primary_key.to_sym) if association.primary_key
|
132
132
|
|
133
133
|
if association.polymorphic?
|
134
134
|
unless value.is_a?(Array) && value.size >= 2
|
@@ -47,7 +47,7 @@ module ActiveScaffold
|
|
47
47
|
text_field(:record, column.name, options.merge(column.options).except(:format))
|
48
48
|
end
|
49
49
|
rescue StandardError => e
|
50
|
-
logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
50
|
+
Rails.logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
51
51
|
raise e
|
52
52
|
end
|
53
53
|
|
@@ -70,9 +70,9 @@ module ActiveScaffold
|
|
70
70
|
end
|
71
71
|
end
|
72
72
|
|
73
|
-
def active_scaffold_subform_attributes(column, column_css_class = nil, klass = nil, tab_id: nil)
|
73
|
+
def active_scaffold_subform_attributes(column, column_css_class = nil, klass = nil, tab_id: nil, ui_options: column.options)
|
74
74
|
{
|
75
|
-
class: "sub-form #{active_scaffold_config_for(klass || column.association.klass).subform.layout}-sub-form #{column_css_class} #{column.name}-sub-form",
|
75
|
+
class: "sub-form #{ui_options[:layout] || active_scaffold_config_for(klass || column.association.klass).subform.layout}-sub-form #{column_css_class} #{column.name}-sub-form",
|
76
76
|
id: sub_form_id(association: column.name, tab_id: tab_id)
|
77
77
|
}
|
78
78
|
end
|
@@ -364,7 +364,7 @@ module ActiveScaffold
|
|
364
364
|
end
|
365
365
|
return content_tag(:div, '') unless klass
|
366
366
|
|
367
|
-
subform_attrs = active_scaffold_subform_attributes(column, nil, klass)
|
367
|
+
subform_attrs = active_scaffold_subform_attributes(column, nil, klass, ui_options: ui_options)
|
368
368
|
if record.send(column.name)&.new_record?
|
369
369
|
new_record = record.send(column.name)
|
370
370
|
else
|
@@ -568,7 +568,7 @@ module ActiveScaffold
|
|
568
568
|
if options.present?
|
569
569
|
if ui_options[:add_new]
|
570
570
|
html_options[:data] ||= {}
|
571
|
-
html_options[:data][:subform_id] = active_scaffold_subform_attributes(column)[:id]
|
571
|
+
html_options[:data][:subform_id] = active_scaffold_subform_attributes(column, ui_options: ui_options)[:id]
|
572
572
|
radio_html_options = html_options.merge(class: "#{html_options[:class]} hide-new-subform")
|
573
573
|
else
|
574
574
|
radio_html_options = html_options
|
@@ -22,7 +22,7 @@ module ActiveScaffold
|
|
22
22
|
value = ' '.html_safe if value.nil? || value.blank? # fix for IE 6
|
23
23
|
value
|
24
24
|
rescue StandardError => e
|
25
|
-
logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}, record: #{record.inspect}"
|
25
|
+
Rails.logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}, record: #{record.inspect}"
|
26
26
|
raise e
|
27
27
|
end
|
28
28
|
|
@@ -62,7 +62,7 @@ module ActiveScaffold
|
|
62
62
|
text
|
63
63
|
end
|
64
64
|
rescue StandardError => e
|
65
|
-
logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
65
|
+
Rails.logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
66
66
|
raise e
|
67
67
|
end
|
68
68
|
|
@@ -43,7 +43,7 @@ module ActiveScaffold
|
|
43
43
|
text_field(:record, column.name, options.merge(column.options))
|
44
44
|
end
|
45
45
|
rescue StandardError => e
|
46
|
-
logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
46
|
+
Rails.logger.error "#{e.class.name}: #{e.message} -- on the ActiveScaffold column = :#{column.name} in #{controller.class}"
|
47
47
|
raise e
|
48
48
|
end
|
49
49
|
|
@@ -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:
|
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
|
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
|
359
|
+
style: ('display: none' unless show))
|
357
360
|
end
|
358
361
|
|
359
362
|
def column_datetime?(column)
|
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.2
|
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-02
|
11
|
+
date: 2025-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|