Sha256: cf7c66f3e118ccfaf2a5a47c8bcb6ebb9744374929dc7843db9786bbcf3dd24d

Contents?: true

Size: 1.89 KB

Versions: 10

Compression:

Stored size: 1.89 KB

Contents

# frozen_string_literal: true

module Decidim
  module Budgets
    # Exposes the line items resource so users can create and remove from orders.
    class LineItemsController < Decidim::Budgets::ApplicationController
      include NeedsCurrentOrder

      helper_method :budget, :project

      def create
        enforce_permission_to :vote, :project, project:, budget:, workflow: current_workflow

        respond_to do |format|
          # Note that the user-specific lock here is important in order to
          # prevent multiple simultaneous processes on different machines from
          # creating multiple orders for the same user in case the button is
          # pressed multiple times.
          current_user.with_lock do
            AddLineItem.call(persisted_current_order, project, current_user) do
              on(:ok) do |order|
                self.current_order = order
                format.html { redirect_back(fallback_location: budget_path(budget)) }
                format.js { render "update_budget" }
              end

              on(:invalid) do
                format.js { render "update_budget", status: :unprocessable_entity }
              end
            end
          end
        end
      end

      def destroy
        respond_to do |format|
          RemoveLineItem.call(current_order, project) do
            on(:ok) do |_order|
              format.html { redirect_back(fallback_location: budget_path(budget)) }
              format.js { render "update_budget" }
            end

            on(:invalid) do
              format.js { render "update_budget", status: :unprocessable_entity }
            end
          end
        end
      end

      private

      def project
        @project ||= budget&.projects&.find_by(id: params[:project_id])
      end

      def budget
        @budget ||= Budget.find_by(id: params[:budget_id], component: current_component)
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
decidim-budgets-0.29.1 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.28.4 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.29.0 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.28.3 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.29.0.rc4 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.29.0.rc3 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.29.0.rc2 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.29.0.rc1 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.28.2 app/controllers/decidim/budgets/line_items_controller.rb
decidim-budgets-0.28.1 app/controllers/decidim/budgets/line_items_controller.rb