class CmAdmin::Models::Action
def controller_action_name
def controller_action_name if action_type == :custom 'cm_custom_method' elsif action_type == :bulk_action 'cm_bulk_action' elsif parent "cm_#{parent}" else "cm_#{name}" end end
def find_by(model, search_hash)
def find_by(model, search_hash) model.available_actions.find { |i| i.name == search_hash[:name] } end
def formatted_name
def formatted_name display_name || name.titleize end
def initialize(attributes = {}, &block)
def initialize(attributes = {}, &block) if attributes[:layout_type].present? && attributes[:layout].nil? && attributes[:partial].nil? case attributes[:layout_type] when 'cm_association_index' attributes[:layout] = '/cm_admin/main/associated_index' attributes[:partial] = '/cm_admin/main/associated_table' when 'cm_association_show' attributes[:layout] = '/cm_admin/main/associated_show' end end set_default_values attributes.each do |key, value| send("#{key}=", value) end send('code_block=', block) if block_given? end
def set_default_values
def set_default_values self.is_nested_field = false self.display_if = ->(_arg) { true } self.display_type = :button self.action_type = :default self.sort_column = :created_at self.sort_direction = :desc self.scopes ||= [] self.icon_name = 'fa fa-th-large' self.verb = :get self.route_type = nil self.display_type = nil self.view_type = :table self.eager_load_associations = [] self.kanban_attr = {} end
def set_values(page_title, page_description, partial, redirect_to = nil, view_type = :table)
def set_values(page_title, page_description, partial, redirect_to = nil, view_type = :table) self.page_title = page_title self.page_description = page_description self.partial = partial self.view_type = view_type self.redirect_to = redirect_to end