Sha256: 7ec87f63692c934b77ee6edc861f0650cc13a6faa8ee10bd03373e4f07e11d11
Contents?: true
Size: 1.57 KB
Versions: 16
Compression:
Stored size: 1.57 KB
Contents
# frozen_string_literal: true module Decidim module Results module Admin # This class holds a Form to create/update results from Decidim's admin panel. class ResultForm < Decidim::Form include TranslatableAttributes include TranslationsHelper translatable_attribute :title, String translatable_attribute :description, String attribute :decidim_scope_id, Integer attribute :decidim_category_id, Integer attribute :proposal_ids, Array[Integer] validates :title, translatable_presence: true validates :description, translatable_presence: true validates :scope, presence: true, if: ->(form) { form.decidim_scope_id.present? } validates :category, presence: true, if: ->(form) { form.decidim_category_id.present? } def map_model(model) self.proposal_ids = model.linked_resources(:proposals, "included_proposals").pluck(:id) end def proposals @proposals ||= Decidim.find_resource_manifest(:proposals).try(:resource_scope, context.current_feature)&.order(title: :asc)&.pluck(:title, :id) end def organization_scopes current_organization.scopes end def process_scope current_feature.participatory_process.scope end def scope @scope ||= process_scope || organization_scopes.where(id: decidim_scope_id).first end def category @category ||= context.current_feature.categories.where(id: decidim_category_id).first end end end end end
Version data entries
16 entries across 16 versions & 2 rubygems