Sha256: 46c09524e449e0d7f7a2f00acbf7dc984497efa3833e56b5780a393b4e14ad9e

Contents?: true

Size: 1.69 KB

Versions: 131

Compression:

Stored size: 1.69 KB

Contents

module ActionController #:nodoc:
  module Flash
    extend ActiveSupport::Concern

    included do
      class_attribute :_flash_types, instance_accessor: false
      self._flash_types = []

      delegate :flash, to: :request
      add_flash_types(:alert, :notice)
    end

    module ClassMethods
      # Creates new flash types. You can pass as many types as you want to create
      # flash types other than the default <tt>alert</tt> and <tt>notice</tt> in
      # your controllers and views. For instance:
      #
      #   # in application_controller.rb
      #   class ApplicationController < ActionController::Base
      #     add_flash_types :warning
      #   end
      #
      #   # in your controller
      #   redirect_to user_path(@user), warning: "Incomplete profile"
      #
      #   # in your view
      #   <%= warning %>
      #
      # This method will automatically define a new method for each of the given
      # names, and it will be available in your views.
      def add_flash_types(*types)
        types.each do |type|
          next if _flash_types.include?(type)

          define_method(type) do
            request.flash[type]
          end
          helper_method type

          self._flash_types += [type]
        end
      end
    end

    protected
      def redirect_to(options = {}, response_status_and_flash = {}) #:doc:
        self.class._flash_types.each do |flash_type|
          if type = response_status_and_flash.delete(flash_type)
            flash[flash_type] = type
          end
        end

        if other_flashes = response_status_and_flash.delete(:flash)
          flash.update(other_flashes)
        end

        super(options, response_status_and_flash)
      end
  end
end

Version data entries

131 entries across 126 versions & 11 rubygems

Version Path
activejob-lock-0.0.1 rails/actionpack/lib/action_controller/metal/flash.rb
actionpack-4.1.9 lib/action_controller/metal/flash.rb
actionpack-4.1.9.rc1 lib/action_controller/metal/flash.rb
actionpack-4.2.0 lib/action_controller/metal/flash.rb
actionpack-4.2.0.rc3 lib/action_controller/metal/flash.rb
actionpack-4.2.0.rc2 lib/action_controller/metal/flash.rb
actionpack-4.2.0.rc1 lib/action_controller/metal/flash.rb
actionpack-4.1.7.1 lib/action_controller/metal/flash.rb
actionpack-4.1.8 lib/action_controller/metal/flash.rb
actionpack-4.2.0.beta4 lib/action_controller/metal/flash.rb
actionpack-4.2.0.beta3 lib/action_controller/metal/flash.rb
actionpack-4.1.7 lib/action_controller/metal/flash.rb
actionpack-4.2.0.beta2 lib/action_controller/metal/flash.rb
nanumfont-rails-0.1 vendor/bundle/ruby/2.1.0/gems/actionpack-4.1.6/lib/action_controller/metal/flash.rb
actionpack-4.1.6 lib/action_controller/metal/flash.rb
actionpack-4.1.6.rc2 lib/action_controller/metal/flash.rb
actionpack-4.2.0.beta1 lib/action_controller/metal/flash.rb
actionpack-4.1.6.rc1 lib/action_controller/metal/flash.rb
actionpack-4.1.5 lib/action_controller/metal/flash.rb
actionpack-4.1.4 lib/action_controller/metal/flash.rb