Sha256: f8a149c85456b793e6357178ad7a1a12b82b73bff3dbd998154686fef5000189

Contents?: true

Size: 1.44 KB

Versions: 5

Compression:

Stored size: 1.44 KB

Contents

module ActiveScaffold::Actions
  module Mark

    def self.included(base)
      base.before_filter :mark_authorized?, :only => [:mark_all]
      base.prepend_before_filter :assign_marked_records_to_model
      base.helper_method :marked_records
    end

    def mark_all
      if mark_all?
        do_mark_all
      else
        do_demark_all
      end
      do_list
      respond_to_action(:list)
    end
 protected

    # We need to give the ActiveRecord classes a handle to currently marked records. We don't want to just pass the object,
    # because the object may change. So we give ActiveRecord a proc that ties to the
    # marked_records_method on this ApplicationController.
    def assign_marked_records_to_model
      active_scaffold_config.model.marked_records_proc = proc {send(:marked_records)}
    end

    def marked_records
      active_scaffold_session_storage[:marked_records] ||= Set.new
    end

    def mark_all?
      @mark_all ||= [true, 'true', 1, '1', 'T', 't'].include?(params[:value].class == String ? params[:value].downcase : params[:value])
    end

    def do_mark_all
      each_record_in_scope {|record| marked_records << record.id}
    end

    def do_demark_all
      each_record_in_scope {|record| marked_records.delete(record.id)}
    end

    # The default security delegates to ActiveRecordPermissions.
    # You may override the method to customize.
    def mark_authorized?
      authorized_for?(:action => :read)
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
active_scaffold-3.0.5 lib/active_scaffold/actions/mark.rb
active_scaffold-3.0.4 lib/active_scaffold/actions/mark.rb
active_scaffold-3.0.2 lib/active_scaffold/actions/mark.rb
active_scaffold-3.0.1 lib/active_scaffold/actions/mark.rb
active_scaffold-3.0.0 lib/active_scaffold/actions/mark.rb