five-two-nw-olivander 0.1.2.31 → 0.1.2.32

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: 9b9f0ff95753e126cb4de1106d1cad6f079b4bdd53fd7fe1329b1cd00556ef2c
4
- data.tar.gz: c0ef254479699aced86f0ae096ad4b013becf8c96aff80ec510906107aaf6d46
3
+ metadata.gz: 37e0a7cf2d36201b7ac2aebff9146a6158b25c379ca15ce0b9d21a49e650c9e6
4
+ data.tar.gz: a917d32e38deb6075ab2e879126fe859775c6f8da538e5402950518d48318e35
5
5
  SHA512:
6
- metadata.gz: 7f9297fdacf15c8a833c226deb411c6394e4c8ec125c6515d4127b5dea867048d15e2478ea6f911ca2b6855c887a444886180d4ac9356b94eb7855b301b17823
7
- data.tar.gz: a8fdfaf8efbd4eaeb2dfef11060f10b3bbf90bd8f1249d734aa64c1a44238e8f9aec7af4093d8ec161a3b041ebdfbab1a6405a29ec0e94c83035ca8412011bab
6
+ metadata.gz: e329f896993ef107fa04e45ab3a4e78cc1719d9c453154c040e5d7f3f4cced42e3a758718734c35b6d40409a4f3af2a8b0e2b5fb6992960044df27ae1bcdcb70
7
+ data.tar.gz: 89d10674362a00e7cbf4e5dd154fc721ca5f4d8dbb83f488b7359df44358531d15023b2b37cd57553d20a3461fc605dbe570e6ebbc4af5cf6c146505070dbf85
@@ -22,6 +22,8 @@ module Olivander
22
22
  column_attributes = klazz_attributes
23
23
  column_attributes &&= only if only.size.positive?
24
24
  column_attributes -= except if except.size.positive?
25
+ resources_sym = klazz.table_name.to_sym
26
+ bulk_action_list = self::ROUTE_BUILDER.resources[resources_sym].datatable_bulk_actions
25
27
 
26
28
  default_hidden = %w[id created updated created_at updated_at deleted_at current_user current_action]
27
29
 
@@ -35,23 +37,26 @@ module Olivander
35
37
  dc
36
38
  end
37
39
 
40
+ if bulk_action_list.size.positive?
41
+ bulk_actions do
42
+ bulk_action_list.each do |ma|
43
+ if ma.confirm
44
+ bulk_action ma.sym, url_for(controller: ma.controller, action: "confirm_#{ma.action}")
45
+ else
46
+ bulk_action ma.sym, url_for(controller: ma.controller, action: ma.action), data: { turbo_frame: ma.turbo_frame }
47
+ end
48
+ end
49
+ end
50
+ end
51
+
38
52
  datatable do
39
53
  order(order_by[0], order_by[1]) if order_by.size == 2
40
- bulk_actions_col
54
+ Rails.logger.debug "bulk actions size: #{datatable._bulk_actions.size}"
55
+ Rails.logger.debug "bulk actions size: #{datatable._bulk_actions.size.positive?}"
56
+ # bulk_actions_col if datatable._bulk_actions.size.positive?
41
57
  column_attributes.each do |key|
42
58
  label = field_label_for(klazz, key)
43
59
  sym = key.gsub('_id', '')
44
-
45
- # modifiers = STRIP OFF ANY PUNCTUATION MARKS
46
- # modifiers.each do |modifier|
47
- # case !:
48
- # visible = false
49
- # case $:
50
- # type = currency
51
- # end
52
- # end
53
-
54
-
55
60
  visible = show.include?(key) || !(default_hidden.include?(key) || hide.include?(key))
56
61
  if link_path.present? && sym == :id
57
62
  link_col sym, link_path, 'id', visible: visible
@@ -1,3 +1,3 @@
1
1
  module Olivander
2
- VERSION = '0.1.2.31'.freeze
2
+ VERSION = '0.1.2.32'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: five-two-nw-olivander
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2.31
4
+ version: 0.1.2.32
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Dennis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-08-10 00:00:00.000000000 Z
11
+ date: 2023-08-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: chartkick