Sha256: 5081e18cbb473ac8df23e0ee462977a95fa43c643a2ff4267c052cc83d581f75
Contents?: true
Size: 1.85 KB
Versions: 3
Compression:
Stored size: 1.85 KB
Contents
# frozen_string_literal: true module Decidim module ParticipatoryProcesses module ContentBlocks class ExtraDataCell < Decidim::ContentBlocks::ParticipatorySpaceExtraDataCell include ParticipatorySpaceContentBlocksHelper delegate :steps, :active_step, :start_date, :end_date, :participatory_process_group, to: :resource private def extra_data_items [step_item, dates_item, group_item].compact end def active_step_name translated_attribute active_step.title end def step_item return if active_step.blank? { title: t("active_step", scope: "layouts.decidim.participatory_processes.participatory_process"), icon: "direction-line", partial: "active_step" } end def dates_item { title: [ t("start_date", scope: "activemodel.attributes.participatory_process_step"), t("end_date", scope: "activemodel.attributes.participatory_process_step") ].join(" / "), icon: "calendar-todo-line", text: [ start_date.present? ? l(start_date, format: :decidim_short_with_month_name_short) : "?", end_date.present? ? l(end_date, format: :decidim_short_with_month_name_short) : "?" ].join(" / ") } end def group_item return if participatory_process_group.blank? { title: t("belongs_to_group", scope: "decidim.participatory_processes.show"), icon: "archive-line", text: link_to( translated_attribute(participatory_process_group.title), decidim_participatory_processes.participatory_process_group_path(participatory_process_group) ) } end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems