cm-admin 1.2.4 → 1.2.5

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: 761f5d07363458ff70baaaf931e973f5b0b6dca0be30786ebb5ade83bb5b6934
4
- data.tar.gz: 07b19cdc0bb2d6fa6f8a87199751c0d5be4e3a0bf6da11faf7ee7e8643d5836e
3
+ metadata.gz: 56179a4d588a2f01a6b817c6c2ad4adb47d3be819aa9ed2680fe1944d21fb807
4
+ data.tar.gz: 624bc396f461879c5ff551e2a1105808a90fed770391805d8c197a3d6cc0d650
5
5
  SHA512:
6
- metadata.gz: 741d8416b844f57064606e4d7616805ab7670000dfde9a21d6b21184b55a6cf5538bd85d403e711b65d14c1118c2cf1e68daaff66f261832d57653b16111c7bb
7
- data.tar.gz: c48c03392357838aa183e10583ea6f57c7962dea1c5a05e71e66af5da2054cdef9f8fe70d8b3a01c9688a074a76a3c8573e43291d0159d10548905b8513e6fab
6
+ metadata.gz: 04ae93d9491118e0cfe36d71035883af6b41ed04491fb654d4b0a422f0ea47c41f536778be308c9a9c01aeb891c91f2a075f294f671398135ebf6e8eaf9ba6c3
7
+ data.tar.gz: 62d3ac65b2049a1361822b02a533eb18d7aa3e3ef836f1dee981642f639c8a678a95b8a5fcffcb089f1b7b47534e96fe5f85f2396ac0eff3915091d4f8459174
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cm-admin (1.2.4)
4
+ cm-admin (1.2.5)
5
5
  caxlsx_rails
6
6
  cocoon (~> 1.2.15)
7
7
  csv-importer (~> 0.8.2)
@@ -1,4 +1,4 @@
1
- .modal.fade id="#{custom_action.name.classify}Modal-#{ar_object.id}" aria-hidden="true" aria-labelledby="#{custom_action.name.classify}ModalLabel" tabindex="1"
1
+ .modal.fade id="#{custom_action.name.classify}Modal-#{ar_object&.id}" aria-hidden="true" aria-labelledby="#{custom_action.name.classify}ModalLabel" tabindex="1"
2
2
  .modal-dialog
3
3
  .modal-content
4
4
  .modal-header
@@ -1,9 +1,11 @@
1
- - custom_action_with_modals = @model.available_actions.select{ |act| act if act.display_type == :modal }
1
+ - custom_action_with_modals = @model.available_actions.select{ |act| act if act.display_type == :modal && act.action_type == :custom }
2
+ - bulk_action_with_modals = @model.available_actions.select{ |act| act if act.display_type == :modal && act.action_type == :bulk_action }
2
3
  - destroy_action = available_actions(@model, 'destroy')
3
4
  - if @associated_model
4
5
  - custom_action_with_modals += @associated_model.available_actions.select{ |act| act if act.display_type == :modal }
5
-
6
6
  - if @current_action&.name == 'index'
7
+ - bulk_action_with_modals.each do |bulk_action|
8
+ = render partial: '/layouts/custom_action_modal', locals: { custom_action: bulk_action, ar_object: nil }
7
9
  - @ar_object.data.each do |ar_object|
8
10
  - custom_action_with_modals.each do |custom_action|
9
11
  = render partial: '/layouts/custom_action_modal', locals: { custom_action: custom_action, ar_object: ar_object }
@@ -3,6 +3,7 @@ require_relative 'actions/blocks'
3
3
  module CmAdmin
4
4
  module Models
5
5
  class BulkAction < Action
6
+ attr_accessor :modal_configuration
6
7
 
7
8
  def initialize(attributes = {}, &block)
8
9
  super
@@ -132,9 +132,9 @@ module CmAdmin
132
132
  # self.class.class_eval(&block)
133
133
  end
134
134
 
135
- def bulk_action(name: nil, display_name: nil, display_if: lambda { |arg| return true }, redirection_url: nil, icon_name: nil, verb: nil, display_type: nil, route_type: nil, partial: nil, &block)
135
+ def bulk_action(name: nil, display_name: nil, display_if: lambda { |arg| return true }, redirection_url: nil, icon_name: nil, verb: nil, display_type: nil, modal_configuration: {}, route_type: nil, partial: nil, &block)
136
136
  bulk_action = CmAdmin::Models::BulkAction.new(
137
- name: name, display_name: display_name, display_if: display_if,
137
+ name: name, display_name: display_name, display_if: display_if, modal_configuration: modal_configuration,
138
138
  redirection_url: redirection_url, icon_name: icon_name, action_type: :bulk_action,
139
139
  verb: verb, display_type: display_type, route_type: route_type, partial: partial, &block
140
140
  )
@@ -1,3 +1,3 @@
1
1
  module CmAdmin
2
- VERSION = '1.2.4'
2
+ VERSION = '1.2.5'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cm-admin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.4
4
+ version: 1.2.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - sajinmp
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2023-10-11 00:00:00.000000000 Z
13
+ date: 2023-10-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rails