Sha256: 4ea2bfc84e30317cb0197dc375020b72945826e161d1a9f2fd139d12e1fa4908

Contents?: true

Size: 1.47 KB

Versions: 8

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true
module Decidim
  module Proposals
    module Admin
      # A form object to be used when admin users want to create a proposal.
      class ProposalForm < Decidim::Form
        mimic :proposal

        attribute :title, String
        attribute :body, String
        attribute :address, String
        attribute :latitude, Float
        attribute :longitude, Float
        attribute :category_id, Integer
        attribute :scope_id, Integer

        validates :title, :body, presence: true
        validates :address, geocoding: true, if: -> { current_feature.settings.geocoding_enabled? }
        validates :category, presence: true, if: ->(form) { form.category_id.present? }
        validates :scope, presence: true, if: ->(form) { form.scope_id.present? }

        delegate :categories, to: :current_feature, prefix: false

        def organization_scopes
          current_organization.scopes
        end

        def process_scope
          current_feature.participatory_process.scope
        end

        alias feature current_feature

        # Finds the Category from the category_id.
        #
        # Returns a Decidim::Category
        def category
          @category ||= categories.where(id: category_id).first
        end

        # Finds the Scope from the scope_id.
        #
        # Returns a Decidim::Scope
        def scope
          @scope ||= process_scope || organization_scopes.where(id: scope_id).first
        end
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
decidim-proposals-0.1.0 app/forms/decidim/proposals/admin/proposal_form.rb
decidim-0.1.0 decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb
decidim-proposals-0.0.8.1 app/forms/decidim/proposals/admin/proposal_form.rb
decidim-0.0.8.1 decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb
decidim-proposals-0.0.7 app/forms/decidim/proposals/admin/proposal_form.rb
decidim-0.0.7 decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb
decidim-proposals-0.0.6 app/forms/decidim/proposals/admin/proposal_form.rb
decidim-0.0.6 decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb