Sha256: 041e856fca9170b3d0950ac88af6c48498f3fe8b9d5774a991e8522e4d517e96

Contents?: true

Size: 1.19 KB

Versions: 7

Compression:

Stored size: 1.19 KB

Contents

# frozen_string_literal: true

module Decidim
  module Votings
    # This module, when injected into a controller, ensures there is a
    # voting available and deducts it from the context.
    module NeedsVoting
      def self.enhance_controller(instance_or_module)
        instance_or_module.class_eval do
          helper_method :current_participatory_space
        end
      end

      def self.included(base)
        base.include Decidim::NeedsOrganization, InstanceMethods

        enhance_controller(base)
      end

      module InstanceMethods
        # Public: Finds the current Voting given this controller's
        # context.
        #
        # Returns the current Voting.
        def current_participatory_space
          @current_participatory_space ||= detect_voting
        end

        alias current_voting current_participatory_space

        private

        def detect_voting
          request.env["current_participatory_space"] ||
            organization_votings.find_by(slug: params[:voting_slug] || params[:slug])
        end

        def organization_votings
          @organization_votings ||= OrganizationVotings.new(current_organization).query
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
decidim-elections-0.28.4 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.3 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.2 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.1 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.0 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.0.rc5 app/controllers/concerns/decidim/votings/needs_voting.rb
decidim-elections-0.28.0.rc4 app/controllers/concerns/decidim/votings/needs_voting.rb