active_scaffold 4.0.1 → 4.0.3

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: 18ae38a98f317aedf4c54ade9d6cf3090b9de8e7042104dbe8493b10f173603a
4
- data.tar.gz: 63548a6d7f130d6771818f8387be0b548e74bcd1ed7dc856733b3f72c2a96fda
3
+ metadata.gz: ce387b6ca519e9e9d6dc988524ffff98d3bdeaf6e142311381834421b2bcda20
4
+ data.tar.gz: 5634748e0efd3adac51276052ca840c582e1693593e03e1e3db364043c686f79
5
5
  SHA512:
6
- metadata.gz: e1380da8c13475de3a825f828bb3d9109a52690f45d49cabd1be5bcbb138a2f36d985a676b9637e8a992a6ee551dc0f204b9103916e17845ee3990673219ab2c
7
- data.tar.gz: 1861237d6327330311899eb90f0f4e8baee3cf81287f6336fb2c0634ab86073c41fa3838b7c2f923a11093e43ae07d074ac0a1a68bdc8df0ed1b23f91356bee2
6
+ metadata.gz: 99c906010233a6cc88ad91b9921c6b4ecfb64a123a191f74253a73cc5571b744e7b1fa3f8f0cd41ac2d5ce4c46f4438d2eafbfd01d5b2df23689589a70439f6f
7
+ data.tar.gz: cd7afd2d8123f8a33c36b5e36575c3f1642f358d2b67ff29d071f8e2ed26a5c0a508c80934a92e920c653e79d20b94b754428113cfaa988a642fad6def9a20f7
data/CHANGELOG.rdoc CHANGED
@@ -1,3 +1,16 @@
1
+ = 4.0.3
2
+ - Fix for jQuery 3
3
+ - Fix position popup for collection action links
4
+ - Fix recordselect in form open with position popup
5
+ - Fix class of subform on optional subform using add_new option with layout option
6
+ - Fix constraints with mulitple ids for belongs_to associations with primary_key setting
7
+ - Fix render_field when a column changes, and a column to refresh exists in a subform with the same name too
8
+
9
+ = 4.0.2
10
+ - Fix using update_columns in field search with search UI submitting a hash, such as date fields
11
+ - Support disabling update_columsns on field_search
12
+
13
+ = 4.0.1
1
14
  - Add :text_editor show_ui, to avoid escaping html code
2
15
  - Fix action link on association column named record
3
16
 
@@ -11,6 +24,10 @@
11
24
  - Thread safety enabled by default, can't be disabled, deprecate ActiveScaffold.threadsafe!
12
25
  - Support subgroups on field search
13
26
 
27
+ = 3.7.12
28
+ - Fix using update_columns in field search with search UI submitting a hash, such as date fields
29
+ - Support disabling update_columsns on field_search
30
+
14
31
  = 3.7.11.1
15
32
  - Fix action link on association column named record
16
33
 
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, the pass `record` local variable, or use `as: :record` if using render with collection key.
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
  -------------
@@ -356,7 +356,7 @@
356
356
  }
357
357
  if ($this.data('select-id')) {
358
358
  select = line.find('#' + $this.data('select-id'));
359
- if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').andSelf();
359
+ if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').addBack();
360
360
  }
361
361
  if (hide) {
362
362
  subform.hide().find("input:enabled,select:enabled,textarea:enabled").prop('disabled', true);
@@ -589,7 +589,7 @@
589
589
  if (toggle.is('[type=radio]')) toggle.prop('disabled', true);
590
590
  else if (toggle.data('select-id')) {
591
591
  var select = line.find('#' + toggle.data('select-id'));
592
- if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').andSelf();
592
+ if (select.hasClass('recordselect') || select.is('.no-options')) select = select.next(':hidden').addBack();
593
593
  select.hide().prop('disabled', true);
594
594
  }
595
595
  } else $this.find("input:enabled,select:enabled,textarea:enabled").prop('disabled', true);
@@ -978,14 +978,17 @@
978
978
  if (typeof(source) == 'string') source = '#' + source;
979
979
  var source = jQuery(source);
980
980
  var element, container = source.closest('.sub-form-record'), selector = '';
