# frozen_string_literal: true module Decidim module Assemblies # Helpers related to the Assemblies layout. module AssembliesHelper include Decidim::ResourceHelper include FilterAssembliesHelper # Public: Returns the characteristics of an assembly in a readable format like # "title: close, no public, no transparent and is restricted to the members of the assembly" def participatory_processes_for_assembly(assembly_participatory_processes) html = "" html += %(
).html_safe html += %(

#{t("assemblies.show.related_participatory_processes", scope: "decidim")}

).html_safe html += %(
).html_safe assembly_participatory_processes.each do |assembly_participatory_process| html += render partial: "decidim/participatory_processes/participatory_process", locals: { participatory_process: assembly_participatory_process } end html += %(
).html_safe html += %(
).html_safe html.html_safe end def assembly_features(assembly) html = "".html_safe html += "#{translated_attribute(assembly.title)}: ".html_safe html += t("assemblies.show.private_space", scope: "decidim").to_s.html_safe html += ", #{t("assemblies.show.is_transparent.#{assembly.is_transparent}", scope: "decidim")}".html_safe if assembly.is_transparent? html += " #{decidim_sanitize translated_attribute(assembly.special_features)}".html_safe html.html_safe end def social_handler_links(assembly) html = "".html_safe if Decidim::Assembly::SOCIAL_HANDLERS.any? { |h| assembly.try("#{h}_handler").present? } html += "
".html_safe html += "#{t("assemblies.show.social_networks", scope: "decidim")}".html_safe Decidim::Assembly::SOCIAL_HANDLERS.each do |handler| handler_name = "#{handler}_handler" if assembly.send(handler_name).present? html += link_to handler.capitalize, "https://#{handler}.com/#{assembly.send(handler_name)}", target: "_blank", class: "", title: handler.capitalize end end html += "
".html_safe end html.html_safe end end end end