Sha256: 36c4233ddab8bc9d75565afca5e82c36f75ec3190aa10376015dbad5bb4669a8
Contents?: true
Size: 1.94 KB
Versions: 4
Compression:
Stored size: 1.94 KB
Contents
# frozen_string_literal: true module Decidim module Proposals # A form object to be used when public 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 attribute :user_group_id, Integer attribute :has_address, Boolean attribute :attachment, AttachmentForm validates :title, :body, presence: true, etiquette: true validates :title, length: { maximum: 150 } validates :body, length: { maximum: 500 }, etiquette: true validates :address, geocoding: true, if: ->(form) { Decidim.geocoder.present? && form.has_address? } validates :address, presence: true, if: ->(form) { form.has_address? } 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 def map_model(model) return unless model.categorization self.category_id = model.categorization.decidim_category_id end 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 ||= organization_scopes.where(id: scope_id).first || process_scope end def has_address? current_feature.settings.geocoding_enabled? && has_address end end end end
Version data entries
4 entries across 4 versions & 2 rubygems