981
- if (container.length == 0) {
981
+ if (container.length === 0) {
982
982
  container = source.closest('form > ol.form');
983
983
  selector = 'li';
984
984
  }
985
985
  // find without entering new subforms
986
- element = container.find(selector + ':not(.sub-form) .' + options.field_class).first();
986
+ element = container.find(selector + ':not(.sub-form) .' + options.field_class);
987
+ if (container.is('.sub-form-record'))
988
+ element = element.filter(function() { return $(this).closest('.sub-form-record').get(0) === container.get(0); });
989
+ else element = element.filter(function() { return $(this).closest('.sub-form-record').length === 0; });
987
990
  if (element.length)
988
- element = element.closest('dl');
991
+ element = element.first().closest('dl');
989
992
  else if (options.subform_class)
990
993
  element = container.find(selector + '.' + options.subform_class).first();
991
994
 
@@ -1235,7 +1238,7 @@
1235
1238
  },
1236
1239
 
1237
1240
  open_popup: function(content, link) {
1238
- var element = jQuery(content).dialog({
1241
+ var element = jQuery(content).filter(function(){ return this.tagName; }).dialog({
1239
1242
  modal: true,
1240
1243
  close: function() { link.close(); },
1241
1244
  width: ActiveScaffold.config.popup_width || '80%'
@@ -1245,7 +1248,7 @@
1245
1248
 
1246
1249
  close_popup: function(link, callback) {
1247
1250
  link.adapter.dialog('close');
1248
- if (callback) callback();
1251
+ ActiveScaffold.remove(link.adapter, callback);
1249
1252
  }
1250
1253
  }
1251
1254
 
@@ -1518,7 +1521,7 @@
1518
1521
  instantiate_link: function(link) {
1519
1522
  var l = new ActiveScaffold.ActionLink.Table(link, this.target, this.loading_indicator);
1520
1523
  if (l.position) {
1521
- l.url = l.url.append_params({adapter: '_list_inline_adapter'});
1524
+ l.url = l.url.append_params({adapter: l.position == 'popup' ? '_popup_adapter' : '_list_inline_adapter'});
1522
1525
  l.tag.attr('href', l.url);
1523
1526
  }
1524
1527
  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().andSelf();
220
+ var eventTargetAndParents = $(eventTarget).parents().addBack();
221
221
  var elementsMatchingCancelSelector = eventTargetAndParents.filter(this.settings.cancel);
222
222
  return 0 !== elementsMatchingCancelSelector.length;
223
223
  },
@@ -10,3 +10,4 @@
10
10
  <% end %>
11
11
  <% end %>
12
12
  <% require_asset 'jquery-ui-theme' if ActiveScaffold.jquery_ui_included? %>
13
+ .ui-front { z-index: 98; }
@@ -115,7 +115,11 @@ module ActiveScaffold::Actions
115
115
  copy_attributes(saved_record, record) if saved_record
116
116
  apply_constraints_to_record(record) unless scope
117
117
  create_association_with_parent record, check_match: true if nested?
118
- update_record_from_params(record, columns, attributes || {}, true)
118
+ if @form_action == :field_search
119
+ update_columns_from_params(record, columns, attributes || {}, :read, avoid_changes: true, search_attributes: true)
120
+ else
121
+ update_record_from_params(record, columns, attributes || {}, true)
122
+ end
119
123
  end
120
124
 
121
125
  def updated_record_with_column(column, value, scope)
@@ -55,13 +55,17 @@ module ActiveScaffold
55
55
  #
56
56
  # This is a secure way to apply params to a record, because it's based on a loop over the columns
57
57
  # set. The columns set will not yield unauthorized columns, and it will not yield unregistered columns.
58
- def update_record_from_params(parent_record, columns, attributes, avoid_changes = false)
58
+ def update_record_from_params(parent_record, columns, attributes, avoid_changes = false, search_attributes: false)
59
59
  crud_type = parent_record.new_record? ? :create : :update
60
60
  return parent_record unless parent_record.authorized_for?(crud_type: crud_type)
61
61
 
62
- multi_parameter_attrs = multi_parameter_attributes(attributes)
63
62
  assign_locking_column(parent_record, attributes)
63
+ update_columns_from_params(parent_record, columns, attributes, crud_type, avoid_changes: avoid_changes, search_attributes: search_attributes)
64
+ parent_record
65
+ end
64
66
 
67
+ def update_columns_from_params(parent_record, columns, attributes, crud_type, avoid_changes: false, search_attributes: false)
68
+ multi_parameter_attrs = multi_parameter_attributes(attributes)
65
69
  columns.each_column(for: parent_record, crud_type: crud_type, flatten: true) do |column|
66
70
  # Set any passthrough parameters that may be associated with this column (ie, file column "keep" and "temp" attributes)
67
71
  assign_column_params(parent_record, column, attributes)
@@ -69,16 +73,16 @@ module ActiveScaffold
69
73
  if multi_parameter_attrs.key? column.name.to_s
70
74
  parent_record.send(:assign_multiparameter_attributes, multi_parameter_attrs[column.name.to_s])
71
75
  elsif attributes.key? column.name
76
+ next if search_attributes && params_hash?(attributes[column.name])
77
+
72
78
  update_column_from_params(parent_record, column, attributes[column.name], avoid_changes)
73
79
  end
74
80
  rescue StandardError => e
75
81
  message = "on the ActiveScaffold column = :#{column.name} for #{parent_record.inspect} " \
76
82
  "(value from params #{attributes[column.name].inspect})"
77
83
  Rails.logger.error "#{e.class.name}: #{e.message} -- #{message}"
78
- raise
84
+ raise e.class, "#{e.message} -- #{message}"
79
85
  end
80
-
81
- parent_record
82
86
  end
83
87
 
84
88
  def assign_column_params(parent_record, column, attributes)
@@ -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
@@ -37,6 +37,9 @@ module ActiveScaffold::Config
37
37
 
38
38
  cattr_accessor :reset_form, instance_accessor: false
39
39
 
40
+ # whether refresh columns defined in update_columns when a column is changed, as create and update forms do
41
+ cattr_accessor :update_columns
42
+
40
43
  # instance-level configuration
41
44
  # ----------------------------
42
45
 
@@ -85,8 +88,11 @@ module ActiveScaffold::Config
85
88
 
86
89
  attr_accessor :reset_form
87
90
 
91
+ # whether refresh columns defined in update_columns when a column is changed, as create and update forms do
92
+ attr_accessor :update_columns
93
+
88
94
  UserSettings.class_eval do
89
- user_attr :optional_columns, :group_options, :grouped_columns, :human_conditions, :floating_footer
95
+ user_attr :optional_columns, :group_options, :grouped_columns, :human_conditions, :floating_footer, :update_columns
90
96
  end
91
97
  end
92
98
  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).send(association.primary_key) if association.primary_key
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 = '&nbsp;'.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
 
@@ -6,8 +6,10 @@ module ActiveScaffold
6
6
  # It does not do any rendering. It only decides which method is responsible for rendering.
7
7
  def active_scaffold_search_for(column, options = nil)
8
8
  options ||= active_scaffold_search_options(column)
9
- search_columns = active_scaffold_config.field_search.columns.visible_columns_names
10
- options = update_columns_options(column, nil, options, form_columns: search_columns, url_params: {form_action: :field_search})
9
+ if active_scaffold_config.field_search.update_columns
10
+ search_columns = active_scaffold_config.field_search.columns.visible_columns_names
11
+ options = update_columns_options(column, nil, options, form_columns: search_columns, url_params: {form_action: :field_search})
12
+ end
11
13
  record = options[:object]
12
14
  if column.delegated_association
13
15
  record = record.send(column.delegated_association.name) || column.active_record_class.new
@@ -41,7 +43,7 @@ module ActiveScaffold
41
43
  text_field(:record, column.name, options.merge(column.options))
42
44
  end
43
45
  rescue StandardError => e
44
- 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}"
45
47
  raise e
46
48
  end
47
49
 
@@ -2,7 +2,7 @@ module ActiveScaffold
2
2
  module Version
3
3
  MAJOR = 4
4
4
  MINOR = 0
5
- PATCH = 1
5
+ PATCH = 3
6
6
  FIX = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, FIX].compact.join('.')
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.1
4
+ version: 4.0.3
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 00:00:00.000000000 Z
11
+ date: 2025-03-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails