Sha256: d83cea4074eabc2db0f40557e89467ef44b322ed1d1ad12bfaf38c9abf04f26a

Contents?: true

Size: 1.94 KB

Versions: 6

Compression:

Stored size: 1.94 KB

Contents

module ActiveScaffold::Config
  class Nested < Base
    self.crud_type = :read

    def initialize(core_config)
      super
      @label = :add_existing_model
      @shallow_delete = self.class.shallow_delete
      @ignore_order_from_association = self.class.ignore_order_from_association
    end

    # global level configuration
    # --------------------------
    cattr_accessor :shallow_delete, instance_accessor: false
    @@shallow_delete = true

    cattr_accessor :ignore_order_from_association, instance_accessor: false

    # instance-level configuration
    # ----------------------------
    attr_accessor :shallow_delete

    attr_accessor :ignore_order_from_association

    # Add a nested ActionLink
    def add_link(attribute, options = {})
      column = @core.columns[attribute.to_sym]
      if column && column.association
        label =
          if column.association.polymorphic?
            column.label
          else
            column.association.klass.model_name.human(:count => column.association.singular? ? 1 : 2, :default => column.association.klass.name.pluralize)
          end
        options.reverse_merge! :security_method => :nested_authorized?, :label => label
        action_group = options.delete(:action_group) || self.action_group
        action_link = @core.link_for_association(column, options)
        @core.action_links.add_to_group(action_link, action_group) unless action_link.nil?
        action_link
      elsif column.nil?
        raise ArgumentError, "unknown column #{attribute}"
      elsif column.association.nil?
        raise ArgumentError, "column #{attribute} is not an association"
      end
    end

    def add_scoped_link(named_scope, options = {})
      action_link = @core.link_for_association_as_scope(named_scope.to_sym, options)
      @core.action_links.add_to_group(action_link, action_group) unless action_link.nil?
    end

    # the label for this Nested action. used for the header.
    attr_writer :label
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
active_scaffold-3.5.5 lib/active_scaffold/config/nested.rb
active_scaffold-3.5.4 lib/active_scaffold/config/nested.rb
active_scaffold-3.5.3 lib/active_scaffold/config/nested.rb
active_scaffold-3.5.2 lib/active_scaffold/config/nested.rb
active_scaffold-3.5.1 lib/active_scaffold/config/nested.rb
active_scaffold-3.5.0 lib/active_scaffold/config/nested.rb