# frozen_string_literal: true module Decidim module Budgets # A helper to render order and budgets actions module ProjectsHelper include Decidim::ApplicationHelper include Decidim::MapHelper # Render a budget as a currency # # budget - A integer to represent a budget def budget_to_currency(budget) number_to_currency budget, unit: Decidim.currency_unit, precision: 0 end # Return a percentage of the current order budget from the total budget def current_order_budget_percent current_order&.budget_percent.to_f.floor end # Return the minimum percentage of the current order budget from the total budget def current_order_budget_percent_minimum return 0 if current_order.minimum_projects_rule? if current_order.projects_rule? (current_order.minimum_projects.to_f / current_order.maximum_projects) else component_settings.vote_threshold_percent end end def budget_confirm_disabled_attr return if current_order_can_be_checked_out? %( disabled="disabled" ).html_safe end # Return true if the current order is checked out delegate :checked_out?, to: :current_order, prefix: true, allow_nil: true # Return true if the user can continue to the checkout process def current_order_can_be_checked_out? current_order&.can_checkout? end def current_rule_explanation return unless current_order if current_order.projects_rule? if current_order.minimum_projects.positive? && current_order.minimum_projects < current_order.maximum_projects t( ".projects_rule.instruction", minimum_number: current_order.minimum_projects, maximum_number: current_order.maximum_projects ) else t(".projects_rule_maximum_only.instruction", maximum_number: current_order.maximum_projects) end elsif current_order.minimum_projects_rule? t(".minimum_projects_rule.instruction", minimum_number: current_order.minimum_projects) else t(".vote_threshold_percent_rule.instruction", minimum_budget: budget_to_currency(current_order.minimum_budget)) end end def current_rule_description return unless current_order if current_order.projects_rule? if current_order.minimum_projects.positive? && current_order.minimum_projects < current_order.maximum_projects t( ".projects_rule.description", minimum_number: current_order.minimum_projects, maximum_number: current_order.maximum_projects ) else t(".projects_rule_maximum_only.description", maximum_number: current_order.maximum_projects) end elsif current_order.minimum_projects_rule? t(".minimum_projects_rule.description", minimum_number: current_order.minimum_projects) else t(".vote_threshold_percent_rule.description", minimum_budget: budget_to_currency(current_order.minimum_budget)) end end # Serialize a collection of geocoded projects to be used by the dynamic map component # # geocoded_projects - A collection of geocoded projects def projects_data_for_map(geocoded_projects) geocoded_projects.map do |project| project_data_for_map(project) end end def project_data_for_map(project) project .slice(:latitude, :longitude, :address) .merge( title: decidim_html_escape(translated_attribute(project.title)), description: html_truncate(decidim_sanitize_editor(translated_attribute(project.description)), length: 100), icon: icon("project", width: 40, height: 70, remove_icon_class: true), link: ::Decidim::ResourceLocatorPresenter.new([project.budget, project]).path ) end def has_position?(project) return if project.address.blank? project.latitude.present? && project.longitude.present? end end end end