Sha256: a5305dc468f65b578b74c3a19f99af99140f20a0886ef3eb9d2a8cd709514baf

Contents?: true

Size: 1.35 KB

Versions: 2

Compression:

Stored size: 1.35 KB

Contents

# frozen_string_literal: true

module Decidim
  module Budgets
    module Admin
      # This command is executed when the user changes a Project from the admin
      # panel.
      class UpdateProject < Rectify::Command
        # Initializes an UpdateProject Command.
        #
        # form - The form from which to get the data.
        # project - The current instance of the project to be updated.
        def initialize(form, project)
          @form = form
          @project = project
        end

        # Updates the project if valid.
        #
        # Broadcasts :ok if successful, :invalid otherwise.
        def call
          return broadcast(:invalid) if form.invalid?

          transaction do
            update_project
            link_proposals
          end

          broadcast(:ok)
        end

        private

        attr_reader :project, :form

        def update_project
          project.update!(
            scope: form.scope,
            category: form.category,
            title: form.title,
            description: form.description,
            budget: form.budget
          )
        end

        def proposals
          @proposals ||= project.sibling_scope(:proposals).where(id: form.proposal_ids)
        end

        def link_proposals
          project.link_resources(proposals, "included_proposals")
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
decidim-budgets-0.10.1 app/commands/decidim/budgets/admin/update_project.rb
decidim-budgets-0.10.0 app/commands/decidim/budgets/admin/update_project.rb